Skip to content
Open
Show file tree
Hide file tree
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: 1 addition & 1 deletion .claude/agents/code-simplifier.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Find overly complex code and suggest simpler alternatives.
## Rules

- Read the code before suggesting changes.
- Respect the project's conventions (see `CLAUDE.md`).
- Respect the project's conventions (see `AGENTS.md`).
- Ensure suggestions maintain correctness — simplification must not break behavior.
- Consider WASM constraints when suggesting alternatives.

Expand Down
2 changes: 1 addition & 1 deletion .claude/agents/pr-reviewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ For each changed file, evaluate:
- No Tokio or runtime-specific deps in `crates/trusted-server-core`
- Fastly-specific APIs only in `crates/trusted-server-adapter-fastly`

#### Convention compliance (from CLAUDE.md)
#### Convention compliance (from AGENTS.md)

- `expect("should ...")` instead of `unwrap()` in production code
- `error-stack` (`Report<E>`) with `derive_more::Display` for errors (not thiserror/anyhow)
Expand Down
2 changes: 1 addition & 1 deletion .claude/commands/review-changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Review all staged and unstaged changes in the working tree.
1. Run `git diff` and `git diff --cached` to see all changes.
2. Review each changed file for:
- Correctness and logic errors
- Style violations (see CLAUDE.md conventions)
- Style violations (see AGENTS.md conventions)
- Missing error handling
- Security concerns (hardcoded secrets, injection risks)
- Missing or incorrect tests
Expand Down
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Closes #

## Checklist

- [ ] Changes follow [CLAUDE.md](/CLAUDE.md) conventions
- [ ] Changes follow [AGENTS.md](/AGENTS.md) conventions
- [ ] No `unwrap()` in production code — use `expect("should ...")`
- [ ] Uses `tracing` macros (not `println!`)
- [ ] New code has tests
Expand Down
Loading