Skip to content
Merged
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: 2 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
profile: minimal
components: clippy

- uses: bufbuild/buf-setup-action@v1

- name: Clippy
# Typically: cargo clippy --workspace --bins --examples --tests -- --no-deps
run: make clippy
Expand Down
11 changes: 11 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
# Agent Guidelines for Pulse

## Code Style
- Do not add overly verbose method comments including obvious parameters. Just use a
a simple summary.
- Always write professional comments. Go back and clean up comments before completing.

## Build/Test Commands
- Build: `cargo build --workspace`
- Test (all): `cargo test` or `cargo nextest run`
- Test (single): `cargo test test_name` or `cargo nextest run test_name`
- Test (specific crate): `cargo test -p crate-name`
- Clippy: `cargo clippy --workspace --bins --examples --tests -- --no-deps`
- Format: `cargo +nightly fmt`
- Do NOT pipe output unless absolutely necessary so the user can see what is happening.

## Important Notes
- Do NOT prefix cargo commands with `SKIP_PROTO_GEN=1` unless specifically needed
- Run cargo commands directly without environment variable overrides by default

## Recent Changes Verification
- After changes, run tests in all effected crates.
- Then run clippy and format per the above instructions.

Loading
Loading