smithery.ai

create-skill-augment

Ensure skills are created in `.agents/skills` and `.cursor/skills` is a symlink to that directory. Use when the user asks to create/update a skill, mentions skills location, or asks about the `.agents`/`.cursor/skills` symlink.

First seen Apr 27, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents cursor

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,203 B
  • docs SUMMARY.md 255 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Create Skill Augmentation (Agents + Symlink)

Required reference

  • Read ~/.cursor/skills-cursor/create-skill/SKILL.md and follow its structure.

Storage rule

  • Always create new skills under .agents/skills/<skill-name>/SKILL.md.
  • Do not create skills in .cursor/skills directly.

Symlink rule

  • Ensure .cursor/skills is a symlink to .agents/skills.
  • If .cursor/skills exists and is not a symlink, move it aside before linking.
  • If .cursor/skills is a symlink to the wrong location, replace it.

Use:

if [ -e ".cursor/skills" ] && [ ! -L ".cursor/skills" ]; then
  mv ".cursor/skills" ".cursor/skills.bak"
fi
if [ -L ".cursor/skills" ] && [ "$(readlink ".cursor/skills")" != "../.agents/skills" ]; then
  rm ".cursor/skills"
fi
if [ ! -L ".cursor/skills" ]; then
  ln -s "../.agents/skills" ".cursor/skills"
fi

Output

  • Report the created skill path and confirm the symlink status.