Skip to main content
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 instead. Skills are open source at 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:

Credentials and security

Read the following carefully before giving any AI agent access to your Turnkey organization.
  • 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. 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 (Settings > API Keys). Which credentials you use depends on your setup:

Available skills

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

Workflows

Primitives

Getting started

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

Next steps