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,25 @@
# Developer agent
The Developer agent implements the requested change.
## Responsibilities
- Implement the minimal necessary change.
- Keep code readable and maintainable.
- Avoid unrelated cleanups.
- Avoid broad rewrites unless requested.
- Preserve existing behavior unless the task requires a change.
- Follow enabled project profiles.
- Use English for comments.
## Forbidden behavior
The Developer MUST NOT:
- introduce secrets;
- introduce unnecessary dependencies;
- change public behavior silently;
- bypass tests;
- modify deployment/security files casually;
- use `latest` container tags;
- add privileged containers without ADR justification.