Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

instrumentinstrument 搜索

Agent Skill

instrument 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,642

周安装

109

GitHub Stars

2

下载量

863
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:instrument(instrument 搜索)
来源仓库:https://github.com/comet-ml/opik-skills
仓库路径:skills/instrument
安装命令:
npx skills add https://github.com/comet-ml/opik-skills --skill instrument
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/comet-ml/opik-skills --skill instrument

简介

instrument 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中筛选信息的场景。
  • 通过关键词、任务场景或来源线索进行信息检索和筛选。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件读写操作。
  • instrument 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Instrument — Add Opik Tracing to a Codebase

You are instrumenting an existing codebase with Opik observability. Follow these steps precisely.

Step 1 — Scope

If $ARGUMENTS is provided, scope your work to those files or directories. Otherwise, discover the project root and instrument the main application code.

Step 2 — Detect Language & Frameworks

Scan the codebase to determine:

  1. Language: Python (look for *.py, pyproject.toml, requirements.txt) or TypeScript (look for *.ts, *.tsx, package.json)
  2. LLM frameworks in use — search imports for these patterns:
Import patternFrameworkIntegration
from openai / import OpenAIOpenAItrack_openai
import anthropicAnthropictrack_anthropic
from langchain / @langchainLangChainOpikTracer callback
from langgraphLangGraphOpikTracer with graph=
from crewaiCrewAItrack_crewai
import dspyDSPyOpikCallback
from googlegenaiGoogle Geminitrack_genai
import boto3bedrockAWS Bedrocktrack_bedrock
from llama_indexLlamaIndexLlamaIndexCallbackHandler
import litellmLiteLLMOpikLogger callback
from pydantic_aiPydantic AILogfire OTLP bridge
from opik.integrations.adk / from google.adkGoogle ADKtrack_adk_agent_recursive
import ollamaOllamatrack_openai with localhost base_url or manual @opik.track
from agents import / from openai.agentsOpenAI Agents SDKOpikTracingProcessor
from haystackHaystackOpikConnector
opik-openai / trackOpenAI (TS)OpenAI (TS)trackOpenAI
opik-vercel / OpikExporter (TS)Vercel AI SDKOpikExporter
opik-langchain / OpikCallbackHandler (TS)LangChain.jsOpikCallbackHandler
opik-gemini / trackGemini (TS)Gemini (TS)trackGemini
  1. Existing Opik usage — check if opik or @opik.track is already imported. If so, audit rather than re-instrument.

Step 3 — Identify the Call Graph

Find:

  • Entrypoint: the top-level function that kicks off the agent (e.g., main, run, agent, handle_message, a route handler, or whatever the user's main orchestration function is)
  • LLM call sites: functions that call an LLM provider directly
  • Tool functions: retrieval, search, API calls, or other tool-like operations
  • Existing config classes: dataclasses, Pydantic models, or plain classes holding model names, temperatures, prompts, or other tunable parameters

Entrypoint Parameter Rules

The function marked with entrypoint=True must only accept primitive-typed parameters: str, int, float, bool, and list/dict of primitives. This is because:

  • Opik reads the function's type hints to build an input form in the UI
  • Users will type these values manually in a text field via the Local Runner
  • Complex types (Pydantic models, dataclasses, request objects, custom classes) cannot be entered in a UI input field

If the candidate entrypoint accepts complex types (e.g., a request model, a config object, a dataclass):

  1. Look higher in the call chain for a function that already accepts primitives
  2. If none exists, create a thin wrapper function that accepts only primitives, unpacks them, and calls the original function. Move the entrypoint=True decorator to this wrapper.

Example — bad entrypoint (complex parameter):

# ❌ DO NOT mark this as entrypoint — RecommendRequest is a Pydantic model
@app.post("/recommend")
async def recommend(request: RecommendRequest):
    summary, tool_results = await run_agent(user_message=build_user_message(request))
    return RecommendResponse(city=request.city, recommendations=_extract_recommendations(tool_results), summary=summary)

Example — good entrypoint (primitives only):

@opik.track(name="recommend-agent", entrypoint=True)
async def _run_entrypoint(user_message: str) -> tuple[str, list[dict]]:
    """Opik entrypoint — receives only the user message for Local Runner schema."""
    return await run_agent(user_message=user_message)

@app.post("/recommend")
async def recommend(request: RecommendRequest):
    summary, tool_results = await _run_entrypoint(user_message=build_user_message(request))
    return RecommendResponse(city=request.city, recommendations=_extract_recommendations(tool_results), summary=summary)

The wrapper extracts the primitive values from the complex object and delegates to the existing logic. The HTTP handler calls the wrapper instead of the inner function directly, so the trace captures the full execution.

Step 4 — Add Framework Integrations

For each detected framework, add the appropriate integration at the module level. See the integration table above and references/integrations.md for the exact patterns.

Python examples:

# OpenAI
from opik.integrations.openai import track_openai
client = track_openai(OpenAI())  # wrap existing client

# Anthropic
from opik.integrations.anthropic import track_anthropic
client = track_anthropic(anthropic.Anthropic())

# LangChain / LangGraph
from opik.integrations.langchain import OpikTracer
tracer = OpikTracer()
# pass config={"callbacks": [tracer]} to invoke()

# LiteLLM inside @opik.track — CRITICAL: pass span context
from opik.opik_context import get_current_span_data
# in every litellm.completion() call, add:
#   metadata={"opik": {"current_span_data": get_current_span_data()}}

TypeScript examples:

// OpenAI
import { trackOpenAI } from "opik-openai";
const trackedClient = trackOpenAI(openai);

// Vercel AI SDK
import { OpikExporter } from "opik-vercel";
// set up NodeSDK with OpikExporter

Step 5 — Add @opik.track Decorators (Python) or Client Tracing (TypeScript)

Python

Add import opik at the top of each file you instrument.

Function roleDecorator
Entrypoint (top-level agent)@opik.track(entrypoint=True, name="<agent-name>")
LLM call@opik.track(type="llm")
Tool / retrieval@opik.track(type="tool")
Guardrail / validation@opik.track(type="guardrail")
Other helper in the call chain@opik.track
  • Entrypoint parameters must be primitives only (str, int, float, bool, list, dict). If the natural entrypoint takes a complex type, create a wrapper — see Step 3 "Entrypoint Parameter Rules".
  • Config access must happen inside @opik.track: Any call to client.get_or_create_config() and subsequent access of config fields must occur inside a @opik.track-decorated function, or in a function called downstream from one. This is how Opik injects config metadata into the current trace. Calling it at module level or outside the traced call stack will raise an error.
  • Place the decorator above any existing decorators (e.g., above @app.route)
  • For async functions, @opik.track works the same way — no changes needed
  • If the function is a script entrypoint (not a long-running server), add opik.flush_tracker() after the top-level call

TypeScript

Use the client-based approach:

import { Opik } from "opik";
const client = new Opik({ projectName: "<project-name>" });

// In the entrypoint function:
const trace = client.trace({ name: "<agent-name>", input: { ... } });
const span = trace.span({ name: "<operation>", type: "tool", input: { ... } });
// ... logic
span.end({ output: { ... } });
trace.end({ output: { ... } });
await client.flush();

For entrypoints that should be discoverable by opik connect — note that params must only use primitive types (string, number, boolean) since users enter these values in a UI text field:

import { track } from "opik";

const myAgent = track(
  { name: "<agent-name>", entrypoint: true, params: [{ name: "query", type: "string" }] },
  async (query: string) => { /* ... */ }
);

Step 6 — Conversational Agents: Add thread_id

If the agent handles multi-turn conversations (chat bots, support agents, multi-step assistants), wire thread_id:

@opik.track(entrypoint=True)
def handle_message(session_id: str, message: str) -> str:
    opik.update_current_trace(thread_id=session_id)
    return generate_response(session_id, message)

Skip this for single-shot agents or batch processing.

Step 7 — Environment Config

Follow the setup decision tree from the main opik skill:

  1. If the project has .env / .env.local → append OPIK_API_KEY, OPIK_WORKSPACE, OPIK_URL_OVERRIDE (if missing)
  2. If no .env exists → Python: create/update ~/.opik.config; TypeScript: create .env or .env.local
  3. Never introduce a second config mechanism
  4. Never overwrite existing values
  5. Update .env.example / .env.sample if one exists
  6. Set project_name in code, not in env files

OPIK_URL_OVERRIDE path rules

The URL suffix depends on where Opik is hosted:

DeploymentURL formatExample
Opik Cloud / managed<base>/opik/apihttps://www.comet.com/opik/api
Self-hosted (local)<base>/apihttp://localhost:5173/api
  • Cloud/managed: always append /opik/api
  • Self-hosted (typically localhost or an internal hostname): append only /api — no /opik prefix
  • When writing or suggesting an OPIK_URL_OVERRIDE value, apply this rule so users don't have to remember it

Step 8 — Install Dependencies

Print the install command but do NOT run it automatically. Let the user decide.

Python:

pip install opik

Plus any integration packages if needed (most are included in opik).

TypeScript:

npm install opik

Plus framework-specific packages: opik-openai, opik-vercel, opik-langchain, opik-gemini as needed.

Step 9 — Verify

After instrumentation, do a quick audit:

  • Every LLM call site is traced (via integration wrapper or @opik.track)
  • Exactly one function has entrypoint=True
  • The entrypoint function accepts only primitive parameters (str, int, float, bool, list, dict) — no Pydantic models, dataclasses, or custom classes
  • All get_or_create_config() calls and config field access happen inside @opik.track-decorated functions (or downstream from one)
  • Script entrypoints call opik.flush_tracker() (Python) or await client.flush() (TypeScript)
  • LiteLLM calls inside @opik.track pass current_span_data via metadata
  • No hardcoded API keys were introduced
  • Existing tests still import correctly (no circular imports introduced)

Anti-Patterns to Avoid

  • Double-wrapping: Don't add @opik.track(type="llm") to a function that already uses a framework integration (e.g., track_openai). The integration handles tracing.
  • Orphaned LiteLLM traces: Always pass current_span_data when OpikLogger is used inside @opik.track code.
  • Complex entrypoint parameters: The entrypoint function must only accept primitives (str, int, float, bool, list, dict). Pydantic models, dataclasses, or custom classes can't be typed into a UI input field. If the natural entrypoint takes a complex type, create a thin wrapper that accepts primitives.
  • Config access outside @opik.track: get_or_create_config() and config field reads must happen inside a @opik.track-decorated function or downstream from one. Module-level or untraced calls will fail and won't attach config metadata to the trace.
  • Missing entrypoint: Without entrypoint=True, Local Runner (opik connect) won't discover the agent.
  • Missing flush: Scripts that exit without flushing lose trace data.
  • Overwriting config: Check before writing to .env or ~/.opik.config.

References

For detailed API signatures and advanced patterns, see:

  • ../opik/references/tracing-python.md — Python SDK reference
  • ../opik/references/tracing-typescript.md — TypeScript SDK reference
  • ../opik/references/integrations.md — All framework integrations
  • ../opik/references/observability.md — Core concepts (traces, spans, threads)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.48%
按下载量换算306

Claude

29.35%
按下载量换算253

Cursor

17.46%
按下载量换算151

Gemini CLI

9.42%
按下载量换算81

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills