docs(kanban): clarify decomposer profile roles

This commit is contained in:
Gille
2026-06-06 19:29:00 -07:00
committed by Teknium
parent fd4c8b404b
commit fda66c488b
7 changed files with 18 additions and 16 deletions
+2 -2
View File
@@ -3744,9 +3744,9 @@
}, specifyBusy ? "Specifying…" : "✨ Specify")
: null;
// "Decompose" is the orchestrator-driven fan-out. Like Specify, only
// "Decompose" is the built-in decomposer fan-out. Like Specify, only
// makes sense on triage-column tasks — elsewhere the backend short-
// circuits with ok:false. When the orchestrator returns fanout:false
// circuits with ok:false. When the decomposer returns fanout:false
// we render the same single-task message as Specify; when it fans
// out we report the child count for quick at-a-glance verification.
const decomposeButton = (task.status === "triage" && props.onDecompose)
+1 -1
View File
@@ -2204,7 +2204,7 @@ def auto_describe_profile(profile_name: str, payload: DescribeAutoBody):
# ---------------------------------------------------------------------------
# Decompose endpoint (orchestrator-driven fan-out)
# Decompose endpoint (built-in decomposer fan-out)
# ---------------------------------------------------------------------------
class DecomposeBody(BaseModel):