<< All versions
Skill v1.0.3
Automated scan100/100antithesishq/antithesis-skills/antithesis-launch
~1 modified
──Details
PublishedJuly 8, 2026 at 05:56 PM
Content Hashsha256:2024021dc574f976...
Git SHA9b75328c9edd
Bump Typepatch
──Files
Files (1 file, 4.2 KB)
SKILL.md4.2 KBactive
SKILL.md · 86 lines · 4.2 KB
version: "1.0.3" name: antithesis-launch description: > Launch an Antithesis run with snouty by discovering the harness layout, building the right Docker Compose config, running snouty validate, bailing on validation failure, and then submitting snouty launch with sane metadata. Use when the user wants to send, submit, or launch an Antithesis run. This skill takes duration in minutes as input. compatibility: Requires docker (or podman) with compose and snouty (https://github.com/antithesishq/snouty). metadata: version: "2026-07-07 38a11c4"
Antithesis Launch
Prerequisites
- DO NOT PROCEED if
snoutyis not installed. Seehttps://raw.githubusercontent.com/antithesishq/snouty/refs/heads/main/README.mdfor installation options.
Goal
Launch an Antithesis run in this order only:
docker compose buildsnouty validate- if validation fails, stop and report the error
snouty launch
Required Input
durationin minutes is required. If the user did not provide it, ask before submitting the run.
Discovery
- Start from any user-provided path, command, or Antithesis directory name.
- Otherwise, inspect the repo to understand how the harness is wired. Check nearby
AGENTS.md,README*,Makefile*, and Antithesis-specific scripts before choosing commands. - Find the config directory by locating the
docker-compose.yamlintended for Antithesis. Prefer directories likeantithesis/config, but support non-standard layouts. - Treat these as strong Antithesis signals: nearby
scratchbook/ortest/directories, compose content mentioning/opt/antithesis,ANTITHESIS_env vars,setup_complete, or existingsnoutyexamples. - If multiple compose files look plausible, prefer the one referenced by repo docs or existing
snouty launchexamples. If the choice is still ambiguous, ask the user instead of guessing. - Use the directory containing
docker-compose.yamlas thesnouty validate <CONFIG>andsnouty launch --config <CONFIG>argument. - Build against that exact file with
docker compose -f <CONFIG>/docker-compose.yaml build. Ifdocker composeis unavailable, fall back todocker-compose -f ... build.
Run Arguments
- Determine the webhook in this order: explicit user input, existing repo docs/scripts/examples, otherwise default to
basic_testwhen using a docker-compose.yaml file and tobasic_k8s_testwhen using a kubernetes setup.
snouty launch --configrequiresANTITHESIS_REPOSITORY. Reuse the current environment if it is already set. If not, stop and ask the user for it.- Always set all of these explicitly:
--duration: the user-provided duration--source: repo name--test-name: repo name plus branch or config name--description: short, readable description of the run, including details such as the branch name, currently goal, or what you changed since the last run.
Execution
- These commands can take a long time. Prefer background execution or generous timeouts instead of assuming quick completion.
- Do not run
snouty launchunless the build succeeded andsnouty validateexited successfully.
sh
docker compose -f "$CONFIG_DIR/docker-compose.yaml" buildsnouty validate "$CONFIG_DIR"snouty launch \--json \--webhook "$WEBHOOK" \--config "$CONFIG_DIR" \--duration "$DURATION" \--source "$SOURCE" \--test-name "$TEST_NAME" \--description "$DESCRIPTION"
Output
- Report the config directory, compose build command, validate command, and final
snouty launchcommand shape before submission. - If validation fails, stop immediately and show the failing command plus the key error.
- The
--jsonflag makessnouty launchemit machine-readable output containing arun_id. Parse and report the run_id — it's needed to triage the run when it is done.
Self-Review
- The chosen config directory is the one that actually contains the Antithesis
docker-compose.yaml. - The build, validate, and run steps all point at the same config.
snouty validatesucceeded beforesnouty launchwas invoked.- The run set
source,test-name,description, anddurationexplicitly. - Missing blockers such as
duration,ANTITHESIS_REPOSITORY, or an ambiguous config location caused a stop instead of a bad submission.