Files
our-claude-skills/custom-skills/10-ourdigital-skill-creator
Andrew Yim 6ac547e78f
Some checks failed
Verify Skills / verify-skills (push) Has been cancelled
refactor(skills): clean skill names (strip NN- prefix from name:) — convention change
Adopt: directory keeps its NN- ordering prefix; skill `name:` is the clean form
without it (dir 16-seo-schema-validator → name: seo-schema-validator). Nicer to
invoke, matches the original desktop/SKILL.md names, still globally unique.

- 71 root SKILL.md: name: NN-foo → name: foo (flat skills + reference-curator suite).
  Plugins (mac-optimizer/multi-agent-guide/dintel-bootstrap) already clean; 95 already clean.
- scripts/migrate_skill_root.py: derive name = dirname minus NN- prefix (skill_name()).
- CLAUDE.md + SKILL-MIGRATION-GUIDE.md: document the dir-prefix / clean-name convention.

verify_skills.py: 0 name collisions across all renamed skills. (The ~/.claude/skills
symlinks were re-pointed to the clean names separately — filesystem only.)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-28 02:11:01 +09:00
..

OurDigital Skill Creator

Meta skill for creating, validating, and managing OurDigital Claude Skills.

Purpose

This skill helps create new OurDigital skills with:

  • Proper directory structure
  • YAML frontmatter conventions
  • OurDigital trigger patterns
  • Notion history tracking

Activation

Only activates with "ourdigital" keyword:

  • "ourdigital 스킬 만들기"
  • "ourdigital skill creator"
  • "create ourdigital skill"

Structure

10-ourdigital-skill-creator/
├── code/
│   └── SKILL.md              # Claude Code version
├── desktop/
│   └── SKILL.md              # Claude Desktop version
├── shared/
│   ├── references/
│   │   ├── suitability-criteria.md
│   │   └── skill-patterns.md
│   ├── templates/
│   │   └── SKILL-TEMPLATE.md
│   └── scripts/
│       ├── init_skill.py
│       └── validate_skill.py
├── docs/
│   ├── CHANGELOG.md
│   └── logs/
└── README.md

Usage

Create a New Skill

python shared/scripts/init_skill.py {name} --number XX

# Example
python shared/scripts/init_skill.py blog --number 02

Validate a Skill

python shared/scripts/validate_skill.py {skill-directory}

# Example
python shared/scripts/validate_skill.py 02-ourdigital-blog

Workflow

  1. Suitability Check - Evaluate if need fits Claude Skill criteria
  2. Requirements Q&A - Gather purpose, triggers, tools, outputs
  3. Generate Structure - Create directories and files
  4. Validation - Verify structure and content
  5. Notion Sync - Record to Working with AI database

Version

  • Current: 1.0.0
  • Author: OurDigital
  • Environment: Both (Desktop & Code)