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
4 changes: 4 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Welcome to our repository! Most commands need to be run from the root of the pro
* Our user interface is located in `tavern/internal/www` and we managed dependencies within that directory using `npm`
* `implants/` contains Rust code that is deployed to target machines, such as our agent located in `implants/imix`.

## Rust

The majority of our rust codebase is in the `implants/` directory & workspaces. When adding dependencies to crates within this workspace, please add them to the workspace root and have the crate use the workspace dependency, in order to centralize version management. ALWAYS RUN `cargo fmt` WHEN MAKING RUST CHANGES, OR CI WILL FAIL.

## Golang Tests

To run all Golang tests in our repository, please run `go test ./...` from the project root.
Expand Down
Loading