con un clic
task-query
Query, list, and report on tasks in the s9 database
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Query, list, and report on tasks in the s9 database
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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 | task-query |
| description | Query, list, and report on tasks in the s9 database |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"all-agents","workflow":"task-discovery"} |
CRITICAL: This project uses the s9 CLI executable throughout these instructions.
s9 (use in bash commands)site_nine (use in Python imports: from site_nine import ...)All commands in this skill use the s9 executable via bash. You should NOT attempt to import an s9 module in Python code.
I provide comprehensive instructions for finding, listing, and reporting on tasks in the s9 task database. Use this skill to discover available work, view task details, and generate reports.
s9 task list --status TODO
s9 task list --status UNDERWAY
s9 task list --status TODO,UNDERWAY
s9 task list --status COMPLETE
Available statuses:
TODO - Not startedUNDERWAY - In progressBLOCKED - Can't proceedPAUSED - Temporarily stoppedREVIEW - Awaiting reviewCOMPLETE - FinishedABORTED - Cancelleds9 task list --role Engineer --status TODO
s9 task list --role Administrator --status TODO
s9 task list --role Tester
Available roles:
s9 task list --priority CRITICAL,HIGH --status TODO
s9 task list --priority HIGH
s9 task list --priority MEDIUM,LOW
Priority levels:
CRITICAL - Immediate action requiredHIGH - Important, do soonMEDIUM - Nice to haveLOW - Do when time permitsShow only TODO and UNDERWAY tasks:
s9 task list --active-only
This is the most common query for finding work.
See tasks claimed by specific agent:
s9 task list --agent "Goibniu"
s9 task list --agent "Ishtar" --status UNDERWAY
s9 task list --agent "Ptah" --status COMPLETE
Filters can be combined:
# High priority Engineer tasks that are TODO
s9 task list --role Engineer --priority HIGH --status TODO
# Active tasks assigned to Goibniu
s9 task list --agent "Goibniu" --active-only
# Completed tasks for a specific role
s9 task list --role Tester --status COMPLETE
Get full details for a specific task:
s9 task show ENG-H-0037
Shows:
Task: ENG-H-0037
Title: Implement Rate Limiting Middleware
Status: UNDERWAY
Priority: HIGH
Role: Engineer
Category: Security
Agent: Goibniu
Created: 2026-02-03T10:00:00+00:00
Claimed: 2026-02-05T14:00:00+00:00
Actual Hours: 4.0
Objective:
Add rate limiting to protect API endpoints from abuse
Description:
Implement token bucket rate limiting with configurable limits per endpoint
Dependencies: None
Notes:
- Implemented token bucket algorithm, added configuration (2.0 hours)
- Added tests, all passing (4.0 hours)
File: .opencode/work/tasks/ENG-H-0037.md
s9 task report --format markdown
Generates markdown-formatted report of all tasks, suitable for documentation.
s9 task report --format table
Generates ASCII table suitable for terminal display.
s9 task report --format json
Generates JSON output for programmatic processing.
Reports can be filtered by role:
s9 task report --role Engineer --format markdown
s9 task report --role Administrator --format table
# Find TODO tasks for your role
s9 task list --role Engineer --status TODO
# Find high-priority TODO tasks
s9 task list --role Engineer --priority CRITICAL,HIGH --status TODO
# Find any active work
s9 task list --role Engineer --active-only
# Critical tasks across all roles
s9 task list --priority CRITICAL --status TODO
# High priority tasks needing attention
s9 task list --priority HIGH --status TODO,UNDERWAY
# See what's blocked
s9 task list --status BLOCKED
# Check your blocked tasks
s9 task list --agent "YourName" --status BLOCKED
Before claiming a task, check if it has dependencies:
s9 task show ENG-H-0038
# Depends on: ENG-H-0037
# Check if dependency is complete
s9 task show ENG-H-0037
# Status: COMPLETE ✅
# What am I working on?
s9 task list --agent "YourName" --status UNDERWAY
# What's next to work on?
s9 task list --role YourRole --priority HIGH --status TODO
# What's blocked?
s9 task list --status BLOCKED
# 1. Check critical tasks first
s9 task list --priority CRITICAL --status TODO
# 2. Then high priority for your role
s9 task list --role YourRole --priority HIGH --status TODO
# 3. Look at medium priority if nothing urgent
s9 task list --role YourRole --priority MEDIUM --status TODO
# How many tasks completed?
s9 task list --status COMPLETE
# How many tasks in progress?
s9 task list --status UNDERWAY
# How much work left?
s9 task list --status TODO
# What is each agent working on?
s9 task list --status UNDERWAY
# What has been completed?
s9 task list --status COMPLETE
# Generate status report
s9 task report --format markdown
--active-only for quick work discoverytask show to understand task fully before claimingTask lists show key information in columns:
TASK_ID | TITLE | STATUS | PRIORITY | ROLE | AGENT
ENG-H-0037 | Implement Rate Limiting | UNDERWAY | HIGH | Engineer | Goibniu
ENG-H-0038 | Configure Gateway | TODO | HIGH | Operator | -
DOC-M-0019 | Update Documentation | PAUSED | MEDIUM | Documentarian | Ishtar
Full task details including:
s9 task list without filters to see all taskss9 task list | grep TASK_ID to find it--active-only instead of listing all statusestask show for single task detailsRelated Skills:
task-create - Creating new taskstask-claim - Claiming tasks found through queriestask-update - Updating tasks after claimingtask-close - Closing tasks when completetask-management - Overview of task systemDocumentation:
.opencode/data/README.md - Complete s9 system reference