スキル一覧に戻る
AVRA-CADAVRA

status-query-handling

by AVRA-CADAVRA

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

SKILL.md


Status Query Handling

Trigger Phrases

When user says:

  • "where are we with [topic]"
  • "what's the status of [topic]"
  • "how far along is [topic]"
  • "what's complete in [topic]"
  • "show me progress on [topic]"
  • "update me on [topic]"

Mandatory Protocol

⚠️ CRITICAL: Read ALL related documents, not just one.

Search Strategy

Find ALL related documents:

# Search for all document types
glob_file_search('**/*[topic]*.md')
glob_file_search('**/*[topic]*plan*.md')
glob_file_search('**/*[topic]*complete*.md')
glob_file_search('**/*[topic]*progress*.md')
glob_file_search('**/*[topic]*status*.md')
glob_file_search('**/*[topic]*summary*.md')
glob_file_search('**/*[topic]*COMPLETE*.md')
glob_file_search('**/*[topic]*PROGRESS*.md')

Document Types to Find

  1. Plan Documents

    • *_plan.md
    • *PLAN.md
    • *plan*.md
  2. Completion Documents

    • *complete*.md
    • *COMPLETE*.md
    • *_complete.md
  3. Progress Documents

    • *progress*.md
    • *PROGRESS*.md
    • *_progress.md
  4. Status Documents

    • *status*.md
    • *STATUS*.md
    • *_status.md
    • *update*.md
  5. Summary Documents

    • *summary*.md
    • *SUMMARY*.md
    • *_summary.md

Workflow

User asks: "Where are we with [topic]?"
    ↓
Step 1: Search ALL document types (5 min)
├─ Search by filename patterns
├─ Search by content (grep)
└─ Find plan, complete, progress, status, summary
    ↓
Step 2: Read ALL found documents (15-20 min)
├─ Read plan document
├─ Read completion document
├─ Read progress document
├─ Read status document
└─ Read summary document (if exists)
    ↓
Step 3: Synthesize comprehensive answer (10 min)
├─ What's planned
├─ What's complete
├─ What's in progress
├─ What's blocked
└─ What's next

Synthesis Pattern

## Status: [Topic]

### What's Planned
[From plan document]

### What's Complete
[From completion document]

### What's In Progress
[From progress/status documents]

### Blockers
[From blockers/status documents]

### What's Next
[From plan/status documents]

Reference

  • docs/plans/methodology/START_HERE_NEW_TASK.md - Status query protocol
  • .cursorrules - Status Query Triggers section

スコア

総合スコア

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

レビュー

💬

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