CCM
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
antithesishq avatar

Antithesis Documentation

antithesishq/antithesis-skills
367 installs142 stars
Summary

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.

Install to Claude Code

npx -y skills add antithesishq/antithesis-skills --skill antithesis-documentation --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Files
SKILL.mdView on GitHub

Antithesis Documentation

Skill version: 2026-08-24 d6b507d

Antithesis Overview

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.

Accessing Documentation

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.

If snouty is missing

  1. Tell the user snouty is the Antithesis CLI.
  2. Point them to the install source: https://github.com/antithesishq/snouty
  3. Ask whether they want you to install it. If yes, follow instructions in https://raw.githubusercontent.com/antithesishq/snouty/refs/heads/main/README.md.
  4. After installation, re-run snouty --help.

Using snouty docs

Use snouty docs to discover authoritative Antithesis documentation before giving detailed guidance. Inspect snouty docs --help to discover subcommands and usage examples.

Recommended workflow:

  1. Start with snouty docs tree --depth 2 to get a quick overview of the docs.
  2. Use snouty docs tree <filter> to explore a section when you know the area but not the exact page name.
  3. Use snouty docs search <terms> to find likely pages for a specific topic.
  4. Use snouty docs search -l <terms> when you want just the page paths.
  5. Use snouty docs show <path> to read the full markdown page once you know the path.
  6. Cite the relevant documentation pages in your answer.

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.
  • A warning about failing to update docs and falling back to cached docs is usually fine, especially in sandboxes without network access. Treat it as non-fatal if the requested docs content is still returned.
  • 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.

Direct Markdown Fallback

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/reference/sdk/go/ becomes https://antithesis.com/docs/reference/sdk/go.md
  • /reference/sdk/go/ becomes https://antithesis.com/docs/reference/sdk/go.md

Exceptions:

  • URLs with explicit file extensions such as .txt, .js, or .so
  • docs/generated/... paths should be requested as-is

When 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.

Output

  • Clear, grounded answers about Antithesis behavior, SDKs, setup, and best practices.
  • Relevant links to the documentation pages you used.
  • If the 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.

Self-Review

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:

  • Every factual claim in your answer is grounded in a specific documentation page you retrieved via snouty docs or direct markdown fetch
  • Documentation page links are included so the user can verify your sources
  • You have not mixed up concepts from different pages or added details not present in the source material
  • If the docs were ambiguous or silent on a point, you said so rather than filling the gap with assumptions
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Categories
DocumentationAutomation & WorkflowsCLI & Terminal
First SeenJun 3, 2026
View on GitHub

More from antithesishq/antithesis-skills

All 6 skills →
  • Antithesis Workload360
  • Antithesis Setup342
  • Antithesis Debug335
  • Antithesis Research382
  • Antithesis Triage371

Recommended

More Documentation →
materializeinc avatar
materialize-docs

materializeinc/agent-skills

Materialize documentation for SQL syntax, data ingestion, concepts, and best practices. Use when users ask about Materialize queries, sources, sinks, views, or clusters.
365
3
patricio0312rev avatar
api-docs-generator

patricio0312rev/skills

Generates API documentation using OpenAPI/Swagger specifications with interactive documentation, code examples, and SDK generation. Use when users request "API documentation", "OpenAPI spec", "Swagger docs", "document API endpoints", or "generate API reference".
350
55
guia-matthieu avatar
content-writing

guia-matthieu/clawfu-skills

Create ridiculously good content using Ann Handley's "Everybody Writes" methodology—practical, reader-focused writing that serves your audience and achieves your goals. Use when: **Write blog posts** that engage and convert readers; **Create email content** that gets opened and clicked; **Craft social media posts** that stop the scroll; **Develop website copy** that speaks to your audience; **Write thought leadership** that builds credibility
338
145
davila7 avatar
writing-clearly-and-concisely

davila7/claude-code-templates

Use when writing prose humans will read—documentation, commit messages, error messages, explanations, reports, or UI text. Applies Strunk's timeless rules for clearer, stronger, more professional writing.
335
30.2k
levnikolaevich avatar
ln-610-docs-auditor

levnikolaevich/claude-code-skills

Use when auditing project documentation through the evaluation platform with mandatory research, coordinated audit workers, and structured summaries.
316
533
onewave-ai avatar
api-documentation-writer

onewave-ai/claude-skills

Generate comprehensive API documentation including endpoint descriptions, request/response examples, authentication guides, error codes, and SDKs. Creates OpenAPI/Swagger specs, REST API docs, and developer-friendly reference materials. Use when users need to document APIs, create technical references, or write developer documentation.
308
244