.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/agentskillos/skillanything
home/skills/agentskillos/skillanything
agentskillos avatar

skillanything

byagentskillos· 1 skill

Stars

459

Forks

47

Category

Code Review & Refactor

View on GitHub

TL;DR

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.

How to install skillanything?

agentskillos/skillanything
$npx -y skills add agentskillos/skillanything --skill skillanything

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

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 whole pack

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.

Files · 1

View on GitHub
SKILL.md
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> &bull;
21 <a href="#the-7-phase-pipeline">Pipeline</a> &bull;
22 <a href="#supported-platforms">Platforms</a> &bull;
23 <a href="#architecture">Architecture</a> &bull;
24 <a href="#examples">Examples</a> &bull;
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 
34SkillAnything 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```
37Target: "jq"
38 |
39 v
40[Analyze] -> [Design] -> [Implement] -> [Test] -> [Benchmark] -> [Optimize] -> [Package]
41 | |
42 v v
43analysis.json dist/
44 ├── claude-code/
45 ├── openclaw/
46 ├── codex/
47 └── generic/
48```
49 
50No 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
58git clone https://github.com/AgentSkillOS/SkillAnything.git ~/.claude/skills/skill-anything
59 
60# OpenClaw
61git clone https://github.com/AgentSkillOS/SkillAnything.git ~/.openclaw/skills/skill-anything
62 
63# Codex
64git clone https://github.com/AgentSkillOS/SkillAnything.git ~/.codex/skills/skill-anything
65```
66 
67### Use
68 
69In 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 
77SkillAnything handles the rest.
78 
79### Run Individual Phases
80 
81```bash
82# Phase 1: Analyze a target
83python -m scripts.analyze_target --target "jq" --output analysis.json
84 
85# Phase 2: Design architecture
86python -m scripts.design_skill --analysis analysis.json --output architecture.json
87 
88# Phase 3: Scaffold skill
89python -m scripts.init_skill my-skill --template cli --output ./out
90 
91# Phase 4: Generate test cases
92python -m scripts.generate_tests --analysis analysis.json --skill-path ./out/my-skill
93 
94# Phase 5: Run evaluation
95python -m scripts.run_eval --eval-set evals.json --skill-path ./out/my-skill
96 
97# Phase 6: Optimize description
98python -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
101python -m scripts.package_multiplatform ./out/my-skill --pl

Preview

agentskillos/skillanythingagentskillos/skillanything

$ npx -y skills add agentskillos/skillanything --skill skillanything

▸ installing to .claude/skills…

✓ skillanything ready

Repoagentskillos/skillanything
TypeSkills
CategoryCode Review & Refactor
ForArchitectDeveloper
UpdatedApr 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. mattpocock avatarimprove-codebase-architectureScan a codebase for deepening opportunities, present them as a visual HTML report, then grill through whichever one you pick.SkillsJul 2026566k189k
  2. mattpocock avatardomain-modelingBuild and sharpen a project's domain model. Use when the user wants to pin down domain terminology or a ubiquitous language, record an architectural decision,…SkillsJul 2026275k189k
  3. juliusbrussee avatarcaveman-reviewUltra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix.SkillsJul 2026270k93k
  4. mattpocock avatarcodebase-designShared vocabulary for designing deep modules. Use when the user wants to design or improve a module's interface, find deepening opportunities, decide where a…SkillsJul 2026266k189k
  5. mattpocock avatarcode-reviewReview the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (does the code follow this repo's documented coding…SkillsJul 2026201k189k
  6. mattpocock avatarresolving-merge-conflictsUse when you need to resolve an in-progress git merge/rebase conflict.SkillsJul 2026183k189k