A Claude Code skill that forges complete open-source Claude skill projects on GitHub — from use case description to installable marketplace plugin in one session.
Turns your pain point or workflow experience into a fully structured, published Claude Code skill:
- Understands your use case through focused questions
- Designs the skill name, trigger condition, and workflow
- Scaffolds the complete project structure with all required files
- Writes SKILL.md, plugin.json, marketplace.json, and README
- Publishes to GitHub and registers as an installable marketplace plugin
/plugin marketplace add atompilot/claude-skill-github-forge
/plugin install claude-skill-github-forge@claude-skill-github-forge
Just describe what you want to automate or solve:
> Forge a skill that helps me write conventional commit messages
> I want a skill for reviewing database migration files before running them
> 帮我打造一个 skill,每次写 SQL 查询时提醒我加索引
> Build a skill that enforces our team's code review checklist
Claude will ask clarifying questions, then build and publish the full project to GitHub.
skills/
└── github-forge/
└── SKILL.md ← Full workflow: use case → design → scaffold → GitHub publish
Includes common pitfalls and their fixes
From building claude-skill-naming and other atompilot skills:
plugin.jsonauthormust be an object, not a stringmarketplace.jsonis separate fromplugin.jsonand required for/plugin marketplace add- Skills are auto-discovered — no
skillsfield inplugin.json - Install command format:
/plugin install <name>@<marketplace-name>(both the same) - Marketplace cache doesn't auto-update — fix locally when iterating
MIT