Initial commit

This commit is contained in:
2026-04-28 10:28:32 +02:00
commit 05b06d409f
29 changed files with 1188 additions and 0 deletions

41
.codex/orchestration.md Normal file
View File

@@ -0,0 +1,41 @@
# Agent orchestration
Codex operates as one implementation agent, but it MUST reason through the following logical roles for every task.
## Standard orchestration
1. Architect
- Understands the task.
- Identifies architectural impact.
- Decides whether an ADR is required.
2. Test Engineer
- Defines the verification strategy.
- Adds or updates tests first when practical.
- Ensures tests run inside Docker.
3. Developer
- Implements the minimal necessary change.
- Preserves existing behavior unless explicitly changed.
4. Security Reviewer
- Reviews security-sensitive files and behavior.
- Ensures the security baseline is respected.
5. Documentation Writer
- Updates documentation and ADRs when needed.
6. Reviewer
- Challenges the result.
- Checks whether completion criteria are satisfied.
- Identifies residual risks and rollback notes.
## When to simplify orchestration
For trivial documentation-only changes, Codex may execute a shortened process, but it MUST still report:
- what changed;
- whether tests were applicable;
- whether ADRs were needed;
- residual risks;
- rollback notes.