← ClaudeAtlas

create-skilllisted

Creates a new SKILL.md in the correct location within this project's .ai/ structure. Trigger when the user asks to "create a skill", "add a skill for [task]", "write a skill to [do something]", or "add a new skill".
jeffsenso/prestashop-skills · ★ 4 · AI & Automation · score 73
Install: claude install-skill jeffsenso/prestashop-skills
# Create a New Skill ## Where to place it Choose the location based on scope — in order of priority: | Priority | Condition | Path | |----------|-----------|------| | 1 | User explicitly provided a path | Use that path | | 2 | Skill is tied to a specific component | `.ai/Component/{Name}/skills/{skill-name}/SKILL.md` | | 3 | Skill is tied to a specific domain | `.ai/Domain/{Name}/skills/{skill-name}/SKILL.md` | | 4 | Cross-cutting (spans multiple domains/components) | `.ai/skills/{skill-name}/SKILL.md` | After writing the file: 1. Add a `## Skills` section (or entry) to the corresponding `CONTEXT.md` — root `.ai/CONTEXT.md` for cross-cutting skills, or `.ai/Component/{Name}/CONTEXT.md` / `.ai/Domain/{Name}/CONTEXT.md` for scoped skills. This is the agnostic discovery mechanism for all non-Claude tools. 2. Create a symlink in `.claude/skills/` pointing to the skill **directory** (not the file). The path **must be relative**. This enables Claude Code auto-discovery. ``` cd .claude/skills && ln -s ../../<skill-dir-path-from-repo-root> <skill-name> ``` --- ## CONTEXT.md vs SKILL.md — no duplication rule CONTEXT.md owns conventions (rules, patterns, constraints — the "why" and "what"). SKILL.md owns procedures (steps, code templates, checklists — the "how"). Content must live in exactly one place. | | CONTEXT.md | SKILL.md | |---|---|---| | **Contains** | Conventions, rules, patterns | Procedures, step-by-step instructions, code templates | | **Audience** | Any AI