Skip to main content
AI coding agents like Cursor and Claude Code can use your Pioneer account directly — starting training jobs, checking model status, running inference, and managing datasets — if you give them the right context. Agent Skills is a SKILL.md file that provides a coding agent with complete, structured knowledge of the Pioneer API. Once installed, your agent can handle Pioneer tasks end-to-end without you needing to look up endpoints or copy-paste API keys.

How to install

1

Copy the SKILL.md content

Copy the full SKILL.md content from the code block in the section below.
2

Save the file to your project

Save the file to .claude/skills/pioneer-api/SKILL.md in your project root. This is the standard location for Claude Code skills. If you use a different agent, check its documentation for where to place skill files.
3

Generate your API key

Go to pioneer.ai → Settings → API Keys and create a new key. Give it a name that identifies the project or agent using it.
4

Set your API key as an environment variable

Set PIONEER_API_KEY (or whichever variable name your agent reads) in the environment your agent runs in. For example:
Your agent will automatically discover the skill and substitute the key when making Pioneer API calls.
Never commit your API key to version control. Add .env to your .gitignore and use environment variable injection in CI/CD environments.

SKILL.md content

Copy this entire file into .claude/skills/pioneer-api/SKILL.md:

Next steps