
dev
by Aurealibe
Comprehensive Claude Code framework: 6 specialized agents, 7 workflow commands, audio notifications - stack agnostic
SKILL.md
name: dev description: Develop phase with exploration and plan validation model: opus argument-hint: spec= phase= [done=] hooks: PostToolUse: - matcher: "Edit|Write" hooks: - type: command command: | if [[ -d "backend" ]]; then cd backend && go build ./... 2>&1 | head -10 || true fi once: true
Follow CLAUDE.md rules.
Ultra Think Strategy
Ultra think before each phase transition:
- After exploration results: reflect on completeness before planning
- Before implementation: consider edge cases, patterns to follow, potential issues
- After validation: ensure the approach aligns with user intent
1. UNDERSTAND
- Read spec:
$ARGUMENTS.spec - Identify phase:
$ARGUMENTS.phase - Phases completed:
$ARGUMENTS.done - Extract from phase description:
- Scope: backend / frontend / both
- Files to create/modify
- Libraries needed
2. EXPLORE (PARALLEL)
Launch agents based on detected scope (single message, parallel execution):
| Scope | Agents |
|---|---|
| backend | explore-codebase (backend/), explore-db (dev) |
| frontend | explore-codebase (frontend/src/) |
| both | All above |
Add explore-docs for any external libraries mentioned.
2.5 POST-EXPLORATION CHECK
After agents return, verify completeness:
- Database info needed but missing? -> launch explore-db
- Library docs needed but missing? -> launch explore-docs
- Similar patterns not found? -> additional explore-codebase
3. SHOW PLAN
Display enriched plan:
## Phase $ARGUMENTS.phase
### Files to Create
- `path/file` - [purpose]
### Files to Modify
- `path/file:XX` - [what to change]
### Patterns to Reuse (from exploration)
- [existing code patterns found]
### Order
Backend: Domain -> Application -> Infrastructure -> Presentation
Frontend: Types -> API -> Hooks -> Components -> Pages
4. VALIDATE
Ask with AskUserQuestion: "Proceed with implementation?"
- "Implement"
- "Modify"
5. IMPLEMENT
After validation, implement in appropriate order:
Backend: Domain -> Application -> Infrastructure -> Presentation
- context.Context as first parameter for I/O
- Follow Clean Architecture patterns
- Complete error handling
Frontend: Types -> API -> Hooks -> Components -> Pages
- next-intl for ALL user-facing text
- Shadcn UI for standard components
- Strict TypeScript (no
any)
For significant UI: Skill(skill="frontend-design:frontend-design")
6. VERIFY
# Backend
cd backend && go build ./... && go vet ./...
# Frontend
cd frontend && npm run build
Database verification: mcp__supabase-dev__XXXX
7. UPDATE SPEC
Check off completed items in the Execution Plan of the spec file.
Rules
- EXPLORE FIRST - Always explore before implementing
- REUSE - Existing code/patterns as much as possible
- VALIDATE - Always ask before implementing
- STAY IN SCOPE - Only the specified phase
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です