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

# Agent Skills

> Opinionated instructions that tell AI agents how to interact with Turnkey through conversation, not code.

export const SolutionCard = ({title, description, icon, href}) => {
  return <a href={href} className="not-prose font-normal group ring-0 ring-transparent cursor-pointer block rounded-lg border border-zinc-950/10 dark:border-white/10 bg-white dark:bg-transparent p-5 no-underline hover:border-primary/40 transition-colors">
      <div style={{
    display: 'flex',
    alignItems: 'flex-start',
    gap: '16px'
  }}>
        <img src={`/images/solutions/light/${icon}.svg`} className="tk-card-icon-img block dark:hidden" alt="" />
        <img src={`/images/solutions/dark/${icon}.svg`} className="tk-card-icon-img hidden dark:block" alt="" />
        <div>
          <div className="font-semibold text-sm text-zinc-950 dark:text-white group-hover:text-primary transition-colors">
            {title}
          </div>
          <div className="text-sm text-zinc-500 dark:text-zinc-400 mt-1">
            {description}
          </div>
        </div>
      </div>
    </a>;
};

export const FeatureCard = ({title, description, icon, logo, href}) => {
  return <a href={href} className="not-prose font-normal group ring-0 ring-transparent cursor-pointer block rounded-lg border border-zinc-950/10 dark:border-white/10 bg-white dark:bg-transparent p-5 no-underline hover:border-primary/40 transition-colors">
      <div className="tk-card-row">
        <span className="tk-card-icon-wrap">
          {logo ? <img src={`/images/networks/${logo}.svg`} className="tk-card-network-logo" alt="" /> : <span className="tk-card-icon" style={{
    maskImage: `url(/images/icons/${icon}.svg)`,
    WebkitMaskImage: `url(/images/icons/${icon}.svg)`
  }} />}
        </span>
        <div>
          <div className="font-semibold text-sm text-zinc-950 dark:text-white group-hover:text-primary transition-colors">
            {title}
          </div>
          {description && <div className="text-sm text-zinc-500 dark:text-zinc-400 mt-1">
              {description}
            </div>}
        </div>
      </div>
    </a>;
};

Each agent skill is a `SKILL.md` file with opinionated, step-by-step instructions for a specific Turnkey operation. Instead of an agent reasoning about API docs, parameter formatting, and chain-specific details on its own, skills give it exactly what it needs to execute correctly. Skills work with Claude Code, OpenAI, and other third-party agent frameworks.

Skills are for interacting with Turnkey directly through an AI assistant, not for building the application layer on top of Turnkey. If you're using a coding agent to develop a Turnkey integration, connect it to the [Docs MCP server](/get-started/using-llms) instead.

Skills are open source at [**tkhq/turnkey-agent-skills**](https://github.com/tkhq/turnkey-agent-skills) on GitHub.

## Use cases

Skills are composable. Each skill handles a single domain (wallets, signing, policies, etc.) and can be combined for any workflow. Common starting points:

| Use case                        | What you can do                                                                                    | Start with                            |
| :------------------------------ | :------------------------------------------------------------------------------------------------- | :------------------------------------ |
| **Explore and test**            | Create wallets, sign transactions, and set policies without writing integration code               | `getting-started`                     |
| **Administer your org**         | Manage users, rotate API keys, configure policies, and monitor activities conversationally         | `managing-users`, `managing-policies` |
| **Provision autonomous agents** | Set up a scoped wallet with constrained credentials and governance policies for onchain automation | `provisioning-agent`                  |

## Credentials and security

<Warning>
  Read the following carefully before giving any AI agent access to your Turnkey organization.
</Warning>

* **LLMs can misinterpret instructions or execute unintended actions.** Scoped credentials ensure mistakes are bounded. Turnkey policies are the technical enforcement mechanism.
* **Root credentials are dangerous to give to an AI agent.** A root API key bypasses all policies and has full access to your organization. Root credentials may be acceptable for testing — evaluate the risk before using them in production.
  * For best security, create a non-root user with specifically scoped permissions and approval flows. When testing against a non-production organization, root credentials may be more acceptable.
* **Never test against wallets holding real funds** unless you have appropriate safeguards in place (scoped credentials, spending caps, destination allowlists).
* **Turnkey operates based on a [shared responsibility model](/security/shared-responsibility-model).** Turnkey secures the platform, including enclaves, the policy engine, and key confidentiality. You are responsible for how you configure your organization, scope credentials, and author policies. This applies doubly when delegating actions to an AI agent.

All skills require an API key pair and organization ID from the [Turnkey Dashboard](https://app.turnkey.com) (**Settings > API Keys**). Which credentials you use depends on your setup:

| Setup                                                  | Credential type                                                   | When to use                                                                                                                                                                                                                                                            |
| :----------------------------------------------------- | :---------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Interactive assistant** (human approves each action) | Root API key (with extreme caution) or a scoped, non-root API key | Organization administration, testing, and exploration. Human should review every action before it executes.                                                                                                                                                            |
| **Autonomous agent** (acts without human review)       | Scoped, non-root API key                                          | Production automation. **Never use root credentials for autonomous agents.** Root keys bypass all policies. Create a non-root user with scoped policies instead. See [Agentic Wallets](/solutions/company-wallets/agentic-wallets) and the `provisioning-agent` skill. |

## Available skills

Skills are organized into **workflows** (guided multi-step procedures) and **primitives** (individual operations).

### Workflows

| Skill                  | Description                                                     |
| :--------------------- | :-------------------------------------------------------------- |
| **Getting Started**    | Day-0 onboarding: verify credentials, create your first wallet  |
| **Provisioning Agent** | Create a scoped agent with constrained credentials and policies |
| **Managing Agent**     | Debug denied transactions, rotate keys, update agent policies   |

### Primitives

| Skill                     | Description                                                                |
| :------------------------ | :------------------------------------------------------------------------- |
| **Managing Wallets**      | Create wallets, derive addresses, add chains, import/export                |
| **Signing Transactions**  | Sign and broadcast on any supported chain (EVM, Solana, Bitcoin, and more) |
| **Managing Users**        | Create users, rotate API keys, manage user tags                            |
| **Managing Policies**     | Access control, spending limits, allowlists, multi-party approval          |
| **Monitoring Activities** | Activity status, consensus approvals, audit logs                           |

## Getting started

Clone the repo and point your AI assistant at the skill files:

```bash theme={"system"}
git clone https://github.com/tkhq/turnkey-agent-skills.git
cd turnkey-agent-skills
```

## Next steps

<div style={{display: 'grid', gridTemplateColumns: 'repeat(2, 1fr)', gap: '12px'}}>
  <SolutionCard title="Agentic Wallets" icon="agentic-wallets" href="/solutions/company-wallets/agentic-wallets" description="Give AI agents scoped signing authority with policy-enforced access control." />

  <FeatureCard title="Policy Engine" icon="file-shield-02" href="/features/policies/quickstart" description="Define granular access controls for every signing action in your organization." />

  <FeatureCard title="Using AI to integrate to Turnkey" icon="cpu-chip-01" href="/get-started/using-llms" description="MCP server, docs context, and other ways to use LLMs with Turnkey." />

  <FeatureCard title="Company Wallets Quickstart" icon="rocket-01" href="/solutions/company-wallets/quickstart" description="Sign your first transaction with the Turnkey server SDK." />
</div>
