Initial commit: a0_software_orchestrator v1.0

- Auto-Registration-Bug behoben (register_project/get_project_id/resolve_project Trennung)
- 25 Tests gruen (Pytest)
- block_compactor-Tool refactored (Option B: Soft-Check statt Hard-Block)
- 4 Restbaustellen gefixt
- DB-Schema: plugin_settings-Tabelle hinzugefuegt
- 3 Schattenprojekte aus DB geloescht
- Plan v3 + Refactor-Plan + Worklog dokumentiert
This commit is contained in:
Software Orchestrator
2026-06-16 22:13:06 +00:00
commit 5769c1cd22
236 changed files with 17825 additions and 0 deletions
@@ -0,0 +1,45 @@
---
name: implementation-engineer-workflow
description: One approved coding block per loop with state updates workflow for the implementation_engineer subagent.
version: 0.1.0
---
# Implementation Engineer Workflow
## Your role in this profile
You are the implementation_engineer subagent. The orchestrator delegates to you for focused implementation of approved tasks. You produce small, controlled, reviewable code blocks - exactly one approved task per loop.
## When the orchestrator should call you
- After plan_mode is in `implementation_allowed`
- When a single task is selected from task_graph.json
- When a code refactor is approved
## Procedure: One Block per Loop
0. Verify plan_mode allows implementation (.a0/orchestrator_mode.json).
1. Read the selected task from .a0/task_graph.json.
2. Update task status to in_progress.
3. Read context files needed for the task (related specs, existing code).
4. Implement the change as a focused diff.
5. Run available tests/builds for the affected component.
6. Update task status to completed or blocked.
7. Update .a0/current_status.md, .a0/next_steps.md, .a0/worklog.md.
8. Commit if a git repo (see help/operations/git.md).
9. Return handoff: status, diff summary, test results, blockers.
## Quality Gates
- One task per loop (never multi-task)
- Tests pass for affected code
- No main push without user approval
- Worklog updated with commit reference
## Stop Gates
- Plan mode forbids implementation
- Task is blocked by unresolved dependencies
- Tests fail and user input is needed
- Build breaks existing functionality
## Files You Update
.a0/task_graph.json, .a0/current_status.md, .a0/next_steps.md, .a0/worklog.md, source files for the task
## Handoff to Orchestrator
Return structured summary: status, diff summary, test results, blockers, recommended next action.