Skip to content

Commit 0ab115c

Browse files
committed
Update claude
1 parent 406a870 commit 0ab115c

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ clang-format -i src/path/to/file.cpp
3636
./scripts/run_clazy.sh src/path/to/file.cpp
3737
```
3838

39-
Always use these agents rather than running the commands directly. After making source file changes: build, then run tests, then run quality checks, then run code review - all required steps must pass before the work is done.
40-
4139
## Project Structure
4240

4341
```text
@@ -79,7 +77,6 @@ Enforced by `.clang-format` (Mozilla-based, C++20):
7977
- Prefer readability and maintainability over using the latest C++ features (avoid syntax sugar that may be less familiar to new contributors).
8078
- Avoid lambda expressions with more than 2 captures or multiple statements; use named functions instead for clarity.
8179
- Make sure to document public functions with brief Doxygen comments in the source file
82-
- Update json-rpc schema spec when updating json-rpc related code
8380
- Only use early return for error handling, avoid deep nesting
8481
- When fixing a bug, add a test that reproduces the issue before implementing the fix.
8582

@@ -92,4 +89,4 @@ Several sub-agents are defined in `.claude/agents/` to keep build/test/lint outp
9289
- **`@agent-quality`** - runs clang-format, clang-tidy, and clazy; reports only violations.
9390
- **`@agent-code-reviewer`** - reviews code for quality, safety, and best practices; provides specific, actionable feedback.
9491

95-
Always use these agents rather than running the commands directly. After making source file changes: build, then run tests, then run quality checks - all must pass before the work is done.
92+
Always use these agents rather than running the commands directly. After making source file changes: build, then run tests, then run quality checks, then run code review - all required steps must pass before the work is done.

0 commit comments

Comments
 (0)