chore: mark TASK-006 complete
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user