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
10 changes: 8 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Agent Instructions

- Ensure we have dotnet 8 already installet. check dotnet --version
- we can not run docker or 3rd party services. ignore any integration tests that requires such services
- Verify that .NET 8 is installed by running `dotnet --version`.
- Do not run Docker or other external services; skip integration tests that require them.
- When adding or modifying tests:
- Prefer Proto.TestKit utilities.
- Use probes instead of `TaskCompletionSource` or ad-hoc recording/forwarding actors.
- Assert message contents through `probe.ExpectNext*` methods.
- Preserve the existing level of assertions; do not reduce coverage.
- When suitable, use `ExpectEmptyMailbox` rather than `ExpectNoMessages`.

Loading