スキル一覧に戻る
clearclown

aidaresume

by clearclown

1🍴 0📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: aida:resume description: | AIDA Resume - Continue from last session state. Reads session.json and resumes from where AIDA left off. Useful for continuing interrupted implementations. tools: Read, Write, Edit, Bash, Glob, Grep, Task hooks: Stop: - hooks: - type: command command: "$CLAUDE_PROJECT_DIR/hooks/stop/quality-gate-enforcer.sh" timeout: 300

AIDA Resume

Continue AIDA execution from the last saved session state.

Usage

/aida:resume

Or with specific project:

/aida:resume twitter-clone

MANDATORY EXECUTION PROTOCOL

You MUST follow this protocol exactly. Do NOT deviate.


Step 1: Read Session State

Read .aida/state/session.json to understand current state:

cat .aida/state/session.json

Extract key information:

  • current_phase - Which phase are we in?
  • project_name - What project?
  • pending_tasks - What's left to do?
  • completed_tasks - What's already done?
  • quality_gates_passed - Have gates passed?

Step 2: Determine Resume Point

Based on current_phase:

PhaseAction
SPEC_PHASEResume specification generation (Phases 1-4)
IMPL_PHASEResume implementation (Phase 5)
COMPLETEDProject already done - show status
Missing/EmptyNo session - suggest /aida instead

Step 3: Resume Based on Phase

If SPEC_PHASE:

  1. Check which spec outputs exist:

    • .aida/specs/{{PROJECT}}-requirements.md
    • .aida/specs/{{PROJECT}}-design.md
    • .aida/specs/{{PROJECT}}-tasks.md
  2. If any missing, launch Leader-Spec to complete:

    Task tool:
      description: "Leader-Spec: Complete Remaining Phases"
      subagent_type: "general-purpose"
      model: "sonnet"
      prompt: [see leader-spec.md]
    
  3. After completion, transition to IMPL_PHASE

If IMPL_PHASE:

  1. Check what implementation exists:

    ls -la ./backend/
    ls -la ./frontend/
    ls -la ./docker-compose.yml
    
  2. Run quality gates to see what's failing:

    ./scripts/quality-gates.sh {{PROJECT}}
    
  3. Based on failures, launch appropriate Players:

    • Backend tests failing → Launch Backend Player
    • Frontend tests failing → Launch Frontend Player
    • Docker failing → Launch Docker Player
    • E2E failing → Fix E2E tests
  4. Iterate until ALL gates pass

If COMPLETED:

Show project status and exit:

Project {{PROJECT}} is already complete.

Quality Gates: ALL PASSED
Location: ./

To run the project:
  docker compose up -d

Step 4: Continue with Quality Gate Loop

After resuming, follow the standard quality gate iteration:

┌─────────────────────────────────────────────────────────────────┐
│  1. RUN GATES → ./scripts/quality-gates.sh {{PROJECT}}          │
│                                                                  │
│  2. IF FAILED:                                                   │
│     → Identify failing gates                                     │
│     → Fix issues (add tests, fix code, etc.)                     │
│     → GOTO step 1                                                │
│                                                                  │
│  3. IF ALL PASS:                                                 │
│     → Update session.json: quality_gates_passed = true           │
│     → Update kanban.md                                           │
│     → Output "DONE"                                              │
└─────────────────────────────────────────────────────────────────┘

Step 5: Update Session State

After each action, update .aida/state/session.json:

{
  "resumed_at": "<ISO8601>",
  "resume_count": N+1
}

Example Session Read

{
  "session_id": "aida-20260111-twitter-clone",
  "current_phase": "IMPL_PHASE",
  "project_name": "twitter-clone",
  "pending_tasks": ["impl-frontend", "quality-gates"],
  "completed_tasks": ["spec-requirements", "spec-design", "spec-tasks", "impl-backend"],
  "quality_gates_passed": false
}

This tells us:

  • Phase: Implementation (Phase 5)
  • Backend is done
  • Frontend is pending
  • Quality gates haven't passed yet

Resume action: Launch Frontend Player, then run quality gates.


Error Handling

No Session File

No active AIDA session found.

To start a new project:
  /aida "Your project description"

To check status:
  /aida:status

Corrupted Session

If session.json is malformed:

  1. Try to read kanban.md for state
  2. Check ./ for existing implementation
  3. Reconstruct session state from artifacts

Project Directory Missing

If ./{{PROJECT}} doesn't exist but session says IMPL_PHASE:

  1. Reset to SPEC_PHASE
  2. Verify specs exist
  3. Re-launch implementation

CommandDescription
/aidaStart new project from scratch
/aida:statusCheck current state without resuming
/aida:fixFix existing project to meet quality gates

スコア

総合スコア

60/100

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

SKILL.md

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

+20
LICENSE

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

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

+5
言語

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

+5
タグ

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

0/5

レビュー

💬

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