#!/usr/bin/env python3 """Delegate Audit task to Grill-QA via direct kanban manipulation.""" import subprocess, json GRQ = "grill-qa" CHAT = "-1003707758328" THREAD = 20 task = subprocess.run([ "hermes", "kanban", "create", f"[GQ.02] Audit & Test Unified Governance Dashboard", "--assignee", GRQ, "--body", "Audit Task: http://100.71.157.103:9120", ], capture_output=True, text=True) task_id = task.stdout.split()[-1].strip() print(f"Created: {task_id}")