{"id":"dace6ee8-31f9-4418-ad32-52009818f3ea","shortId":"7Hg96r","kind":"skill","title":"manage-skills","tagline":"Discover, list, create, edit, toggle, copy, move, and delete AI agent skills across 11 tools (Cursor, Claude, Agents, Windsurf, Copilot, Codex, Cline, Aider, Continue, Roo Code, Augment)","description":"# Manage AI Agent Skills\n\nYou can manage skills and rules for all major AI coding tools directly from the terminal. This skill teaches you the directory layout, file format, and operations for each tool.\n\n## Supported Tools & Paths\n\n### Directory-based tools (multiple skills)\n\nEach skill lives in its own subdirectory with a `SKILL.md` file containing YAML frontmatter.\n\n| Tool | Global Path | Project Path |\n|------|------------|--------------|\n| Agents | `~/.agents/skills/<name>/SKILL.md` | `.agents/skills/<name>/SKILL.md` |\n| Cursor | `~/.cursor/skills/<name>/SKILL.md` | `.cursor/skills/<name>/SKILL.md` |\n| Claude | `~/.claude/skills/<name>/SKILL.md` | `.claude/skills/<name>/SKILL.md` |\n| Windsurf | `~/.windsurf/rules/<name>/<name>.md` | `.windsurf/rules/<name>/<name>.md` |\n| Cline | `~/.cline/rules/<name>/<name>.md` | `.cline/rules/<name>/<name>.md` |\n| Continue | `~/.continue/rules/<name>/<name>.md` | `.continue/rules/<name>/<name>.md` |\n| Roo Code | `~/.roo/rules/<name>/<name>.md` | `.roo/rules/<name>/<name>.md` |\n\n### Single-file tools (one config file)\n\n| Tool | Global Path | Project Path |\n|------|------------|--------------|\n| Copilot | `~/.github/copilot-instructions.md` | `.github/copilot-instructions.md` |\n| Codex | `~/.codex/AGENTS.md` | `.codex/AGENTS.md` |\n| Aider | `~/.aider.conf.yml` | `.aider.conf.yml` |\n| Augment | `~/augment-guidelines.md` | `augment-guidelines.md` |\n\n### Cursor plugins (read-only)\n\nPlugin skills are cached at `~/.cursor/plugins/cache/<org>/<plugin>/<version>/skills/<name>/SKILL.md`. These are managed by Cursor and should not be edited directly.\n\n## Skill File Format\n\nFor directory-based tools (Agents, Cursor, Claude), skills use YAML frontmatter:\n\n```markdown\n---\nname: skill-name\ndescription: Brief description of what this skill does\n---\n\n# Skill Name\n\nSkill instructions go here. The AI agent reads this content\nwhen the skill is activated.\n```\n\nFor Windsurf, Cline, Continue, and Roo Code, skills are plain `.md` files (frontmatter optional).\n\n## Operations\n\n### List all skills\n\n```bash\n# List skills for a specific tool\nls ~/.agents/skills/\nls ~/.cursor/skills/\nls ~/.claude/skills/\nls ~/.windsurf/rules/\nls ~/.cline/rules/\nls ~/.continue/rules/\nls ~/.roo/rules/\n\n# Count total skills across all tools\necho \"Agents: $(ls ~/.agents/skills/ 2>/dev/null | wc -l | tr -d ' ')\"\necho \"Cursor: $(ls ~/.cursor/skills/ 2>/dev/null | wc -l | tr -d ' ')\"\necho \"Claude: $(ls ~/.claude/skills/ 2>/dev/null | wc -l | tr -d ' ')\"\necho \"Windsurf: $(ls ~/.windsurf/rules/ 2>/dev/null | wc -l | tr -d ' ')\"\necho \"Cline: $(ls ~/.cline/rules/ 2>/dev/null | wc -l | tr -d ' ')\"\necho \"Continue: $(ls ~/.continue/rules/ 2>/dev/null | wc -l | tr -d ' ')\"\necho \"Roo: $(ls ~/.roo/rules/ 2>/dev/null | wc -l | tr -d ' ')\"\n\n# Check single-file tools\ntest -f ~/.github/copilot-instructions.md && echo \"Copilot: exists\" || echo \"Copilot: not found\"\ntest -f ~/.codex/AGENTS.md && echo \"Codex: exists\" || echo \"Codex: not found\"\ntest -f ~/.aider.conf.yml && echo \"Aider: exists\" || echo \"Aider: not found\"\ntest -f ~/augment-guidelines.md && echo \"Augment: exists\" || echo \"Augment: not found\"\n```\n\n### Read a skill\n\n```bash\ncat ~/.cursor/skills/my-skill/SKILL.md\n```\n\n### Create a new skill\n\n```bash\n# For Agents/Cursor/Claude (SKILL.md format)\nmkdir -p ~/.agents/skills/my-new-skill\ncat > ~/.agents/skills/my-new-skill/SKILL.md << 'EOF'\n---\nname: my-new-skill\ndescription: What this skill does\n---\n\n# My New Skill\n\nInstructions for the agent go here.\nEOF\n\n# For Windsurf/Cline/Continue/Roo (plain .md format)\nmkdir -p ~/.windsurf/rules/my-new-rule\ncat > ~/.windsurf/rules/my-new-rule/my-new-rule.md << 'EOF'\n# My New Rule\n\nInstructions go here.\nEOF\n\n# For single-file tools\ncat > .github/copilot-instructions.md << 'EOF'\nInstructions for Copilot go here.\nEOF\n```\n\n### Enable / Disable a skill\n\nDisabling renames the file to `.disabled` so the tool ignores it but the content is preserved:\n\n```bash\n# Disable\nmv ~/.cursor/skills/my-skill/SKILL.md ~/.cursor/skills/my-skill/SKILL.md.disabled\n\n# Enable\nmv ~/.cursor/skills/my-skill/SKILL.md.disabled ~/.cursor/skills/my-skill/SKILL.md\n```\n\n### Copy a skill between tools\n\n```bash\n# Copy from Cursor to Claude\ncp -r ~/.cursor/skills/my-skill ~/.claude/skills/my-skill\n\n# Copy from Agents to Windsurf (adapt format)\nmkdir -p ~/.windsurf/rules/my-skill\ncp ~/.agents/skills/my-skill/SKILL.md ~/.windsurf/rules/my-skill/my-skill.md\n```\n\n### Move a skill\n\n```bash\nmv ~/.cursor/skills/my-skill ~/.agents/skills/my-skill\n```\n\n### Delete a skill\n\n```bash\nrm -rf ~/.cursor/skills/my-skill\n```\n\n### Copy a skill from global to project scope\n\n```bash\ncp -r ~/.cursor/skills/my-skill .cursor/skills/my-skill\n```\n\n### Search across all skills\n\n```bash\n# Search by name\nfind ~/.agents/skills ~/.cursor/skills ~/.claude/skills ~/.windsurf/rules ~/.cline/rules ~/.continue/rules ~/.roo/rules -maxdepth 1 -type d 2>/dev/null | sort\n\n# Search by content\ngrep -rl \"search term\" ~/.agents/skills/ ~/.cursor/skills/ ~/.claude/skills/ 2>/dev/null\n```\n\n### Find disabled skills\n\n```bash\nfind ~/.agents/skills ~/.cursor/skills ~/.claude/skills -name \"*.disabled\" 2>/dev/null\n```\n\n## Guidelines\n\n- When the user asks to \"manage skills\", \"list my skills\", \"create a skill\", \"copy a skill to X\", or similar, use the paths and formats above.\n- Always confirm before deleting skills.\n- When copying between tools with different formats (e.g., Cursor SKILL.md to Windsurf plain .md), adapt the file naming accordingly.\n- Project-scoped skills override global skills of the same name.\n- For single-file tools (Copilot, Codex, Aider, Augment), editing means replacing the entire file content.\n- When creating skills, use kebab-case for directory names (e.g., `my-new-skill`).\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.","tags":["manage","skills","antigravity","awesome","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity-skills"],"capabilities":["skill","source-sickn33","skill-manage-skills","topic-agent-skills","topic-agentic-skills","topic-ai-agent-skills","topic-ai-agents","topic-ai-coding","topic-ai-workflows","topic-antigravity","topic-antigravity-skills","topic-claude-code","topic-claude-code-skills","topic-codex-cli","topic-codex-skills"],"categories":["antigravity-awesome-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/sickn33/antigravity-awesome-skills/manage-skills","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add sickn33/antigravity-awesome-skills","source_repo":"https://github.com/sickn33/antigravity-awesome-skills","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 34726 github stars · SKILL.md body (6,047 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-23T12:51:13.217Z","embedding":null,"createdAt":"2026-04-18T21:40:31.846Z","updatedAt":"2026-04-23T12:51:13.217Z","lastSeenAt":"2026-04-23T12:51:13.217Z","tsv":"'/.agents/skills':94,248,270,548,569,579 '/.agents/skills/my-new-skill':399 '/.agents/skills/my-new-skill/skill.md':401 '/.agents/skills/my-skill':518 '/.agents/skills/my-skill/skill.md':510 '/.aider.conf.yml':148,364 '/.claude/skills':104,252,290,550,571,581 '/.claude/skills/my-skill':498 '/.cline/rules':114,256,310,552 '/.codex/agents.md':145,354 '/.continue/rules':119,258,320,553 '/.cursor/plugins/cache':163 '/.cursor/skills':99,250,280,549,570,580 '/.cursor/skills/my-skill':497,517,525,537 '/.cursor/skills/my-skill/skill.md':387,478,483 '/.cursor/skills/my-skill/skill.md.disabled':479,482 '/.github/copilot-instructions.md':142,344 '/.roo/rules':125,260,330,554 '/.windsurf/rules':109,254,300,551 '/.windsurf/rules/my-new-rule':430 '/.windsurf/rules/my-new-rule/my-new-rule.md':432 '/.windsurf/rules/my-skill':508 '/.windsurf/rules/my-skill/my-skill.md':511 '/augment-guidelines.md':151,374 '/dev/null':272,282,292,302,312,322,332,560,573,585 '/skill.md':95,97,100,102,105,107,165 '/skills':164 '1':556 '11':17 '2':271,281,291,301,311,321,331,559,572,584 'accord':636 'across':16,264,540 'activ':221 'adapt':504,632 'agent':14,21,33,93,185,213,268,419,501 'agents/cursor/claude':394 'agents/skills':96 'ai':13,32,44,212 'aider':26,147,366,369,655 'aider.conf.yml':149 'alway':613 'ask':590,712 'augment':30,150,376,379,656 'augment-guidelines.md':152 'base':70,183 'bash':240,385,392,475,489,515,522,534,543,577 'boundari':720 'brief':198 'cach':161 'case':670 'cat':386,400,431,446 'check':337 'clarif':714 'claud':20,103,187,288,494 'claude/skills':106 'clear':687 'cline':25,113,224,308 'cline/rules':116 'code':29,45,124,228 'codex':24,144,356,359,654 'codex/agents.md':146 'config':134 'confirm':614 'contain':85 'content':216,472,564,663 'continu':27,118,225,318 'continue/rules':121 'copi':9,484,490,499,526,600,619 'copilot':23,141,346,349,451,653 'count':261 'cp':495,509,535 'creat':6,388,597,665 'criteria':723 'cursor':19,98,153,170,186,278,492,626 'cursor/skills':101 'cursor/skills/my-skill':538 'd':276,286,296,306,316,326,336,558 'delet':12,519,616 'describ':691 'descript':197,199,408 'differ':623 'direct':47,176 'directori':56,69,182,672 'directory-bas':68,181 'disabl':456,459,464,476,575,583 'discov':4 'e.g':625,674 'echo':267,277,287,297,307,317,327,345,348,355,358,365,368,375,378 'edit':7,175,657 'enabl':455,480 'entir':661 'environ':703 'environment-specif':702 'eof':402,422,433,440,448,454 'exist':347,357,367,377 'expert':708 'f':343,353,363,373 'file':58,84,131,135,178,233,340,444,462,634,651,662 'find':547,574,578 'format':59,179,396,427,505,611,624 'found':351,361,371,381 'frontmatt':87,191,234 'github/copilot-instructions.md':143,447 'global':89,137,530,642 'go':209,420,438,452 'grep':565 'guidelin':586 'ignor':468 'input':717 'instruct':208,416,437,449 'kebab':669 'kebab-cas':668 'l':274,284,294,304,314,324,334 'layout':57 'limit':679 'list':5,237,241,594 'live':76 'ls':247,249,251,253,255,257,259,269,279,289,299,309,319,329 'major':43 'manag':2,31,37,168,592 'manage-skil':1 'markdown':192 'match':688 'maxdepth':555 'md':110,112,115,117,120,122,126,128,232,426,631 'mean':658 'miss':725 'mkdir':397,428,506 'move':10,512 'multipl':72 'mv':477,481,516 'my-new-skil':404,675 'name':193,196,206,403,546,582,635,647,673 'new':390,406,414,435,677 'one':133 'oper':61,236 'option':235 'output':697 'overrid':641 'p':398,429,507 'path':67,90,92,138,140,609 'permiss':718 'plain':231,425,630 'plugin':154,158 'preserv':474 'project':91,139,532,638 'project-scop':637 'r':496,536 'read':156,214,382 'read-on':155 'renam':460 'replac':659 'requir':716 'review':709 'rf':524 'rl':566 'rm':523 'roo':28,123,227,328 'roo/rules':127 'rule':40,436 'safeti':719 'scope':533,639,690 'search':539,544,562,567 'similar':606 'singl':130,339,443,650 'single-fil':129,338,442,649 'skill':3,15,34,38,52,73,75,159,177,188,195,203,205,207,219,229,239,242,263,384,391,407,411,415,458,486,514,521,528,542,576,593,596,599,602,617,640,643,666,678,682 'skill-manage-skills' 'skill-nam':194 'skill.md':83,395,627 'sort':561 'source-sickn33' 'specif':245,704 'stop':710 'subdirectori':80 'substitut':700 'success':722 'support':65 'task':686 'teach':53 'term':568 'termin':50 'test':342,352,362,372,706 'toggl':8 'tool':18,46,64,66,71,88,132,136,184,246,266,341,445,467,488,621,652 'topic-agent-skills' 'topic-agentic-skills' 'topic-ai-agent-skills' 'topic-ai-agents' 'topic-ai-coding' 'topic-ai-workflows' 'topic-antigravity' 'topic-antigravity-skills' 'topic-claude-code' 'topic-claude-code-skills' 'topic-codex-cli' 'topic-codex-skills' 'total':262 'tr':275,285,295,305,315,325,335 'treat':695 'type':557 'use':189,607,667,680 'user':589 'valid':705 'wc':273,283,293,303,313,323,333 'windsurf':22,108,223,298,503,629 'windsurf/cline/continue/roo':424 'windsurf/rules':111 'x':604 'yaml':86,190","prices":[{"id":"2fdad283-34a8-4386-bd41-bdf9d5974ab6","listingId":"dace6ee8-31f9-4418-ad32-52009818f3ea","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"sickn33","category":"antigravity-awesome-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T21:40:31.846Z"}],"sources":[{"listingId":"dace6ee8-31f9-4418-ad32-52009818f3ea","source":"github","sourceId":"sickn33/antigravity-awesome-skills/manage-skills","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/manage-skills","isPrimary":false,"firstSeenAt":"2026-04-18T21:40:31.846Z","lastSeenAt":"2026-04-23T12:51:13.217Z"}],"details":{"listingId":"dace6ee8-31f9-4418-ad32-52009818f3ea","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"manage-skills","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34726,"topics":["agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity","antigravity-skills","claude-code","claude-code-skills","codex-cli","codex-skills","cursor","cursor-skills","developer-tools","gemini-cli","gemini-skills","kiro","mcp","skill-library"],"license":"mit","html_url":"https://github.com/sickn33/antigravity-awesome-skills","pushed_at":"2026-04-23T06:41:03Z","description":"Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.","skill_md_sha":"b8522952bae010c0af51bce861e6224fad5eab20","skill_md_path":"skills/manage-skills/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/manage-skills"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"manage-skills","description":"Discover, list, create, edit, toggle, copy, move, and delete AI agent skills across 11 tools (Cursor, Claude, Agents, Windsurf, Copilot, Codex, Cline, Aider, Continue, Roo Code, Augment)"},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/manage-skills"},"updatedAt":"2026-04-23T12:51:13.217Z"}}