Skip to content
Skillv1.0.0

opik

Run Comet's Opik — open-source LLM observability, evaluation, and optimization — from one routing-first skill: install the Python/TypeScript SDK, stand up a server (Comet.com cloud, Docker Compose via

by akillness(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from akillness/jeo-skills (.agent-skills/opik/SKILL.md). Install upstream with npx skills add akillness/jeo-skills --skill opik. Copyright stays with the author.

opik — Open-source LLM Observability, Evaluation & Optimization

Opik (built by Comet) streamlines the entire LLM application lifecycle: deep tracing of LLM calls and agent activity, LLM-as-a-judge evaluation, experiment management, production monitoring at scale (40M+ traces/day), plus the Opik Agent Optimizer and Opik Guardrails. This skill is the routing-first wrapper — it picks the right deployment mode, wires the SDK, and drives the trace → evaluate → monitor → optimize loop.

When to use this skill

  • The user asks to install or configure Opik (pip install opik, opik configure, ./opik.sh)
  • The user wants tracing for LLM calls or agents — via @opik.track or a framework integration (OpenAI, Anthropic, LangChain, LangGraph, LlamaIndex, CrewAI, DSPy, Haystack, Ollama, Bedrock, Vercel AI SDK, Pydantic AI, …)
  • The user wants LLM-as-a-judge metrics: hallucination detection, moderation, answer relevance, context precision/recall for RAG
  • The user wants Datasets + Experiments evaluation, or PyTest-integrated LLM evaluation in CI/CD
  • The user wants production LLM monitoring dashboards, online evaluation rules, prompt playground experiments, agent/prompt optimization, or guardrails

When not to use this skill

  • The stack is LangSmith, not Opik → use langsmith
  • The user needs generic service dashboards/alerts (non-LLM telemetry, uptime, infra metrics) → use monitoring-observability
  • The user wants offline dataset/KPI interpretation rather than LLM tracing/eval plumbing → use data-analysis
  • The user is doing root-cause log forensics on app/container logs → use log-analysis

Prerequisites

Requirement Notes
Python 3.8+ (SDK) pip install opik or uv pip install opik
Docker + Docker Compose Only for local self-hosting via ./opik.sh
Kubernetes + Helm Only for scalable self-hosted deployments
Comet.com account Only for the zero-setup cloud option

Instructions

Step 1 — Choose the server mode

Mode When How
Comet.com cloud (easiest) Quick start, no maintenance Create a free account, get API key + workspace
Docker Compose (local) Local dev & testing, full control git clone https://github.com/comet-ml/opik.git && cd opik && ./opik.sh → UI at localhost:5173
Kubernetes / Helm Production-scale self-hosting Upstream Helm chart guide

Docker service profiles (development scenarios):

./opik.sh              # full Opik suite (default)
./opik.sh --infra      # infrastructure only (databases, caches)
./opik.sh --backend    # infrastructure + backend services
./opik.sh --guardrails # enable guardrails with any profile
./opik.sh --help       # troubleshooting

Windows: powershell -ExecutionPolicy ByPass -c ".\opik.ps1".

Step 2 — Install and configure the SDK

pip install opik        # or: uv pip install opik
opik configure          # prompts for server address (self-hosted) or API key + workspace (cloud)

Or configure in code:

import opik
opik.configure(use_local=True)   # local self-hosted instance

TypeScript, and Ruby (via OpenTelemetry) SDKs are also available — see the client reference docs.

Step 3 — Log traces

Prefer a native integration when the framework is supported (50+ available: ADK, AG2, Agno, Anthropic, Autogen, Bedrock, CrewAI, DSPy, Dify, Flowise, Gemini, Haystack, Instructor, LangChain, LangGraph, LiteLLM, LlamaIndex, Mastra, Ollama, OpenAI, OpenAI Agents, OpenRouter, OpenTelemetry, Pydantic AI, Ragas, Semantic Kernel, Smolagents, Spring AI, Vercel AI SDK, WatsonX, …). See references/commands.md for the full table.

Fallback for any code path — the track decorator (nest-aware, composes with integrations):

import opik

@opik.track
def my_llm_function(user_question: str) -> str:
    # Your LLM code here
    return "Hello"

Annotate traces/spans with feedback scores via the SDK or the UI.

Step 4 — Evaluate with LLM-as-a-judge metrics

from opik.evaluation.metrics import Hallucination

metric = Hallucination()
score = metric.score(
    input="What is the capital of France?",
    output="Paris",
    context=["France is a country in Europe."],
)
print(score)

Built-in judges include Hallucination, Moderation, Answer Relevance, Context Precision/Recall; heuristic metrics and custom metrics are also supported.

Step 5 — Datasets, Experiments, and CI gates

  • Manage Datasets and run Experiments to compare prompt/model variants during development
  • Wire evaluations into CI/CD with the PyTest integration so regressions block merges
  • Iterate on prompts/models in the Prompt Playground

Step 6 — Production monitoring and optimization

  • Opik is built for scale: 40M+ traces/day ingestion
  • Track feedback scores, trace counts, and token usage in the Opik Dashboard
  • Add Online Evaluation Rules (LLM-as-a-judge on production traffic) to catch issues live
  • Use Opik Agent Optimizer (dedicated SDK) to improve prompts/agents and Opik Guardrails for safe-AI policies

Step 7 — Plugin-style installation alongside jeo-skills

This skill folder is plugin-installable through the standard jeo-skills flow so the wrapper, references, and installer script land on disk for any supported agent runtime:

# Project install (writes into .agents/skills/opik/)
npx skills add https://github.com/akillness/jeo-skills --skill opik

# Global install for every detected agent
npx skills add -g https://github.com/akillness/jeo-skills --skill opik

# Target specific agents
npx skills add -g https://github.com/akillness/jeo-skills --skill opik -a claude-code -a codex -y

The skill also ships scripts/install.sh as a one-shot installer covering SDK install (uv → pip fallback) and optional local self-hosting (OPIK_INSTALL_MODE=local).

Output format

When the user asks opik for help, return a compact brief:

# opik Routing Brief

## Scope
- Server mode: cloud | docker-local | kubernetes | undecided
- SDK: python | typescript | ruby-otel
- Lifecycle stage: tracing | evaluation | ci-gate | production-monitoring | optimization | guardrails

## Recommended next move
- install-sdk | opik-configure | start-local-server | wire-integration | add-judge-metric | create-dataset-experiment | enable-online-rules

## Why
- 2-3 bullets grounded in the user's packet

## Route-outs
- `langsmith` when the observability stack is LangSmith
- `monitoring-observability` for non-LLM dashboards/alerts
- `data-analysis` for offline KPI/metric interpretation

Best practices

  1. Start with cloud or ./opik.sh, not Kubernetes — Helm is for production scale; local Docker Compose answers "does tracing work" in minutes.
  2. Prefer a native integration over hand-rolled @opik.track when the framework is in the support table — integrations capture provider metadata (tokens, model, latency) automatically.
  3. Check the changelog before upgrading a self-hosted server — e.g. v1.7.0 shipped breaking changes.
  4. Judge metrics need contextHallucination and RAG metrics score against the context you pass; empty context produces misleading scores.
  5. Gate CI on small, stable datasets — PyTest-integrated experiments should be fast and deterministic; keep large sweeps in scheduled runs.
  6. Turn production checks into Online Evaluation Rules instead of re-running offline experiments against live traffic.

References

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/akillness-jeo-skills-opik/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

akillness-jeo-skills-opik.ocm.jsonjson
{
  "ocm": "1",
  "id": "akillness-jeo-skills-opik",
  "kind": "skill",
  "name": "opik",
  "description": "Run Comet's Opik — open-source LLM observability, evaluation, and optimization — from one routing-first skill: install the Python/TypeScript SDK, stand up a server (Comet.com cloud, Docker Compose via `./opik.sh`, or Kubernetes/Helm), wire tracing through `@opik.track` or one of 50+ framework integrations (OpenAI, Anthropic, LangChain, LangGraph, LlamaIndex, CrewAI, DSPy, Ollama, Bedrock, Vercel AI SDK, …), score outputs with LLM-as-a-judge metrics (Hallucination, Moderation, Answer Relevance, Context Precision), and run Datasets/Experiments evaluations including PyTest CI gates. Use when the user wants LLM tracing, prompt evaluation, production LLM monitoring, agent optimization, or guardrails with Opik. Triggers on: opik, comet opik, opik configure, opik.sh, llm observability, llm tracing, llm as a judge, hallucination metric, prompt evaluation, opik dashboard, opik guardrails, agent optimizer.",
  "publisher": "akillness",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding",
      "data_analysis"
    ],
    "tags": [
      "skill-md",
      "opik",
      "comet",
      "llm-observability",
      "tracing",
      "evaluation",
      "llm-as-a-judge",
      "prompt-optimization",
      "guardrails",
      "monitoring"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Run Comet's Opik — open-source LLM observability, evaluation, and optimization — from one routing-first skill: install the Python/TypeScript SDK, stand up a server (Comet.com cloud, Docker Compose via `./opik.sh`, or Kubernetes/Helm), wire tracing through `@opik.track` or one of 50+ framework integrations (OpenAI, Anthropic, LangChain, LangGraph, LlamaIndex, CrewAI, DSPy, Ollama, Bedrock, Vercel AI SDK, …), score outputs with LLM-as-a-judge metrics (Hallucination, Moderation, Answer Relevance, Context Precision), and run Datasets/Experiments evaluations including PyTest CI gates. Use when the user wants LLM tracing, prompt evaluation, production LLM monitoring, agent optimization, or guardrails with Opik. Triggers on: opik, comet opik, opik configure, opik.sh, llm observability, llm tracing, llm as a judge, hallucination metric, prompt evaluation, opik dashboard, opik guardrails, agent optimizer."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/akillness/jeo-skills",
      "path": ".agent-skills/opik/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/akillness/jeo-skills/blob/HEAD/.agent-skills/opik/SKILL.md",
      "key": "akillness/jeo-skills/.agent-skills/opik/SKILL.md"
    },
    "compatibility": "Cross-platform observability/eval wrapper usable from Claude Code, Codex, Gemini CLI, and OpenCode. Wraps the upstream Opik server (cloud, Docker, Kubernetes) and the Python/TypeScript SDKs. Routes La",
    "allowed_tools": [
      "Bash",
      "Read",
      "Write",
      "Edit",
      "Glob",
      "Grep",
      "WebFetch"
    ]
  },
  "instructions": "# opik — Open-source LLM Observability, Evaluation & Optimization\n\n[Opik](https://github.com/comet-ml/opik) (built by Comet) streamlines the\nentire LLM application lifecycle: deep tracing of LLM calls and agent\nactivity, LLM-as-a-judge evaluation, experiment management, production\nmonitoring at scale (40M+ traces/day), plus the **Opik Agent Optimizer** and\n**Opik Guardrails**. This skill is the routing-first wrapper — it picks the\nright deployment mode, wires the SDK, and drives the trace → evaluate →\nmonitor → optimize loop.\n\n## When to use this skill\n\n- The user asks to install or configure ",
  "cost": {
    "context_tokens": 2167
  }
}

Fetch it by URL: GET /api/v1/registry/akillness-jeo-skills-opik/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.