1.4 KiB
1.4 KiB
AGENTS.md
Purpose
This repository uses docs/ as the source of truth for technical documentation and implementation planning.
Working Rules
- Keep the root
README.mdshort and navigational. - Keep detailed technical documentation in
docs/. - Update relevant documentation in the same change whenever implementation changes:
- architecture
- protocol or state machine
- integrations or tool behavior
- deployment assumptions
- backlog ordering or exit criteria
- Treat
docs/backlog.mdas the current phased implementation backlog. - Prefer small, safe increments that keep docs and implementation aligned.
Documentation Map
docs/overview.md— project overview and scopedocs/architecture.md— system structure and pipelinedocs/protocol.md— event contract and state machinedocs/integrations.md— service integrations and tool safetydocs/deployment.md— deployment topology, security, and risksdocs/backlog.md— phased implementation backlog
Update Expectations During Implementation
- If code changes behavior, update the matching document before considering the work done.
- If implementation reveals a new constraint or decision, document it in the most relevant existing file.
- If a document becomes too broad, split it into smaller files instead of overloading the root
README.md. - Do not silently let docs drift from implementation.