Quick Start

Quick Start Guide

Get from zero to your first working skill in 5 commands.


Prerequisites

SoftwareMinimum VersionCheck Command
Node.js18.xnode --version
npm8.xnpm --version
GitAny recentgit --version

1. Install skill-creator

# Option A: Quick install via npx
npx get-shit-done-cc@latest

# Option B: Clone and build from source
git clone https://github.com/Tibsfox/gsd-skill-creator.git
cd gsd-skill-creator
npm install && npm run build && npm link

Verify: skill-creator --version

2. Create your first skill

skill-creator create

Follow the prompts — enter a name (lowercase, hyphens), a description with activation triggers, and your skill content. The skill is saved to ~/.claude/skills/your-skill-name/SKILL.md.

3. Validate the skill

skill-creator validate my-first-skill

Checks name format, directory structure, metadata schema, and directory/name consistency. All checks should pass.

4. Generate test cases

skill-creator test generate my-first-skill

Creates positive and negative test cases based on your skill description. Review each test and approve, edit, or skip.

5. Run tests

skill-creator test run my-first-skill

Accuracy above 80% indicates a well-configured skill. If tests fail, see Troubleshooting.


Next Steps

TutorialTimeWhat You Learn
Skill Creation15 minCreate, validate, and test skills end-to-end
Calibration10 minOptimize activation thresholds
Team Creation20 minDeploy multi-agent teams
Conflict Detection10 minFind and resolve skill conflicts
CI/CD Integration10 minAdd skill validation to CI

For the full documentation, visit the Documentation Hub.