README.md

July 28, 2026 · View on GitHub

Comet Opik logo
Opik Skills

Official Opik skill pack for coding agents. Install it with one command to give your agent
practical guidance for tracing, evaluating, configuring, and debugging LLM applications with Opik.

License

Opik is the open-source LLM observability and evaluation platform, built by Comet. These agent skills teach coding agents to instrument applications with Opik.

This repo contains a number of skills that teach AI coding agents how to work with Opik in real codebases.

After install, your agent can help with tasks like:

  • adding Opik tracing to Python or TypeScript apps
  • wiring up framework integrations instead of manual instrumentation
  • configuring and using AgentConfig blueprints
  • connecting a local agent to the Opik UI with opik connect
  • creating and running Test Suites
  • tracking multi-turn conversations with thread_id

Install

npx skills add comet-ml/opik-skills

This installs the opik skill into your local skills environment.

What the opik skill covers

AreaGuidance included
TracingPython decorators, TypeScript client tracing, REST API tracing, span types
IntegrationsOpenAI, Anthropic, LangChain, CrewAI, DSPy, Google ADK, Vercel AI SDK, and more
Prompt Libraryclient.create_prompt / client.get_prompt (and chat variants), versioning, metadata for model/temperature
Local Runneropik connect, pairing flow, entrypoint requirements, troubleshooting
EvaluationTest Suites, run_tests(), assertions, execution policies, CI gating
Conversationsthread_id, conversation metrics, common pitfalls
Observabilitytrace boundaries, metadata, feedback scores, distributed tracing

One-time Opik setup

These skills are designed to help your coding agent fully integrate Opik into your project, including tracing, evaluations, the Prompt Library, threads, and opik connect.

Before using them, authenticate Opik once in the environment where your agent will work:

  • Python: run opik configure
  • TypeScript: run npx opik-ts configure

Those commands save your Opik configuration locally, including the API key and connection details the agent will use while wiring up instrumentation.

For setup details, see the Opik documentation.

Example prompts

Once installed, you can ask your agent things like:

  • "Add Opik tracing to this FastAPI app."
  • "Instrument this TypeScript OpenAI app with Opik."
  • "Help me connect this local agent to Opik with opik connect."
  • "Move these hardcoded model settings into AgentConfig."
  • "Create a Test Suite for this chatbot."
  • "Add thread_id support so Opik groups each conversation correctly."

Repository structure

opik-skills/
├── skills/
│   └── opik/
│       ├── SKILL.md
│       └── references/
│           ├── evaluation.md
│           ├── integrations.md
│           ├── observability.md
│           ├── tracing-python.md
│           ├── tracing-rest-api.md
│           └── tracing-typescript.md
├── README.md
└── LICENSE

Opik for Claude Code

This repo is part of a set of tools for observing Claude Code and other coding agents with Opik:

Learn more

License

Apache-2.0