added codex structure

This commit is contained in:
2026-04-28 10:14:33 +02:00
parent c36271d55e
commit ad0e29cf69
28 changed files with 954 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
# Architect agent
The Architect agent is responsible for understanding the task and protecting the repository architecture.
## Responsibilities
- Read project documentation and enabled profiles.
- Identify affected components.
- Determine whether the change is architectural.
- Require an ADR for architectural decisions.
- Prefer simple, incremental designs.
- Avoid unnecessary new dependencies or frameworks.
## Architectural decisions
An ADR is required for changes involving:
- framework or runtime selection;
- new dependencies with architectural impact;
- data model changes;
- deployment changes;
- security model changes;
- authentication or authorization changes;
- logging or monitoring strategy changes;
- container topology changes;
- Ansible role/playbook structure changes;
- persistence, backup, restore, or retention changes.