| Crates.io | snouty |
| lib.rs | snouty |
| version | 0.1.10 |
| created_at | 2025-12-18 00:00:10.763695+00 |
| updated_at | 2025-12-18 23:01:12.011135+00 |
| description | A CLI tool for interacting with the Antithesis API |
| homepage | |
| repository | https://github.com/orbitinghail/snouty |
| max_upload_size | |
| id | 1991363 |
| size | 136,148 |
A unofficial CLI for the Antithesis API. See the webhook documentation for details on available endpoints and parameters.
[!NOTE] This CLI is unofficial and unsupported by Antithesis. It's released open-source for the benefit of Antithesis users. If you encounter problems with the CLI please file issues here. If you encounter issues with the Antithesis API then please reach out to support.
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/orbitinghail/snouty/releases/latest/download/snouty-installer.sh | sh
powershell -ExecutionPolicy Bypass -c "irm https://github.com/orbitinghail/snouty/releases/latest/download/snouty-installer.ps1 | iex"
cargo binstall snouty
cargo install snouty
| File | Platform | Checksum |
|---|---|---|
| snouty-aarch64-apple-darwin.tar.xz | Apple Silicon macOS | checksum |
| snouty-x86_64-pc-windows-msvc.zip | x64 Windows | checksum |
| snouty-aarch64-unknown-linux-gnu.tar.xz | ARM64 Linux | checksum |
| snouty-x86_64-unknown-linux-gnu.tar.xz | x64 Linux | checksum |
Set the following environment variables:
export ANTITHESIS_USERNAME="your-username"
export ANTITHESIS_PASSWORD="your-password"
export ANTITHESIS_TENANT="your-tenant"
The -w/--webhook flag specifies which webhook to call. Common values are basic_test (Docker environment) or basic_k8s_test (Kubernetes environment), unless you have a custom webhook registered with Antithesis.
snouty run -w basic_test \
--antithesis.test_name "my-test" \
--antithesis.description "nightly test run" \
--antithesis.config_image config:latest \
--antithesis.images app:latest \
--antithesis.duration 30 \
--antithesis.report.recipients "team@example.com"
Parameters can also be passed via stdin as JSON:
echo '{"antithesis.description": "test", ...}' | snouty run -w basic_test --stdin
Using CLI arguments:
snouty debug \
--antithesis.debugging.session_id f89d5c11f5e3bf5e4bb3641809800cee-44-22 \
--antithesis.debugging.input_hash 6057726200491963783 \
--antithesis.debugging.vtime 329.8037810830865 \
--antithesis.report.recipients "team@example.com"
Snouty can handle passing in a Moment.from via stdin:
echo 'Moment.from({ session_id: "...", input_hash: "...", vtime: ... })' | \
snouty debug --stdin --antithesis.report.recipients "team@example.com"