Claude-skill-registry devkit-knowledge
Knowledge base for the Cadre DevKit. Use when answering questions about the devkit structure, commands, skills, hooks, agents, or workflows.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/devkit-knowledge" ~/.claude/skills/majiayu000-claude-skill-registry-devkit-knowledge && rm -rf "$T"
manifest:
skills/data/devkit-knowledge/SKILL.mdsource content
Cadre DevKit Knowledge Base
This skill helps you find information in the devkit. Read the actual files - they are the source of truth.
Where to Find Things
| Topic | Location |
|---|---|
| Global config | |
| Commands | |
| Skills | |
| Hooks | + |
| References | |
| Agents | Defined in system, use tool |
Quick Answers
How do I add a command?
Create
~/.claude/commands/my-command.md:
--- description: What this command does argument-hint: [optional args] --- # My Command Instructions for Claude...
How do I add a skill?
Create
~/.claude/skills/my-skill/SKILL.md:
--- name: my-skill-name description: What it does and when to use it. --- # My Skill Instructions and examples...
Skills vs Agents?
- Skills = Knowledge (methodology, templates, best practices)
- Agents = Workers (spawned via Task tool to do tasks independently)
Skills inform how to do something. Agents actually do things.
Debug hooks not running?
- Enable debug mode:
CLAUDE_HOOK_DEBUG=1 - Check
has hook registeredsettings.json - Verify file is executable (
)chmod +x
Skill not activating?
- Check YAML frontmatter is valid (name + description)
- Ensure description has trigger keywords
- Try explicit reference: "Use the X skill"
Command workflow?
New Project:
/greenfield → SPEC.md + DESIGN.md + PLAN.md → /plan [feature] → implement → /review → /validate → /ship
Existing Project:
/plan [feature] → implement → /slop (optional) → /review → /validate → /ship
Research:
/research [topic] → findings → /progress (save as docs)
Project vs Global
| Location | Scope |
|---|---|
| All projects (personal) |
| This project only (team) |
Project-level config takes precedence over global.
For Everything Else
Read the actual files. This skill points you where to look - don't rely on this skill having the latest info.
Version
- v2.0.0 (2025-12-05): Refactored to reference actual files instead of duplicating content
- v1.0.0 (2025-11-15): Initial version