ワンクリックで
tasks-report
Display task queue report with current status and priorities
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Display task queue report with current status and priorities
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Properly close a mission with cleanup and documentation
Initialize a new mission with role selection and persona naming
Claim tasks in the s9 database to take ownership and start work
Close tasks when complete or aborted using OpenCode tools
Create new tasks in the s9 task database with proper formatting and validation
Query, list, and report on tasks in the s9 database
| name | tasks-report |
| description | Display task queue report with current status and priorities |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"all-agents","workflow":"task-viewing"} |
I generate and display a comprehensive task report using the task_report and task_list tools, showing:
This gives you a bird's-eye view of all project work.
This skill uses:
task_report tool - Generate formatted reportstask_list tool - List and filter taskstask_show tool - View individual task detailsAll tools return clean JSON results and automatically receive mission context from OpenCode.
Use this skill when:
/tasksDon't use when:
Generate an active-only report using the tool:
result = task_report(active_only=True)
What this does:
Expected output: JSON array of tasks grouped by priority showing:
Note: If the Director explicitly wants to see all tasks including completed ones:
result = task_report(active_only=False)
After displaying the report, provide a quick summary for the Director.
Count tasks by status:
Identify key information:
Show the full report followed by a summary:
[Full markdown report here]
---
**Summary:**
- **Total tasks:** 59
- **TODO (available):** 5 tasks
- **UNDERWAY (active):** 2 tasks
- **BLOCKED:** 1 task (H001 needs attention)
- **COMPLETE:** 51 tasks
**For your role ([Role]):**
- 3 TODO tasks available
- Highest priority: H036 - Security Review of Gateway Authentication
**Critical attention needed:**
- H001 (BLOCKED) - Create Slack Bot Setup Guide - blocked by external dependency
**Recommendations:**
- Consider claiming H036 (HIGH priority, Inspector role)
- Review H001 blocker and determine if it can be unblocked
Based on the report, suggest what the Director might want to do:
If TODO tasks exist for their role:
Would you like to:
1. Claim one of these tasks? (I can use task_claim tool)
2. See details on a specific task? (I can use task_show tool)
3. Filter tasks? (I can show just TODO, just HIGH priority, etc.)
If no TODO tasks for their role:
No TODO tasks for [Role] right now. You could:
1. Check other roles for work that needs doing
2. Create new tasks if you identify work (I can use task_create tool)
If CRITICAL tasks exist:
⚠️ Attention needed:
- CRITICAL task C004 requires immediate action
Would you like me to show details on this task?
If the Director wants to filter the report, use these tool calls:
Filter by status:
task_list(status="TODO")
task_list(status="UNDERWAY")
Filter by role:
task_list(role="Engineer")
task_list(role="Tester")
Filter by priority:
task_list(priority="CRITICAL")
task_list(priority="HIGH")
Combine filters:
task_list(status="TODO", role="Engineer", priority="HIGH")
Show the filtered results and ask if they want to see more or claim a task.
active_only=False to see completed tasks tooActive statuses:
TODO - Available to claimUNDERWAY - Currently being worked onTerminal statuses:
COMPLETE - Successfully finishedABORTED - Cancelled or obsoleteNote: Per ADR-013, only COMPLETE and ABORTED are supported for closing tasks. BLOCKED, PAUSED, and REVIEW are legacy statuses.
CRITICAL (C###):
HIGH (H###):
MEDIUM (M###):
LOW (L###):
- means unclaimed (available)After viewing report:
task_claim - Claim a TODO task you seetask_update - Update a task you're working ontask_close - Close a task when donetask_create - Create new task if work is missingFor specific task details:
task_show(task_id="TASK_ID")
This shows full details including description, notes, dependencies.
User: /tasks
Agent:
Generating task report...
[Task data from task_report tool]
---
**Summary:**
- **Total active tasks:** 7
- **TODO (available):** 3 tasks
- **UNDERWAY (active):** 1 task
**For your role (Tester):**
- 1 TODO task: H003 - Validate Rate Limiting Functionality
- 1 UNDERWAY: H035 - Full Stack Integration Testing (claimed by themis)
**Recommendations:**
You could claim H003 if you're ready to work on rate limiting validation.
Would you like to:
1. See details on H003? (I can use task_show)
2. Claim H003? (I can use task_claim)
User: /tasks
Agent:
[Full report from task_report...]
---
**Summary:**
- **Total active tasks:** 7
- **CRITICAL:** 1 task ⚠️
**Attention needed:**
- C001 (TODO) - Fix Security Vulnerability in Auth System
- Role: Engineer
- Priority: CRITICAL
This critical task needs immediate attention.
Would you like me to show details or help you claim it?
User: /tasks then "Show me just TODO high priority tasks"
Agent:
task_list(status="TODO", priority="HIGH")
Result:
TODO HIGH Priority Tasks:
H003 - Validate Rate Limiting Functionality (Tester)
H036 - Security Review of Gateway Authentication (Inspector)
These are the available high-priority tasks ready to be claimed.
Would you like details on either of these?
project.dbtask_list() to see all taskstask_createactive_only=True, should only show active work (much shorter)task_list(status="TODO") to see only available tasksFull report:
# Active tasks only (default - recommended)
task_report(active_only=True)
# All tasks including completed (if explicitly requested)
task_report(active_only=False)
Filtered reports:
# Active tasks only (TODO, UNDERWAY)
task_list(active_only=True)
# By status
task_list(status="TODO")
task_list(status="UNDERWAY")
# By role
task_list(role="Engineer")
task_list(role="Tester")
# By priority
task_list(priority="HIGH")
task_list(priority="CRITICAL")
# Combined filters
task_list(status="TODO", role="Engineer", priority="HIGH")
Task details:
task_show(task_id="TASK_ID")
Related Skills:
task-create - Creating new taskstask-query - Querying and listing taskstask-claim - Claiming tasks to work ontask-update - Updating task progresstask-close - Closing completed tasksDocumentation:
.opencode/data/README.md - Complete s9 system referenceADR-013 - Site-nine as OpenCode Integration Platform (tool-based architecture)