Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
chirpz-ai avatar

Pandaprobe

  • 13 installs
  • Updated June 9, 2026
  • chirpz-ai/pandaprobe-skills

Trace and evaluate agent behavior with detailed analytics and debugging

About

PandaProbe traces and evaluates AI agents with execution analysis and performance metrics. Use it to debug agent behavior, trace execution paths, and analyze performance.

  • Agent execution tracing and behavior analysis
  • Performance metrics and debugging insights

Pandaprobe by the numbers

  • 13 all-time installs (skills.sh)
  • Ranked #1,508 of 2,153 Testing & QA skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/chirpz-ai/pandaprobe-skills --skill pandaprobe

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs13
Last updatedJune 9, 2026
Repositorychirpz-ai/pandaprobe-skills

What it does

Trace and evaluate agent behavior with detailed analytics and debugging

Files

SKILL.mdMarkdownGitHub ↗

PandaProbe

PandaProbe is an agent engineering platform for tracing, evaluating, and monitoring AI agents and LLM apps. This skill supports four goals — one per numbered section below:

1. Onboard a project onto PandaProbe — a guided, interactive setup that builds and runs a first traced agent example from scratch, ideal for an empty or new project (section 1). 2. Instrument an application with the PandaProbe SDK so its runs are traced (section 2); see references/instrumentation.md. 3. Read and evaluate data — traces, sessions, spans, scores, eval runs — with the pandaprobe CLI (section 3); see references/cli.md. 4. Access the documentation — fetch the latest PandaProbe docs, the source of truth that instrumentation relies on (section 4).

Core Principles

Follow these for ALL PandaProbe work:

1. Documentation first. NEVER instrument from memory. The SDK is under active development — always fetch the latest docs before writing instrumentation code (section 4). 2. CLI for data access. Use the pandaprobe CLI to read or evaluate data — never hand-build API calls. It is agent-first: JSON on stdout, errors on stderr, meaningful exit codes, no interactive prompts (section 3). 3. Best practices by use case. Read the relevant reference file before implementing — instrumentation → references/instrumentation.md; CLI → references/cli.md. 4. Use the latest versions. Unless the user specifies otherwise, use the latest PandaProbe SDK and CLI. 5. Never echo the API key. Don't print, log, or paste keys into chat; let the CLI and SDK manage credentials (pandaprobe config show masks the key).

1. Set up PandaProbe (guided onboarding)

When the user says "set up PandaProbe", "get started with PandaProbe", or similar, and is starting from an empty or new project, run the guided onboarding — an interactive flow that builds and runs a small traced agent example so they see their first traces. Follow the step-by-step playbook in references/setup.md.

If they instead want to add tracing to an app they already have, that's section 2 (instrument), not onboarding.

2. Instrument an agent application (SDK)

Add PandaProbe tracing to the user's app. The SDK changes often and exact APIs differ per framework, so work doc-first — do not instrument from memory. Keep your reasoning high-level here and pull specifics from the docs.

Procedure:

1. Identify the stack — which agent framework (LangGraph, LangChain, OpenAI Agents, CrewAI, Google ADK, Claude Agent SDK, DeepAgents) or LLM provider (OpenAI, Anthropic, Gemini, Mistral, Bedrock) the app uses. 2. Choose the layer (priority order): agent-framework integration → provider wrapper → manual decorators. Prefer the highest that fits; layers compose. 3. Fetch the latest docs for that exact framework/provider (section 4) and confirm the package extra, import path, class name, and wiring pattern before writing code. 4. Install, set credentials, wire the chosen layer, then verify the trace landed with the CLI (section 3).

The high-level playbook — layers, install extras, the integration wiring patterns, credentials, and verification — lives in references/instrumentation.md. Always reconcile exact names and signatures with the current docs.

3. Read & evaluate data (CLI)

Use the pandaprobe CLI to inspect traces, sessions, spans, scores, and evaluation runs. Reads (list/get/spans/metrics) are safe to run freely; the three eval write commands — evals runs create, evals runs batch, evals scores submit — create data, so run them only when the user explicitly asks.

Install, authentication (Cloud and self-hosted), the full command tree, output contract, exit codes, and jq recipes are in references/cli.md — read it before running commands. For anything beyond it, run pandaprobe <command> --help or see https://docs.pandaprobe.com/tools/cli.

4. Access PandaProbe documentation

The docs are the source of truth that instrumentation relies on. All product docs live at docs.pandaprobe.com. Prefer your application's native fetch tools (e.g. WebFetch) over curl when available — the URLs below work with any method.

a. Documentation index (llms.txt) — every page with title, URL, and one-line summary; use it to find the right page for a topic:

curl -s https://docs.pandaprobe.com/llms.txt

b. Fetch a page as markdown — append .md to its path (or send Accept: text/markdown):

curl -s "https://docs.pandaprobe.com/tracing/integrations/langgraph.md"

Key instrumentation pages: tracing/overview, tracing/concepts, tracing/integrations/overview (+ the per-framework page), tracing/wrappers/overview, tracing/manual/decorators, tracing/configuration/environment-variables. CLI: tools/cli.

Workflow: start at llms.txt to orient → fetch the specific .md page → verify exact names and signatures against it before writing code, and adopt the latest SDK version.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.