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

33
.codex/prompts/task.md Normal file
View File

@@ -0,0 +1,33 @@
# Generic task prompt
Use this prompt for a generic implementation task.
```text
You are working in this repository as Codex.
Mandatory instructions:
- Read AGENTS.md and all relevant files under .codex/ before making changes.
- Start from develop.
- Create a dedicated feature branch.
- Use the logical agent orchestration defined in .codex/orchestration.md.
- Apply pragmatic TDD.
- Implement only the minimal necessary change.
- Run the configured Docker-based test command from .codex/project.md.
- Update documentation and ADRs if required.
- Commit using Conventional Commits.
Task:
<DESCRIBE THE TASK HERE>
Acceptance criteria:
<LIST ACCEPTANCE CRITERIA HERE>
Final response must include:
- branch name;
- commit hash;
- summary of changes;
- tests executed and result;
- documentation/ADR updates;
- residual risks;
- rollback notes.
```