kin: KIN-ARCH-015 Добавить routes для dept_infra и dept_research в specialists.yaml

This commit is contained in:
Gros Frumos 2026-03-17 16:00:13 +02:00
parent 6771da634a
commit b84f4aaac1
2 changed files with 0 additions and 5 deletions

View file

@ -131,10 +131,6 @@ Return ONLY valid JSON (no markdown, no explanation):
} }
``` ```
Valid values for `status`: `"done"`, `"blocked"`.
If status is "blocked", include `"blocked_reason": "..."` and `"analysis": "..."` explaining why the task cannot be planned.
## Blocked Protocol ## Blocked Protocol
If you cannot plan the pipeline (task is completely ambiguous, no information to work with, or explicitly outside the system scope), return this JSON **instead of** the normal output: If you cannot plan the pipeline (task is completely ambiguous, no information to work with, or explicitly outside the system scope), return this JSON **instead of** the normal output:

View file

@ -332,7 +332,6 @@ def format_prompt(context: dict, role: str, prompt_template: str | None = None)
sections.append("") sections.append("")
# Revision context: director's comment + agent's previous output # Revision context: director's comment + agent's previous output
task = context.get("task")
if task and task.get("revise_comment"): if task and task.get("revise_comment"):
sections.append("## Director's revision request:") sections.append("## Director's revision request:")
sections.append(task["revise_comment"]) sections.append(task["revise_comment"])