chore: mark TASK-006 complete

This commit is contained in:
2026-06-02 11:41:27 +01:00
parent 21611b7c4e
commit aee13b045e
5 changed files with 534 additions and 0 deletions
+10
View File
@@ -12,6 +12,7 @@ from .handoff import build_handoff
from .status import project_stage, task_counts, update_project_state, update_agent_handoff
from .tasks import generate_agent_prompt, get_next_task, update_task_status
from .templates import CONTEXT_FILES, write_file_if_missing
from .guardrails import run_all_guardrails, format_report
app = typer.Typer(help="RDB discovery and delivery workflow CLI.")
console = Console()
@@ -186,3 +187,12 @@ def prompt() -> None:
root = root_path()
result = generate_agent_prompt(root)
console.print(result)
@app.command()
def guardrails() -> None:
"""Review agent runs for signs of non-progress (stalls, repeats, loops)."""
root = root_path()
results = run_all_guardrails(root)
report = format_report(results)
console.print(report)