Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ The first four run against source and jsdom; the last is real-browser coverage j

New logic needs tests; the project's standing bar is 100% coverage, not "we'll add tests later." Don't silently fix unrelated pre-existing issues inside an unrelated change — note them instead, so diffs stay auditable — but do fix anything the change itself breaks. Prefer the smallest correct change, and check before touching release/deploy credentials, branch protection rulesets, or anything published or externally reachable.

New UI surface must work at phone width, not just desktop — this app has no separate mobile build, so `pages/0x67/page.css` is solely responsible for that. Resize to a narrow viewport (e.g. ~375px) and check any new screen or control before considering it done, the same way a change isn't done until its tests pass. Extend the existing `@media (max-width: 700px)` rules (collapsible sidebar drawer, wrapped header, panel overflow menu) rather than inventing a parallel pattern.

## See also

- [Contributing][contributing] — how to propose a change and the local dev loop
Expand Down