skill-creator

Generate GBrain-conformant SKILL.md files with required frontmatter and sections.

Updated Apr 23, 2026
One-click install
npx skills add https://github.com/ngochuy13/intern-dev --skill skill-creator-ngochuy13
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-creator
Source: https://github.com/ngochuy13/intern-dev/tree/main/skills/skill-creator
Command: npx skills add https://github.com/ngochuy13/intern-dev --skill skill-creator-ngochuy13

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It helps you create new GBrain-conformant skills without missing required sections, and prevents trigger overlap by enforcing a MECE check against existing skills.

Core Features & Use Cases

  • Conformance-first SKILL.md generation: Produces a SKILL.md with frontmatter plus the required Contract, Phases, Output Format, and Anti-Patterns sections.
  • MECE trigger gap validation: Checks skills/manifest.json and skills/RESOLVER.md to avoid overlapping triggers and prompts you to extend an existing skill instead when appropriate.
  • Repo wiring updates: Updates skills/manifest.json and skills/RESOLVER.md so the new skill is discoverable and routable.
  • Test-driven verification: Ensures the new skill passes bun test test/skills-conformance.test.ts after creation.

Quick Start

Run the skill to create a new capability-based skill, validate MECE against existing triggers, and update manifest and resolver entries for immediate discovery.

Frequently Asked Questions about skill-creator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate a SKILL.md file that passes manifest and resolver conformance checks?

To generate a conformance-ready SKILL.md, you need a tool that automatically creates required frontmatter and operational sections like Contract, Phases, Output Format, and Anti-Patterns. This skill produces that exact markdown structure while validating it against your existing repository manifest.

How do I prevent trigger overlap when adding a new skill to a repository?

Preventing trigger overlap requires performing a MECE validation check against existing manifest and resolver entries. This skill automatically executes this check, identifying overlaps and prompting you to extend an existing skill instead of creating a duplicate trigger.

What is MECE validation for skill generation and why is it needed?

MECE validation ensures new skill triggers are mutually exclusive and collectively exhaustive. It is needed to prevent routing conflicts in the resolver, ensuring each user intent targets exactly one skill without ambiguity or overlapping coverage.

How do I update manifest.json and RESOLVER.md when authoring new skills?

Updating manifest.json and RESOLVER.md requires wiring the new skill entries into the routing configuration. This skill automates the repo wiring process, modifying both files so the newly generated capability becomes immediately discoverable and routable.

Does skill generation work with Bun testing for conformance verification?

Yes, conformance verification works directly with Bun testing. After generating the SKILL.md and updating repository files, this skill runs the provided Bun test suite to ensure the new skill passes all required structural and routing checks.

When should I extend an existing skill instead of creating a new one?

You should extend an existing skill when the MECE check identifies overlapping triggers between your new capability and current manifest entries. This skill performs this comparison and prompts you to update the existing skill rather than generating a redundant one.