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

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.