Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.opper.ai/llms.txt

Use this file to discover all available pages before exploring further.

Skills are markdown files that give AI code editors context about how to use Opper. They work with any editor that supports the Agent Skills standard, including Claude Code, Cursor, Cline, GitHub Copilot, OpenAI Codex, and Windsurf. When installed, skills sit in your editor’s skills directory. The editor reads a short description of each skill at startup and loads the full documentation only when your task matches its domain — no wasted context.

Installation

# All Opper skills (recommended)
npx skills add opper-ai/opper-skills

# Or pick what you need
npx skills add opper-ai/opper-skills/opper-cli
npx skills add opper-ai/opper-skills/opper-sdks
npx skills add opper-ai/opper-skills/opper-api
You can also install the bundled set through the Opper CLI — headless or globally installed:
npx @opperai/cli skills install   # no install needed
opper skills install               # if @opperai/cli is installed globally

Available skills

SkillWhat it covers
opper-cliThe opper command-line tool — sign-in, calling functions, indexes, traces, usage, models, image generation, launching coding agents through Opper, installing skills, configuring AI editors
opper-sdksThe unified opperai packages for Python and TypeScript, including the Agent SDK (tools, streaming, multi-agent, MCP, conversation)
opper-apiThe Opper REST API: gateway and control-plane concepts, models, /v3/call, OpenAI/Anthropic/OpenResponses-compatible endpoints under /v3/compat, and migration from other LLM gateways

Try it out

Once installed, your editor will activate the right skill automatically. Try prompts like:
  • “Sign me in to Opper from the terminal and launch Claude Code through it.”
  • “Add an Opper call to this Python script that returns structured output.”
  • “Build an Opper agent in TypeScript with a get_weather tool.”
  • “Wrap this pipeline in an Opper trace so I can see each step.”
  • “What models does Opper support, and how do I migrate this OpenRouter code?”

Updating

# If installed via npx skills
npx skills update

# If installed via the Opper CLI
npx @opperai/cli skills update     # or `opper skills update` if installed globally

# If cloned manually
cd opper-skills && git pull

Source

View on GitHub