Automatically generate production-ready Skills for any software, API, CLI tool, library, workflow, or service. Use this skill whenever the user wants to create a skill from scratch for a target application, convert an existing tool into an agent-native skill, generate skills for multiple platforms (Claude Code, OpenClaw, Codex), or automate the full skill creation pipeline including analysis, design, implementation, testing, optimization, and multi-platform packaging. Also use when the user mentions "skill-anything", "generate a skill for", "make a skill from", "skillify", or wants to turn any software into an agent-ready skill. Even if they just say "create a skill for X" where X is any tool or API, this skill should trigger.
$npx -y skills add agentskillos/skillanything --skill skillanythingInstalls into the current project.
Run `npx skills use "https://github.com/agentskillos/skillanything" --skill "agentskillos/skillanything"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.
Use the skills in "https://github.com/agentskillos/skillanything" that are relevant to the current task. Run `npx skills add "https://github.com/agentskillos/skillanything"` and select the relevant skills, then follow their instructions.
| 1 | <p align="center"> |
| 2 | <img src="https://img.shields.io/badge/SkillAnything-v1.0.0-00d4aa?style=for-the-badge&logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiPjxwYXRoIGQ9Ik0xMiAyTDIgN2wxMCA1IDEwLTV6Ii8+PHBhdGggZD0iTTIgMTdsMTAgNSAxMC01Ii8+PHBhdGggZD0iTTIgMTJsMTAgNSAxMC01Ii8+PC9zdmc+" alt="SkillAnything"/> |
| 3 | <br/> |
| 4 | <img src="https://img.shields.io/badge/Python-3.9+-3776AB?style=flat-square&logo=python&logoColor=white" alt="Python"/> |
| 5 | <img src="https://img.shields.io/badge/License-MIT-green?style=flat-square" alt="License"/> |
| 6 | <img src="https://img.shields.io/badge/Claude_Code-Compatible-7C3AED?style=flat-square" alt="Claude Code"/> |
| 7 | <img src="https://img.shields.io/badge/OpenClaw-Compatible-FF6B35?style=flat-square" alt="OpenClaw"/> |
| 8 | <img src="https://img.shields.io/badge/Codex-Compatible-10A37F?style=flat-square" alt="Codex"/> |
| 9 | </p> |
| 10 | |
| 11 | <h1 align="center">SkillAnything</h1> |
| 12 | |
| 13 | <p align="center"> |
| 14 | <strong>Making ANY Software Skill-Native</strong> |
| 15 | <br/> |
| 16 | <em>The meta-skill that generates production-ready Skills for AI agent platforms.</em> |
| 17 | </p> |
| 18 | |
| 19 | <p align="center"> |
| 20 | <a href="#quick-start">Quick Start</a> • |
| 21 | <a href="#the-7-phase-pipeline">Pipeline</a> • |
| 22 | <a href="#supported-platforms">Platforms</a> • |
| 23 | <a href="#architecture">Architecture</a> • |
| 24 | <a href="#examples">Examples</a> • |
| 25 | <a href="#attribution">Attribution</a> |
| 26 | </p> |
| 27 | |
| 28 | --- |
| 29 | |
| 30 | ## What is SkillAnything? |
| 31 | |
| 32 | > **One target in, production-ready Skills out.** |
| 33 | |
| 34 | SkillAnything is a **Skill that generates Skills**. Give it any target -- a CLI tool, REST API, Python library, workflow, or web service -- and it runs a fully automated 7-phase pipeline: |
| 35 | |
| 36 | ``` |
| 37 | Target: "jq" |
| 38 | | |
| 39 | v |
| 40 | [Analyze] -> [Design] -> [Implement] -> [Test] -> [Benchmark] -> [Optimize] -> [Package] |
| 41 | | | |
| 42 | v v |
| 43 | analysis.json dist/ |
| 44 | ├── claude-code/ |
| 45 | ├── openclaw/ |
| 46 | ├── codex/ |
| 47 | └── generic/ |
| 48 | ``` |
| 49 | |
| 50 | No manual prompt engineering. No copy-paste between platforms. Just tell it what you want a skill for. |
| 51 | |
| 52 | ## Quick Start |
| 53 | |
| 54 | ### Install |
| 55 | |
| 56 | ```bash |
| 57 | # Claude Code |
| 58 | git clone https://github.com/AgentSkillOS/SkillAnything.git ~/.claude/skills/skill-anything |
| 59 | |
| 60 | # OpenClaw |
| 61 | git clone https://github.com/AgentSkillOS/SkillAnything.git ~/.openclaw/skills/skill-anything |
| 62 | |
| 63 | # Codex |
| 64 | git clone https://github.com/AgentSkillOS/SkillAnything.git ~/.codex/skills/skill-anything |
| 65 | ``` |
| 66 | |
| 67 | ### Use |
| 68 | |
| 69 | In Claude Code, just say: |
| 70 | |
| 71 | ``` |
| 72 | > Create a skill for the httpie CLI tool |
| 73 | > Generate a multi-platform skill for the Stripe API |
| 74 | > Turn this data pipeline workflow into a skill |
| 75 | ``` |
| 76 | |
| 77 | SkillAnything handles the rest. |
| 78 | |
| 79 | ### Run Individual Phases |
| 80 | |
| 81 | ```bash |
| 82 | # Phase 1: Analyze a target |
| 83 | python -m scripts.analyze_target --target "jq" --output analysis.json |
| 84 | |
| 85 | # Phase 2: Design architecture |
| 86 | python -m scripts.design_skill --analysis analysis.json --output architecture.json |
| 87 | |
| 88 | # Phase 3: Scaffold skill |
| 89 | python -m scripts.init_skill my-skill --template cli --output ./out |
| 90 | |
| 91 | # Phase 4: Generate test cases |
| 92 | python -m scripts.generate_tests --analysis analysis.json --skill-path ./out/my-skill |
| 93 | |
| 94 | # Phase 5: Run evaluation |
| 95 | python -m scripts.run_eval --eval-set evals.json --skill-path ./out/my-skill |
| 96 | |
| 97 | # Phase 6: Optimize description |
| 98 | python -m scripts.run_loop --eval-set trigger-evals.json --skill-path ./out/my-skill --model claude-sonnet-4-20250514 |
| 99 | |
| 100 | # Phase 7: Package for all platforms |
| 101 | python -m scripts.package_multiplatform ./out/my-skill --pl |