SkillForge
Generate a SKILL.md ready to publish on ClawHub.
Start the server
uvicorn skillforge.app:app --port 8003
Generate a SKILL.md
curl -s -X POST http://localhost:8003/v1/forge-skill \
-H "Content-Type: application/json" \
-d '{"name": "My Cool Tool", "description": "Does cool things.", "instructions": "Step 1: Be cool."}' | jq
Returns skill_md (the complete SKILL.md content) and slug (ClawHub-compatible name like my-cool-tool).
With optional env vars and bins
curl -s -X POST http://localhost:8003/v1/forge-skill \
-H "Content-Type: application/json" \
-d '{"name": "API Client", "description": "Calls APIs.", "instructions": "Use curl.", "env_vars": ["API_KEY"], "bins": ["curl"]}' | jq '.skill_md' -r
Slug rules
Names are auto-converted to ClawHub slugs: lowercase, spaces to dashes, special chars removed. "My Tool v2!" becomes my-tool-v2.