Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
garrytan avatar

Skill Creator

  • 167 installs
  • 27.8k repo stars
  • Updated August 5, 2026
  • garrytan/gbrain

Author new Claude Code skills—SKILL.md structure, triggers, and bundled scripts—for gbrain workflows or adjacent agent capabilities from scratch.

About

skill-creator guides authoring of new Claude Code skills for garrytan/gbrain: defines triggers, SKILL.md structure, references, and helper scripts so repeatable agent behaviors—ingest, query, publish—ship as installable skills instead of ad-hoc instructions.

  • SKILL.md scaffolding
  • Trigger and scope design
  • Bundled script layout
  • Reusable agent capabilities
  • gbrain workflow extension

Skill Creator by the numbers

  • 167 all-time installs (skills.sh)
  • Ranked #197 of 782 Skill Development skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/garrytan/gbrain --skill skill-creator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs167
repo stars27.8k
Last updatedAugust 5, 2026
Repositorygarrytan/gbrain

What it does

Author new Claude Code skills—SKILL.md structure, triggers, and bundled scripts—for gbrain workflows or adjacent agent capabilities from scratch.

Files

SKILL.mdMarkdownGitHub ↗

Skill Creator

Contract

This skill guarantees:

  • New skill follows conformance standard (frontmatter + required sections)
  • MECE check: no overlap with existing skills' triggers
  • Manifest.json updated
  • RESOLVER.md updated with routing entry
  • Skill passes conformance tests (bun test test/skills-conformance.test.ts)

Phases

1. Identify the gap. What capability is missing? What user intent has no skill? 2. MECE check. Review skills/manifest.json and skills/RESOLVER.md. Does any existing skill already cover this? If so, extend it instead of creating a new one. 3. Create SKILL.md. Use this template:

---
name: {skill-name}
version: 1.0.0
description: |
  {One paragraph describing what the skill does and when to use it.}
triggers:
  - "{trigger phrase 1}"
  - "{trigger phrase 2}"
tools:
  - {tool1}
  - {tool2}
mutating: {true|false}
---

# {Skill Title}

## Contract
{What this skill guarantees — 3-5 bullet points}

## Phases
{Numbered workflow steps}

## Output Format
{What good output looks like}

## Anti-Patterns
{What NOT to do — 3-5 items}

## Tools Used
{GBrain operations used, with descriptions}

4. Add to manifest. Update skills/manifest.json with name, path, description. 5. Add to resolver. Update skills/RESOLVER.md with routing entry in the appropriate category. 6. Verify. Run bun test test/skills-conformance.test.ts to confirm the new skill passes.

Output Format

New skills/{name}/SKILL.md file + updated manifest + updated resolver.

Anti-Patterns

  • Creating a skill that overlaps with an existing one (violates MECE)
  • Skipping the MECE check against existing skills
  • Creating a skill without triggers in frontmatter
  • Not updating manifest.json and RESOLVER.md
  • Creating a skill without an Anti-Patterns section

Related skills

Skill Developmentagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.