diff --git a/frontend/src/features/agents/components/drilldown/ConfigPanel.js b/frontend/src/features/agents/components/drilldown/ConfigPanel.js index e6a208b..388c550 100644 --- a/frontend/src/features/agents/components/drilldown/ConfigPanel.js +++ b/frontend/src/features/agents/components/drilldown/ConfigPanel.js @@ -181,6 +181,51 @@
+ +
+
+ 🛡️ Co-Worker Quality Gate + Enable automated co-worker verification loops. +
+ +
+ + {editConfig?.co_worker_quality_gate && ( +
+
+
+
+ + {editConfig?.rework_threshold || 80}% +
+ setEditConfig({...editConfig, rework_threshold: parseInt(e.target.value)})} + className="w-full h-1 bg-gray-200 dark:bg-gray-700 rounded-lg appearance-none cursor-pointer accent-indigo-500" + /> +
+
+ + setEditConfig({...editConfig, max_rework_attempts: parseInt(e.target.value) || 1})} + className="w-full bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-lg px-2 py-1 text-xs" + /> +
+
+
+ )}