Added REPO_POLICIES.md — copied from the standard template at sneak/prompts (last_modified: 2026-03-10). This is the authoritative cross-project policy document covering repository structure, tooling, Docker, formatting, testing, and workflow standards.
Rules already covered by REPO_POLICIES.md (e.g. git add -A, Makefile targets) are no longer repeated
AGENTS.md retains only agent-specific workflow instructions: test-first bug fixing, no AI attribution in commits, per-change make fmt/test/lint workflow, and repo-specific notes (proto files, FORMAT.md, TODO.md)
Updated README.md — added a reference to REPO_POLICIES.md in the Participation section
Formatting — make fmt (prettier) applied to all markdown files
Verification
docker build . passes clean — lint, fmt-check, and all tests green.
Closes #48
## Changes
- **Added `REPO_POLICIES.md`** — copied from the standard template at [sneak/prompts](https://git.eeqj.de/sneak/prompts/src/branch/main/prompts/REPO_POLICIES.md) (last_modified: 2026-03-10). This is the authoritative cross-project policy document covering repository structure, tooling, Docker, formatting, testing, and workflow standards.
- **Renamed `CLAUDE.md` → `AGENTS.md`** — deduplicated content:
- Rules already covered by `REPO_POLICIES.md` (e.g. `git add -A`, Makefile targets) are no longer repeated
- `AGENTS.md` retains only agent-specific workflow instructions: test-first bug fixing, no AI attribution in commits, per-change make fmt/test/lint workflow, and repo-specific notes (proto files, FORMAT.md, TODO.md)
- **Updated `README.md`** — added a reference to `REPO_POLICIES.md` in the Participation section
- **Formatting** — `make fmt` (prettier) applied to all markdown files
## Verification
`docker build .` passes clean — lint, fmt-check, and all tests green.
- Add REPO_POLICIES.md from the standard template (sneak/prompts)
- Rename CLAUDE.md to AGENTS.md with agent-specific workflow instructions
- Move policy-like rules (git add, make targets, etc.) to REPO_POLICIES.md
- Add reference to REPO_POLICIES.md in README Participation section
- Run make fmt (prettier formatting on markdown files)
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Closes #48
Changes
Added
REPO_POLICIES.md— copied from the standard template at sneak/prompts (last_modified: 2026-03-10). This is the authoritative cross-project policy document covering repository structure, tooling, Docker, formatting, testing, and workflow standards.Renamed
CLAUDE.md→AGENTS.md— deduplicated content:REPO_POLICIES.md(e.g.git add -A, Makefile targets) are no longer repeatedAGENTS.mdretains only agent-specific workflow instructions: test-first bug fixing, no AI attribution in commits, per-change make fmt/test/lint workflow, and repo-specific notes (proto files, FORMAT.md, TODO.md)Updated
README.md— added a reference toREPO_POLICIES.mdin the Participation sectionFormatting —
make fmt(prettier) applied to all markdown filesVerification
docker build .passes clean — lint, fmt-check, and all tests green.there need to be gitea actions added to run the checks.
Follow-up PR #53 adds the Gitea Actions CI workflow (
.gitea/workflows/check.yml) as requested.