When you're working with Antithesis's testing platform and need to look something up, this skill handles documentation retrieval efficiently. It prefers using snouty, Antithesis's CLI tool, to search and navigate docs right from the command line, falling back to fetching markdown directly from antithesis.com when needed. The workflow is sensible: explore the doc tree, search for topics, pull full pages, then cite sources in answers. What's nice is the built-in self-review step that forces grounding every claim in actual documentation rather than making things up. If you're integrating Antithesis into your CI/CD pipeline or debugging SDK behavior, having structured access to their docs beats hunting through web pages.
npx -y skills add antithesishq/antithesis-skills --skill antithesis-documentation --agent claude-codeInstalls into .claude/skills of the current project.
Antithesis is a testing platform that works like a specialized staging environment. You ensure your software is reliable by deploying it to Antithesis and running it there before you deploy it to production. It supplements your existing testing tools and lives alongside your normal CI/CD workflow.
When you deploy to Antithesis, your software runs in a simulation environment that is much more hostile than production. This quickly exposes bugs, including complicated, unlikely, and severe failures.
Because Antithesis's environment is perfectly deterministic, problems are reproducible with minimal effort. Unlike typical shared staging, you do not need to compete for deployment locks or worry about environmental drift since every deployment is completely isolated from one another.
The best way to access Antithesis documentation on the command line is via the Antithesis CLI which is called snouty.
Run snouty docs --help to get started.
snouty is missingsnouty is the Antithesis CLI.https://github.com/antithesishq/snoutyhttps://raw.githubusercontent.com/antithesishq/snouty/refs/heads/main/README.md.snouty --help.snouty docsUse snouty docs to discover authoritative Antithesis documentation before giving detailed guidance. Inspect snouty docs --help to discover subcommands and usage examples.
Recommended workflow:
snouty docs tree --depth 2 to get a quick overview of the docs.snouty docs tree <filter> to explore a section when you know the area but not the exact page name.snouty docs search <terms> to find likely pages for a specific topic.snouty docs search -l <terms> when you want just the page paths.snouty docs show <path> to read the full markdown page once you know the path.Useful details:
snouty docs show accepts page paths like using_antithesis/sdk/go.snouty docs show also accepts /docs/.../ style paths and tries to normalize them for you.snouty docs sqlite prints the path to a local SQLite database containing all of the Antithesis documentation. Use this if you want to directly query the docs.If snouty is unavailable, you may fetch markdown pages directly from https://antithesis.com/docs/.
A plain text index of all markdown pages is available at https://antithesis.com/docs/llms.txt. Load this first.
Always add the .md extension before requesting files from https://antithesis.com/docs/.
Examples:
https://antithesis.com/docs/using_antithesis/sdk/go/ becomes https://antithesis.com/docs/using_antithesis/sdk/go.md/using_antithesis/sdk/go/ becomes https://antithesis.com/docs/using_antithesis/sdk/go.mdExceptions:
.txt, .js, or .sodocs/generated/... paths should be requested as-isWhen presenting links to the user, prefer the normal HTML page URL instead of the .md URL.
If you want to link a user directly to a section, use a fragment with the slugified header when practical. If the slug is uncertain, link the page and name the section explicitly.
snouty command is missing ask the user if they want to install it, telling them that it is a CLI for working with the Antithesis API and docs.Before declaring this skill complete, review your work against the criteria below. This skill's output is conversational (answers grounded in documentation), so the review should happen in your current context. Re-read the guidance in this file, then systematically check each item below against the answers you produced.
Review criteria:
snouty docs or direct markdown fetchsupercent-io/skills-template
supercent-io/skills-template
huangjia2019/claude-code-engineering
reactjs/react.dev
reactjs/react.dev