Steps to Add Agent Skills in Claude:
Steps to Add Agent Skills in Claude:
- Claude Desktop/Web (User Interface):
- Navigate to Customize > Skills.
- Click the ”+” button and Upload a skill (as a ZIP file containing the
SKILL.md) or define it directly.
- VS Code Extension:
- Open the Chat view, click the gear icon (Configure Chat), and select the Skills tab.
- Create a New Skill (Workspace) or New Skill (User), then fill in the required
SKILL.mdstructure.
- Claude Code/API (Filesystem):
- Create a directory for your skill in
~/.claude/skills/(e.g.,~/.claude/skills/your-skill/). - Add a
SKILL.mdfile inside that directory. - Enable the skill by including “Skill” in your
allowed_toolsconfiguration.
- Create a directory for your skill in
Steps to Add Agent Skills in Codex:
Steps to Add Agent Skills in Codex:
- Method 1: Using the Skill Creator (Recommended)
- Type
/$skill-creatorin the Codex chat. - Describe the skill’s function and when to trigger it.
- The agent will guide you through creating the required
SKILL.mdfile.
- Type
- Method 2: Manual Creation
- Create a folder named
.agents/skillsin your project root or~/.agents/skillsfor global access. - Create a subdirectory for the new skill (e.g.,
.agents/skills/my-skill). - Create a
SKILL.mdfile within that subdirectory. - Add YAML frontmatter with the
nameanddescription, followed by instructions.
- Create a folder named
Steps to Add Agent Skills in Cursor:
Steps to Add Agent Skills in Cursor:
- Setup: Create a directory structure:
.cursor/skills/your-skill-name/and place askill.mdfile inside. - Enable Feature: Go to Cursor Settings > Beta and set updates to Nightly to ensure skill support is active.
- Define Skill: Within
skill.md, define the skill’s purpose and instructions for the agent to follow. - Activation: The Agent automatically uses relevant skills, or you can invoke them manually by typing
/followed by the skill name in the Agent chat (Cmd+IorCtrl+I). - Alternative: Use the command
/create-skillin the chat to have Cursor guide you through the process.
Cursor also detects skills in
.cursor/skills/, .agents/skills/, and ~/.cursor/skills/ (global).