Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/interop/TOOLS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ This file is auto-generated. Do not edit manually.
| Tool | Risk | Description | Usage |
| :--- | :--- | :--- | :--- |
| task_create | **L1** | Create a new development task. | `task_create(category, title, description)` |
| task_breakdown | **L1** | Break down a feature into bite-sized tasks. | `task_breakdown(task_id, format)` |
| task_list | **L0** | List existing tasks, optionally filtered by status or category. | `task_list(status, category, archived)` |
| task_update | **L1** | Update the status of an existing task. | `task_update(task_id, status)` |
| task_show | **L0** | Show the details of a specific task. | `task_show(task_id)` |
Expand Down
23 changes: 23 additions & 0 deletions docs/interop/tool_definitions.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,29 @@
]
}
},
{
"name": "task_breakdown",
"description": "Break down a feature into bite-sized tasks.",
"risk_level": "L1",
"implementation": "python3 scripts/tasks.py breakdown {task_id} --format {format}",
"parameters": {
"type": "object",
"properties": {
"task_id": {
"type": "string",
"description": "The ID of the task to break down."
},
"format": {
"type": "string",
"enum": ["text", "json"],
"description": "Output format."
}
},
"required": [
"task_id"
]
}
},
{
"name": "task_list",
"description": "List existing tasks, optionally filtered by status or category.",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
id: FEATURES-20260305-171335-FJF
status: pending
status: completed
title: Implement Phase 2 Granular Execution Micro Planning
priority: medium
created: 2026-03-05 17:13:35
Expand Down
5 changes: 5 additions & 0 deletions scripts/tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ function task_create() {
python3 scripts/tasks.py create "$@"
}

function task_breakdown() {
# Risk Level: L1
python3 scripts/tasks.py breakdown "$@"
}

function task_list() {
# Risk Level: L0
python3 scripts/tasks.py list "$@"
Expand Down