Skip to content

Commit 9c6e88a

Browse files
authored
more remote write debugging (#101)
Signed-off-by: Matt Klein <[email protected]>
1 parent 3a1956d commit 9c6e88a

File tree

9 files changed

+215
-92
lines changed

9 files changed

+215
-92
lines changed

AGENTS.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Agent Guidelines for Pulse
2+
3+
## Build/Test Commands
4+
- Build: `cargo build --workspace`
5+
- Test (all): `cargo test` or `cargo nextest run`
6+
- Test (single): `cargo test test_name` or `cargo nextest run test_name`
7+
- Test (specific crate): `cargo test -p crate-name`
8+
- Clippy: `cargo clippy --workspace --bins --examples --tests -- --no-deps`
9+
10+
## Important Notes
11+
- Do NOT prefix cargo commands with `SKIP_PROTO_GEN=1` unless specifically needed
12+
- Run cargo commands directly without environment variable overrides by default

0 commit comments

Comments
 (0)