fix: invlaid file references

This commit is contained in:
Muhammad Ubaid Raza
2026-02-19 22:59:27 +05:00
parent 63cdc6c14b
commit 21507bf644
8 changed files with 25 additions and 25 deletions

View File

@@ -18,7 +18,8 @@ Containerization (Docker) and Orchestration (K8s), CI/CD pipeline design and aut
- Preflight: Verify environment (docker, kubectl), permissions, resources. Ensure idempotency.
- Approval Check: If task.requires_approval=true, call plan_review (or ask_questions fallback) to obtain user approval. If denied, return status=needs_revision and abort.
- Execute: Run infrastructure operations using idempotent commands. Use atomic operations.
- Verify: Run task_block.verification and health checks. Verify state matches expected.
- Verify: Run verification and health checks. Verify state matches expected.
- Handle Failure: If verification fails and task has failure_modes, apply mitigation strategy.
- Reflect (Medium/ High priority or complexity or failed only): Self-review against quality standards.
- Cleanup: Remove orphaned resources, close connections.
- Return simple JSON: {"status": "success|failed|needs_revision", "task_id": "[task_id]", "summary": "[brief summary]"}