Claude-skill-registry dev-workflow
SDLC workflow with MCP tools. Triggers on "start", "implement", "work on", or unclear workflow.
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/dev-workflow" ~/.claude/skills/majiayu000-claude-skill-registry-dev-workflow-80326c && rm -rf "$T"
manifest:
skills/data/dev-workflow/SKILL.mdsource content
SDLC: Intake → Triage → Explore → Plan → Code → Test → Review → Commit → Deploy → Improve
MCP Tools by Phase
| Phase | Tools |
|---|---|
| Intake | , |
| Explore | , , |
| Plan | (subtasks), , |
| Code | , Read, Write, Edit |
| Test | Bash (make test, npm test), |
| Deploy | , |
| Improve | , |
Triage Decision
| Change Type | Path |
|---|---|
| New feature, breaking change, architecture | OpenSpec → |
| Bug fix, config, tests, typo | Quick → |
Phase Actions
Intake: Fetch Linear issue, search Notion for context Explore: Search Memory for learnings, explore codebase, check related PRs Plan: OpenSpec proposal OR TodoWrite, create branch Code: Follow tasks, use platform rules, mark todos complete Test:
/quick-test, add tests for new logic
Review: /code-review, /security-scan if auth/data
Commit: /commit with type: description
Deploy: Create PR, run smoke tests after merge
Improve: Store learnings in Memory, create improvement tasks if needed
Quick Reference
# Backend cd backend && make test cd backend && make build # Web cd web && npm test cd web && npm run build # iOS cd mobile/ios && make test # Android cd mobile/android && ./gradlew test
Anti-Patterns
- Coding without exploring → miss patterns
- Skipping Linear context → untracked work
- No Memory capture → repeat learnings
- Big commits → hard to review