create-local-skill
Installation
SKILL.md
Create Local Skill
Create a project-local skill that works in both Claude Code and Cursor. The canonical location is .agents/skills/, with a symlink from .claude/commands so Claude Code picks it up.
Workflow
Step 1: Determine Skill Name
Ask the user what the skill should do if not already clear. Derive a kebab-case name from the task (e.g., sync-providers, deploy-staging).
Step 2: Create the Skill Directory
mkdir -p .agents/skills/<skill-name>
Step 3: Write the SKILL.md
Create .agents/skills/<skill-name>/SKILL.md following the create-skill skill guidelines. Read its references as needed for structure, best practices, and examples.