> ## Documentation Index
> Fetch the complete documentation index at: https://cockroachlabs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Agent Skills for CockroachDB

export const InternalLink = ({version, path = "", children, ...props}) => {
  let detectedVersion = version || "stable";
  if (typeof window !== 'undefined' && !version) {
    const match = window.location.pathname.match(/\/docs\/([^/]+)/);
    if (match) {
      detectedVersion = match[1];
    }
  }
  const normalizedPath = path.startsWith("/") ? path.slice(1) : path;
  return <a href={`/docs/${detectedVersion}/${normalizedPath}`} {...props}>
      {children}
    </a>;
};

Cockroach Labs provides a public [cockroachdb-skills](https://github.com/cockroachlabs/cockroachdb-skills) repository with a curated collection of Agent Skills for CockroachDB. These skills encode operational expertise so that AI agents, automation systems, and developer tools can perform production-grade CockroachDB operations.

## What is a CockroachDB Agent Skill?

A CockroachDB Agent Skill:

* Encodes operational expertise for a specific task or workflow.
* Follows the [Agent Skills Specification](https://agentskills.io/specification).
* Is machine-executable, with clear inputs, outputs, and safety guardrails.
* Links to authoritative CockroachDB documentation rather than duplicating it.

Skills live under [the repository's `skills/` directory](https://github.com/cockroachlabs/cockroachdb-skills/tree/main/skills).

## Skill domains

Skills are organized into the following operational domains:

* Onboarding and migrations
* Application development
* Performance and scaling
* Operations and lifecycle
* Resilience and Disaster Recovery (DR)
* Observability and Diagnostics
* Security and Governance
* Integrations and Ecosystem
* Cost and usage management

## See also

* <InternalLink path="cockroachdb-and-ai">CockroachDB and AI</InternalLink>
* <InternalLink version="cockroachcloud" path="connect-to-the-cockroachdb-cloud-mcp-server">CockroachDB Cloud MCP Server</InternalLink>
* <InternalLink path="docs-mcp-integration">CockroachDB Docs MCP Server</InternalLink>
* [CockroachDB Skills repository](https://github.com/cockroachlabs/cockroachdb-skills)
