Fix 14 tool bugs: capability_check tool_name, quality_gate pipefail, 12 doc param fixes, 3 test-suite fixes

This commit is contained in:
Software Orchestrator
2026-06-17 23:33:57 +00:00
parent 53758f0755
commit 2343f0e717
24 changed files with 829 additions and 166 deletions
+10 -2
View File
@@ -1,11 +1,19 @@
### repo_manifest
Inspect or generate a repository manifest from explicitly provided repository paths.
Create, read, update, list or validate project/deployment manifests (DB-backed).
Use this exact Agent Zero tool-call shape:
```json
{"tool_name":"repo_manifest","tool_args":{"project_root":"/a0/usr/workdir/project"}}
{"tool_name":"repo_manifest","tool_args":{"project_name":"my_project","action":"read","manifest_type":"project"}}
```
Args:
- `project_name` (str): Projektname (bevorzugt)
- `project_root` (str): Legacy wird zu basename() aufgelöst
- `manifest_type` (str): "project" (default), "deployment", "quality"
- `action` (str): "create" (default), "read", "update", "list", "validate"
- `data` (str|dict): JSON-string oder dict (für create/update)
- `format` (str): "summary" (default) oder "json"
Rules:
- Do not use this tool to discover, read, infer, validate, or print credential values.
- If the tool is not found, stop and report a runtime tool-registration failure. Do not switch to WebUI login, CSRF, HTTP cache-refresh, shell credential scans, or `.env`/config/log searches.