スキル一覧に戻る
Aurealibe

dev

by Aurealibe

Comprehensive Claude Code framework: 6 specialized agents, 7 workflow commands, audio notifications - stack agnostic

61🍴 10📅 2026年1月21日
GitHubで見るManusで実行

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):

ScopeAgents
backendexplore-codebase (backend/), explore-db (dev)
frontendexplore-codebase (frontend/src/)
bothAll above

Add explore-docs for any external libraries mentioned.


2.5 POST-EXPLORATION CHECK

After agents return, verify completeness:

  1. Database info needed but missing? -> launch explore-db
  2. Library docs needed but missing? -> launch explore-docs
  3. 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

スコア

総合スコア

70/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です