Loading...
Loading...
Quickly creates new Claude Code skills or translates ChatGPT projects into Claude Code skills. Handles skill scaffolding, frontmatter, directory structure, and ChatGPT-to-Claude migration. Use when the user wants to 'create a skill,' 'make a new slash command,' 'convert a ChatGPT project,' 'translate a GPT to Claude,' or 'migrate prompts to Claude Code.' For full eval/testing/benchmarking workflows, use skill-creator instead.
npx skill4agent add realjaymes/marketingagentskills agent-skill-builder/skill-creator/agent-skill-builder new [name]/agent-skill-builder translate [name]/slash-commandscripts/references/assets/mkdir -p ~/.claude/skills/[skill-name]---
name: skill-name
description: "Describes what the skill does and specific triggers for when to use it. Write in third person. Include keywords users would say. Max 1024 characters. This is the PRIMARY triggering mechanism."
---
# Skill Name
[1-2 sentence description]
## Instructions
[Step-by-step guidance — use imperative form]
## Output Format
[Expected output structure]
## Constraints
[Limitations and rules]skill-name/
├── SKILL.md (overview + navigation, under 500 lines)
└── references/
├── variant-a.md
└── variant-b.md/skill-name| ChatGPT Component | Claude Code Equivalent | Location |
|---|---|---|
| Name | | SKILL.md |
| Description | | SKILL.md |
| Instructions | Main markdown body | SKILL.md |
| Knowledge files | | Subdirectory |
| Conversation starters | Document in Examples section or omit | SKILL.md |
| Actions (APIs) | MCP servers | |
| Code Interpreter | Native tools: | Built-in |
| Memory | No direct equivalent. Use context files or skill background sections | Various |
| ChatGPT Pattern | Claude Equivalent |
|---|---|
| "You are a [role]..." | Role section or integrate into instructions |
| "Your task is to..." | Instructions section |
| "Always/Never..." | Constraints section |
| "Output format..." | Output Format section |
Input placeholders | Keep as-is or use |
references/assets/descriptionnamedescription| Field | Required | Description |
|---|---|---|
| Yes | Max 64 chars, lowercase letters/numbers/hyphens only |
| Yes | Max 1024 chars. What + When. Third person. Primary trigger mechanism |
| No | Hint shown in autocomplete (e.g., |
| No | |
| No | |
| No | |
| No | Subagent type: |
| No | Restrict available tools: |
| No | Override model for this skill |
| Variable | Description |
|---|---|
| Everything after |
| Current session ID |
| Dynamic injection (runs before skill loads) |
| Location | Path | Scope |
|---|---|---|
| Personal | | All projects |
| Project | | This project only |
scripts/helper.pyscripts\helper.pynamedescriptionreferences//skill-name