What problem does it solve?
The skill-creator skill streamlines creating new GBrain skills correctly by enforcing the required SKILL.md structure, preventing trigger overlap with existing skills, and updating the project routing files so the new skill is discoverable and testable.
Core Features & Use Cases
- Conformance enforcement: Ensures the new skill includes the required frontmatter and operational sections (Contract, Phases, Output Format, Anti-Patterns).
- MECE trigger validation: Checks
skills/manifest.json and skills/RESOLVER.md to avoid overlapping responsibilities with existing skills.
- Project wiring automation: Updates
skills/manifest.json and skills/RESOLVER.md with the appropriate routing entry.
- Testable delivery: Validates the result by running
bun test test/skills-conformance.test.ts.
Quick Start
Use the command "create a skill named <your-skill-name> that <briefly describe capability> with triggers: <trigger1, trigger2>" to generate a compliant skills/<your-skill-name>/SKILL.md and update the manifest and resolver.