26 lines
661 B
Markdown
26 lines
661 B
Markdown
# 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.
|