Source profileQuality 84/100

monte-carlo-data/mc-agent-toolkit/skills/instrument-agent/SKILL.md

monte-carlo-instrument-agent

Instrument a new AI agent in a Python codebase for Monte Carlo Agent Observability. Detects AI libraries, installs the Monte Carlo OpenTelemetry SDK, and proposes tracing setup and decorator placements as diffs. Asks before editing any file.

Source repository stars
90
Declared platforms
0
Static risk flags
1
Last source update
2026-08-02
Source checked
2026-08-04

Decision brief

What it does—and where it fits

This skill walks an MC Agent Observability customer through instrumenting a new AI agent in their Python codebase: detect AI libraries → install the Monte Carlo OpenTelemetry SDK + matching instrumentors → generate mc.setup() (with SimpleSpanProcessor when serverless) → propose…

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/monte-carlo-data/mc-agent-toolkit --skill "skills/instrument-agent"
    Safe inspection promptEditorial

    Inspect the Agent Skill "monte-carlo-instrument-agent" from https://github.com/monte-carlo-data/mc-agent-toolkit/blob/3c88d016801b7a47be580d559cb3183ea3916cda/skills/instrument-agent/SKILL.md at commit 3c88d016801b7a47be580d559cb3183ea3916cda. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      High-level workflow (Tier 1 summary)

      The full step-by-step flow lives in references/workflow.md. At a glance:

      Detect AI libraries, runtime style, and any existing mc.setup() via scripts/detectlibraries.py.Ask whether the customer hosts their own OTel collector or uses the MC-hosted one — gates the env-var step.Ask whether the customer has stricter privacy requirements that warrant redacting prompts or completions — full capture is the default; redaction is opt-in.
    2. 02

      CRITICAL — Never modify any file without explicit user approval

      This skill must not modify any file in the customer's codebase without explicit per-file user approval. This rule covers:

      Dependency files — requirements.txt, pyproject.toml, Pipfile, lockfiles. Always propose the diff and wait for confirmation before editing.Source code — mc.setup() insertion, decorator placement (@tracewithworkflow, @tracewithtask), import additions. Always propose the diff and wait for confirmation per file.Env files — .env, .envrc, shell rc files. Always propose the change and wait for confirmation before editing.
    3. 03

      When to activate this skill

      Activate when the user expresses intent to instrument a new AI agent:

      Asks to instrument an agent for Monte Carlo, set up MC tracing, or wire up the Monte Carlo OpenTelemetry SDKAsks how to add Monte Carlo tracing to a LangChain / LangGraph / OpenAI / Anthropic / CrewAI / Bedrock / SageMaker / Vertex AI agent (those are examples — the full supported set is whatever the Monte Carlo OpenTelemetry…Says things like "instrument my agent for Monte Carlo", "set up Monte Carlo tracing", "set up MC tracing", "set up agent tracing for Monte Carlo", "set up Monte Carlo on my new agent"
    4. 04

      When NOT to activate this skill

      Do not activate when the user is:

      Asking to monitor an existing agent (latency, token usage, evaluation, trajectory, validation) → monte-carlo-monitoring-advisorInvestigating an active agent incident or alert → monte-carlo-incident-response / monte-carlo-troubleshoot-agent-tracesAsking about pushing metadata or query logs to Monte Carlo (data ingestion, not agent tracing) → push-ingestion
    5. 05

      Pre-flight check

      Before walking the workflow, confirm two things:

      Monte Carlo MCP server is configured + authenticated. Run testconnection. If it succeeds, Step 4 (BEFORE snapshot) and Step 10 (AFTER verification) will use getagentmetadata directly. If testconnection fails, degrade gr…Python codebase is present. Look for requirements.txt, pyproject.toml, or Pipfile in the working directory. If none exist, ask the user where the agent codebase is.Before walking the workflow, confirm two things:

    Permission review

    Static risk signals and limitations

    Writes files

    medium · line 18

    The documentation asks the agent to create, modify, or delete local files.

    ## CRITICAL — Never modify any file without explicit user approval

    Writes files

    medium · line 20

    The documentation asks the agent to create, modify, or delete local files.

    This skill **must not** modify *any* file in the customer's codebase without explicit per-file user approval. This rule covers:

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score84/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars90SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    monte-carlo-data/mc-agent-toolkit
    Skill path
    skills/instrument-agent/SKILL.md
    Commit
    3c88d016801b7a47be580d559cb3183ea3916cda
    License
    Apache-2.0
    Collected
    2026-08-04
    Default branch
    main
    View the original SKILL.md

    Monte Carlo Instrument-Agent Skill

    This skill walks an MC Agent Observability customer through instrumenting a new AI agent in their Python codebase: detect AI libraries → install the Monte Carlo OpenTelemetry SDK + matching instrumentors → generate mc.setup() (with SimpleSpanProcessor when serverless) → propose @trace_with_workflow / @trace_with_task decorator diffs → confirm env vars (only when needed) → verify traces flow via get_agent_metadata.

    The skill produces traces. It is not for monitoring or alerting on existing traces — that's monte-carlo-monitoring-advisor. The two skills are sequential: instrument-agent first, monitoring-advisor afterward.

    Monte Carlo tool routing (required): Always call Monte Carlo MCP tools through this plugin's bundled server, whose fully-qualified tool names are mcp__plugin_mc-agent-toolkit_monte-carlo-mcp__<tool> (e.g. mcp__plugin_mc-agent-toolkit_monte-carlo-mcp__get_alerts). Bare tool names used in this skill (get_alerts, search, get_table, …) refer to that bundled server. If the session also has a separately-configured monte-carlo-mcp server, do not route to it — it may point at a different endpoint or credentials.

    Reference files live next to this file. Use the Read tool (not MCP resources) to access them.

    CRITICAL — Never modify any file without explicit user approval

    This skill must not modify any file in the customer's codebase without explicit per-file user approval. This rule covers:

    • Dependency filesrequirements.txt, pyproject.toml, Pipfile, lockfiles. Always propose the diff and wait for confirmation before editing.
    • Source codemc.setup() insertion, decorator placement (@trace_with_workflow, @trace_with_task), import additions. Always propose the diff and wait for confirmation per file.
    • Env files.env, .envrc, shell rc files. Always propose the change and wait for confirmation before editing.

    The skill walks the user through what needs to change and why, then proposes diffs. It does not apply edits, run pip install, or write env files autonomously. The only exception: the user may explicitly waive approval for a specific file ("I know the risks, just edit the file") — proceed for that file only and surface that the approval was waived.

    This guardrail is reinforced in the Tier-3 references (references/decorator-placement.md, references/setup-template.md, references/library-detection.md).

    When to activate this skill

    Activate when the user expresses intent to instrument a new AI agent:

    • Asks to instrument an agent for Monte Carlo, set up MC tracing, or wire up the Monte Carlo OpenTelemetry SDK
    • Asks how to add Monte Carlo tracing to a LangChain / LangGraph / OpenAI / Anthropic / CrewAI / Bedrock / SageMaker / Vertex AI agent (those are examples — the full supported set is whatever the Monte Carlo OpenTelemetry SDK ships on PyPI: https://pypi.org/project/montecarlo-opentelemetry/)
    • Says things like "instrument my agent for Monte Carlo", "set up Monte Carlo tracing", "set up MC tracing", "set up agent tracing for Monte Carlo", "set up Monte Carlo on my new agent"
    • References the SDK install or mc.setup() (when generating; not when diagnosing)

    When NOT to activate this skill

    Do not activate when the user is:

    • Asking to monitor an existing agent (latency, token usage, evaluation, trajectory, validation) → monte-carlo-monitoring-advisor
    • Investigating an active agent incident or alert → monte-carlo-incident-response / monte-carlo-troubleshoot-agent-traces
    • Asking about pushing metadata or query logs to Monte Carlo (data ingestion, not agent tracing) → push-ingestion
    • Building a Connection Auth Rules config → connection-auth-rules
    • Asking why traces are missing for an already-instrumented agent → that's troubleshooting; this skill covers it via references/troubleshooting.md, but the first invocation should be deliberate (not a coverage question)

    If the user is ambiguous ("set up agent observability"), surface both options and ask whether they're instrumenting a new agent (this skill) or configuring monitors on an existing one (monitoring-advisor).

    Pre-flight check

    Before walking the workflow, confirm two things:

    1. Monte Carlo MCP server is configured + authenticated. Run test_connection. If it succeeds, Step 4 (BEFORE snapshot) and Step 10 (AFTER verification) will use get_agent_metadata directly. If test_connection fails, degrade gracefully — point the user at the MC MCP setup docs (https://docs.getmontecarlo.com/docs/mcp-server) as informational, then continue the workflow and tell them they'll need to verify the new agent appears in the Monte Carlo UI manually after running the instrumented agent. Record whether MCP is available so Steps 4 and 10 know which path to take.
    2. Python codebase is present. Look for requirements.txt, pyproject.toml, or Pipfile in the working directory. If none exist, ask the user where the agent codebase is.

    Reference files — when to load

    The skill is structured as a Tier 1 router (this file) → Tier 2 workflow → Tier 3 per-step references. Load each reference when its step is reached in the workflow.

    Reference fileLoad when…
    references/workflow.mdAt the start of every invocation. Tier 2 — the end-to-end flow. Read first.
    references/library-detection.mdWalking step 1 of the workflow — detecting AI libraries, the runtime style (serverless vs long-running), and any existing mc.setup(). Documents how detect_libraries.py and fetch_sdk_docs.py recognize supported AI libraries — the SDK's supported set is whatever PyPI shows.
    references/setup-template.mdWalking step 5–7 of the workflow — resolving the OTLP endpoint, generating mc.setup(), handling the existing-mc.setup() decision matrix. Includes both serverless and long-running templates.
    references/decorator-placement.mdWalking step 8 of the workflow — proposing @trace_with_workflow and @trace_with_task diffs. Tier 3: those are the only two decorators in scope for v1.
    references/verify-traces.mdWalking step 4 (BEFORE snapshot) and step 10 (AFTER verification) of the workflow — both get_agent_metadata calls. Documents dev/prod twin disambiguation via MCON.
    references/redaction.mdWhen the customer has stricter privacy requirements (compliance, regulated workload, contractual PII restrictions) and asks to redact prompts or completions. Walks through ordered redaction layers: env-var disable first, then optional placeholder-substitution via mc.create_llm_span.
    references/troubleshooting.mdWhen step 10's verification doesn't show the new agent, or the user reports incomplete traces. Covers the common trace-ingestion failure modes plus the serverless SimpleSpanProcessor foot-gun.

    High-level workflow (Tier 1 summary)

    The full step-by-step flow lives in references/workflow.md. At a glance:

    1. Detect AI libraries, runtime style, and any existing mc.setup() via scripts/detect_libraries.py.
    2. Ask whether the customer hosts their own OTel collector or uses the MC-hosted one — gates the env-var step.
    3. Ask whether the customer has stricter privacy requirements that warrant redacting prompts or completions — full capture is the default; redaction is opt-in.
    4. Snapshot existing agents via get_agent_metadata (BEFORE any code changes).
    5. Resolve and display the final OTLP endpoint to the user — normalize idempotently (never double-append /v1/traces).
    6. Propose dependency-file edits and wait for approval — install SDK + instrumentors at compatible versions (live-fetched from PyPI; fail closed and ask the user to consult https://pypi.org/project/montecarlo-opentelemetry/ if the fetch fails).
    7. Propose mc.setup() insertion as a diff and wait for approval — serverless variant uses SimpleSpanProcessor.
    8. Propose @trace_with_workflow / @trace_with_task decorator diffs — wait for approval per file. Those are the only two decorators in scope for v1.
    9. Confirm auth env vars (only on the MC-hosted collector path) — either MCD_DEFAULT_API_ID / MCD_DEFAULT_API_TOKEN or OTEL_EXPORTER_OTLP_HEADERS, depending on the setup template. Presence-only check; never read or echo the values.
    10. Verify via get_agent_metadata (AFTER user runs the instrumented agent) — confirm new agent_name + new MCON appears.
    11. On failure, branch to references/troubleshooting.md.

    Each step's full Tier 3 details live in the reference files above.

    Helper scripts

    The skill ships two Python helpers under scripts/ that the workflow invokes:

    ScriptPurpose
    scripts/detect_libraries.pyParse requirements.txt / pyproject.toml / Pipfile into a sorted dependencies list; classify runtime as serverless / long-running / unknown; detect existing mc.setup(). Returns JSON. Raw discovery surface — does not match AI libraries to instrumentors; that's the LLM's job using fetch_sdk_docs.py output.
    scripts/fetch_sdk_docs.pyFetch the SDK supported-instrumentor list live from PyPI, including version constraints. Fails closed if PyPI is unreachable.

    Version constraints for instrumentor packages come from PyPI live (fetch_sdk_docs.py). Transitive constraints PyPI doesn't expose (e.g. wrapt<2 for OpenLLMetry instrumentors at <=0.53.4) are documented as symptom-driven fixes in references/troubleshooting.md — the skill surfaces them when the customer hits the symptom rather than baking them into every install diff.

    Out of scope (v1)

    • Auto-scaffolded create_llm_span boilerplate for libraries without a dedicated instrumentor.
    • Auto-instrumented redaction (proactive sensitive-data detection and wrapping). The skill is conversant in redaction — when the customer has stricter privacy requirements, it walks them through the ordered redaction layers in references/redaction.md.
    • Full first-time AO setup (infra deployment, datastore registration, warehouse ingestion).
    • API-key generation.
    • Non-Python SDKs.
    • Decorators other than @trace_with_workflow and @trace_with_task. Other tracing primitives the SDK exposes are not part of the v1 surface.

    Available slash commands

    CommandPurpose
    /instrument-agentKicks off the workflow against the current Python codebase.

    Alternatives

    Compare before choosing