dm1tryG /
fastapi-to-skill
Convert any FastAPI app into a CLI + SKILL.md for AI agents
Loading repository data…
nickommen / repository
Convert a Claude Code conversation into a deterministic Python-scripted skill.
Skillify converts a Claude Code conversation — where you iterated on automating a task — into a deterministic Python-scripted skill. It parses the conversation, extracts the workflow, and generates Python scripts + a SKILL.md wrapper. Future runs are deterministic, using AI only for error recovery and semantic summarization.
git clone https://github.com/nickommen/skillify.git
cd skillify
./install.sh
Or manually:
git clone https://github.com/nickommen/skillify.git
ln -sf "$(pwd)/skillify" ~/.claude/skills/skillify
After installation, /skillify will be available in Claude Code.
# Skillify the current conversation
/skillify
/skillify this
# Skillify a specific past conversation by session ID
/skillify 15555f6f-ed1d-47fb-b542-efdaff259864
Also triggers on natural language: "turn this into a skill", "make this a skill", "create a skill from this conversation", "convert this to a skill"
skill-name/
SKILL.md # Orchestration procedure (under 500 lines)
README.md # Documentation and setup instructions
scripts/
run.py # Main deterministic script (stdlib-only)
validators.py # Precondition checks and output validation
skill.schema.json # Input/output schema (when applicable)
Generated skills are deterministic, composable (invokable via /skill-name), and self-validating.
Full documentation is available at nickommen.github.io/skillify.
See CONTRIBUTING.md for development setup and guidelines.
Selected from shared topics, language and repository description—not editorial ratings.
dm1tryG /
Convert any FastAPI app into a CLI + SKILL.md for AI agents