delimit-cli 3.6.2 → 3.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gateway/ai/governance.py +4 -0
- package/package.json +1 -1
package/gateway/ai/governance.py
CHANGED
|
@@ -231,6 +231,10 @@ def govern(tool_name: str, result: Dict[str, Any], project_path: str = ".") -> D
|
|
|
231
231
|
"reason": "Check ledger for what's next",
|
|
232
232
|
"premium": False,
|
|
233
233
|
})
|
|
234
|
+
else:
|
|
235
|
+
# Excluded tools still get the next_steps field (empty) for schema consistency
|
|
236
|
+
if "next_steps" not in governed_result:
|
|
237
|
+
governed_result["next_steps"] = []
|
|
234
238
|
|
|
235
239
|
return governed_result
|
|
236
240
|
|