A collection of reusable skills for Claude Code that enhance AI-assisted development workflows.
| Skill | Description | Status |
|---|---|---|
| doc-tracker | Project documentation tracking - epics, features, tasks, lessons | ✅ Ready |
| More coming soon |
# Clone into your project
git clone https://github.com/ktlcode/claude-skills.git .claude/skills
# Initialize (creates docs structure, etc.)
node .claude/skills/install.js# Clone the repo
git clone https://github.com/ktlcode/claude-skills.git .claude/skills
# Install only doc-tracker
node .claude/skills/install.js --only doc-trackerEach skill has its own README with detailed usage instructions:
- doc-tracker - Track project documentation, manage tasks, capture lessons learned
claude-skills/
├── README.md # This file
├── install.js # Universal installer
├── package.json # Package metadata
│
├── doc-tracker/ # Documentation tracking skill
│ ├── README.md # Skill-specific docs
│ ├── SKILL.md # Claude skill definition
│ ├── install.js # Skill-specific installer
│ ├── scripts/ # CLI scripts
│ ├── skills/ # Sub-skill definitions
│ └── templates/ # Document templates
│
├── _templates/ # Templates for creating new skills
│ └── new-skill/ # Skeleton for new skills
│
└── shared/ # Shared utilities across skills
└── lib/ # Common libraries
After installation, add skill triggers to your project's CLAUDE.md:
## Skills
Skills are located in `.claude/skills/`. Each skill has a SKILL.md describing when to use it.
### doc-tracker
Invoke when user mentions: 'session start', 'where am I', 'update task',
'save progress', 'wrap up', 'add to backlog', 'mark complete', 'lesson learned'.
See: .claude/skills/doc-tracker/SKILL.mdUse the template to create a new skill:
# Copy the template
cp -r .claude/skills/_templates/new-skill .claude/skills/my-new-skill
# Edit the skill files
# - SKILL.md: Define triggers and description
# - scripts/: Add your scripts
# - README.md: Document usageSee _templates/new-skill/ for the skill template structure.
cd .claude/skills
git pull origin mainContributions welcome! To add a new skill:
- Use the
_templates/new-skilltemplate - Follow the existing skill structure
- Include comprehensive README and SKILL.md
- Test in a real project
- Submit a PR
MIT - See LICENSE