/dd-debugger
Live Debugger - inspect runtime argument/variable values in production by placing log probes on methods. Use when asked what values a function receives, what parameters look like at runtime, or to capture live data from running services without redeploying.
$ npx -y skills add DataDog/pup --skill dd-debugger --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/dd-debugger
Context preview
The summary Claude sees to decide when to auto-load this skill.
Live Debugger - inspect runtime argument/variable values in production by placing log probes on methods. Use when asked what values a function receives, what parameters look like at runtime, or to capture live data from running services without redeploying.
SKILL.md
dd-debugger.SKILL.mdname: dd-debugger
description: Live Debugger - inspect runtime argument/variable values in production by placing log probes on methods. Use when asked what values a function receives, what parameters look like at runtime, or to capture live data from running services without redeploying.
metadata:
version: "1.1.0"
author: datadog-labs
repository: https://github.com/datadog-labs/agent-skills
tags: datadog,debugger,live-debugger,probes,dd-debugger
globs: ""
alwaysApply: "false"
Datadog Live Debugger
Place log probes on running services without redeploying. Create probes with custom templates and conditions, and stream captured events in real time.
Prerequisites
`pup` must be installed:
brew tap datadog-labs/pack && brew install pup
Authentication
Authenticate via OAuth2 (recommended) or API keys:
# OAuth2 (recommended)
pup auth login
# Or use API keys
export DD_API_KEY="key" DD_APP_KEY="key" DD_SITE="datadoghq.com"
Typical Workflow
**Prefer `--capture` expressions** over full snapshots. Capture expressions are lighter-weight, faster, and return exactly the data you need.
1. If you don't know the service, **ask the user** before proceeding. 2. **Verify the service** using `pup debugger context <service>` to list environments with active instances. If multiple environments exist, **ask the user** which one to target before proceeding. 3. **Find a method** using the `dd-symdb` skill (`pup symdb search --view probe-locations`) 4. **Place a probe** with capture expressions for the values you need 5. **Watch** events with `--fields` for compact output 6. **Delete** the probe when done
# 0. List environments (if multiple, ask user which to use)
pup debugger context my-service --fields service,language,envs
# 1. Create a probe with capture expressions (recommended)
# Use --fields id to get just the probe ID back
pup debugger probes create \
--service my-service \
--env production \
--probe-location "com.example.MyController:handleRequest" \
--capture "request.id" \
--capture "request.headers" \
--ttl 1h \
--fields id
# 2. Stream events with compact output
pup debugger probes watch <PROBE_ID> --timeout 60 --limit 10 \
--fields "message,captures,timestamp"
# 3. Clean up
pup debugger probes delete <PROBE_ID>
Service Context
**Always run this before creating probes.** It returns JSON by default (like all other commands) showing environments with active instances, tracer versions, and supported probe features. If the service runs in multiple environments, ask the user which one to target — don't guess.
# Full JSON output (default)
pup debugger context my-service
# Compact: just the fields you need
pup debugger context my-service --fields service,language,envs
# Filter to a specific environment
pup debugger context my-service --env production --fields service,envs,repo
| Flag | Description | Default | |------|-------------|---------| | `--env` | Filter to a specific environment | All environments | | `--fields` | Comma-separated fields: `service`, `language`, `envs`, `repo` | Full JSON response |
Probe Management
List Probes
# All probes
pup debugger probes list
# Filter by service
pup debugger probes list --service my-service
Get Probe Details
pup debugger probes get <PROBE_ID>
Create a Log Probe
pup debugger probes create \
--service my-service \
--env staging \
--probe-location "com.example.MyClass:myMethod" \
--capture "user.name" \
--capture "order.items[0].price"
To disambiguate overloaded methods, pass a signature with argument types:
pup debugger probes create \
--service my-service \
--env staging \
--probe-location "com.example.MyClass:myMethod(int, java.lang.String)" \
--capture "user.name"
**Options:**
| Flag | Description | Default | |------|-------------|---------| | `--service` | Service name (required) | — | | `--env` | Environment (required) | — | | `--probe-location` | `TYPE:METHOD` or `TYPE:METHOD(args)` (required). The signature form disambiguates overloaded methods. | — | | `--language` | `java`, `python`, `dotnet`, `go` | Auto-detected from symdb | | `--capture EXPR` | Capture expression (repeatable). Use dot notation for fields, brackets for indexing. | None | | `--capture` | Without value: enable full snapshot (capture everything). | No snapshot | | `--template` | Log message template with `{variable}` placeholders. Can combine with `--capture`. | Auto-generated | | `--condition` | DSL condition to filter captures | None | | `--depth` | How deep the tracer traverses the object graph when capturing (1–5). Start at 1 to see field names/types, increase to drill in. | `1` | | `--rate` | Snapshots per second | `1` | | `--budget` | Max probe hits. Only "total" window supported (hourly/daily not yet available). | `1000` | | `--ttl` | Probe time-to-live (e.g., `10m`, `1h`, `24h`). Probe auto-expires. | `1h` |
Capture Expressions (Recommended)
**Always prefer capture expressions over full snapshots.** They are lighter-weight and return exactly the data you need.
# Capture specific fields using dot notation
--capture "user.name"
--capture "request.headers"
# Access array elements
--capture "orders[0].total"
--capture "items[len(items)].name"
# Chain member access
--capture "response.body.data.id"
Multiple `--capture` flags can be combined. Each expression is independently evaluated.
# Capture multiple specific values
pup debugger probes create \
--service my-service --env prod \
--probe-location "OrderService:processOrder" \
--capture "order.id" \
--capture "order.items[0].price" \
--capture "customer.email"
> **Tip:** Start with `--depth 1` (the default) to see field names and types, then increase depth to drill into interesting subtrees. Use `--depth 5` for deeply nested objects.
Full Snapshot (use sparingly)
Use bare `--cap
Read more
name: dd-debugger description: Live Debugger - inspect runtime argument/variable values in production by placing log probes on methods. Use when asked what values a function receives, what parameters look like at runtime, or to capture live data from running services without redeploying. metadata: version: "1.1.0" author: datadog-labs repository: https://github.com/datadog-labs/agent-skills tags: datadog,debugger,live-debugger,probes,dd-debugger globs: "" alwaysApply: "false"
Datadog Live Debugger
Place log probes on running services without redeploying. Create probes with custom templates and conditions, and stream captured events in real time.
Prerequisites
`pup` must be installed:
brew tap datadog-labs/pack && brew install pup
Authentication
Authenticate via OAuth2 (recommended) or API keys:
# OAuth2 (recommended) pup auth login # Or use API keys export DD_API_KEY="key" DD_APP_KEY="key" DD_SITE="datadoghq.com"
Typical Workflow
**Prefer `--capture` expressions** over full snapshots. Capture expressions are lighter-weight, faster, and return exactly the data you need.
1. If you don't know the service, **ask the user** before proceeding. 2. **Verify the service** using `pup debugger context <service>` to list environments with active instances. If multiple environments exist, **ask the user** which one to target before proceeding. 3. **Find a method** using the `dd-symdb` skill (`pup symdb search --view probe-locations`) 4. **Place a probe** with capture expressions for the values you need 5. **Watch** events with `--fields` for compact output 6. **Delete** the probe when done
# 0. List environments (if multiple, ask user which to use) pup debugger context my-service --fields service,language,envs # 1. Create a probe with capture expressions (recommended) # Use --fields id to get just the probe ID back pup debugger probes create \ --service my-service \ --env production \ --probe-location "com.example.MyController:handleRequest" \ --capture "request.id" \ --capture "request.headers" \ --ttl 1h \ --fields id # 2. Stream events with compact output pup debugger probes watch <PROBE_ID> --timeout 60 --limit 10 \ --fields "message,captures,timestamp" # 3. Clean up pup debugger probes delete <PROBE_ID>
Service Context
**Always run this before creating probes.** It returns JSON by default (like all other commands) showing environments with active instances, tracer versions, and supported probe features. If the service runs in multiple environments, ask the user which one to target — don't guess.
# Full JSON output (default) pup debugger context my-service # Compact: just the fields you need pup debugger context my-service --fields service,language,envs # Filter to a specific environment pup debugger context my-service --env production --fields service,envs,repo
| Flag | Description | Default | |------|-------------|---------| | `--env` | Filter to a specific environment | All environments | | `--fields` | Comma-separated fields: `service`, `language`, `envs`, `repo` | Full JSON response |
Probe Management
List Probes
# All probes pup debugger probes list # Filter by service pup debugger probes list --service my-service
Get Probe Details
pup debugger probes get <PROBE_ID>
Create a Log Probe
pup debugger probes create \ --service my-service \ --env staging \ --probe-location "com.example.MyClass:myMethod" \ --capture "user.name" \ --capture "order.items[0].price"
To disambiguate overloaded methods, pass a signature with argument types:
pup debugger probes create \ --service my-service \ --env staging \ --probe-location "com.example.MyClass:myMethod(int, java.lang.String)" \ --capture "user.name"
**Options:**
| Flag | Description | Default | |------|-------------|---------| | `--service` | Service name (required) | — | | `--env` | Environment (required) | — | | `--probe-location` | `TYPE:METHOD` or `TYPE:METHOD(args)` (required). The signature form disambiguates overloaded methods. | — | | `--language` | `java`, `python`, `dotnet`, `go` | Auto-detected from symdb | | `--capture EXPR` | Capture expression (repeatable). Use dot notation for fields, brackets for indexing. | None | | `--capture` | Without value: enable full snapshot (capture everything). | No snapshot | | `--template` | Log message template with `{variable}` placeholders. Can combine with `--capture`. | Auto-generated | | `--condition` | DSL condition to filter captures | None | | `--depth` | How deep the tracer traverses the object graph when capturing (1–5). Start at 1 to see field names/types, increase to drill in. | `1` | | `--rate` | Snapshots per second | `1` | | `--budget` | Max probe hits. Only "total" window supported (hourly/daily not yet available). | `1000` | | `--ttl` | Probe time-to-live (e.g., `10m`, `1h`, `24h`). Probe auto-expires. | `1h` |
Capture Expressions (Recommended)
**Always prefer capture expressions over full snapshots.** They are lighter-weight and return exactly the data you need.
# Capture specific fields using dot notation --capture "user.name" --capture "request.headers" # Access array elements --capture "orders[0].total" --capture "items[len(items)].name" # Chain member access --capture "response.body.data.id"
Multiple `--capture` flags can be combined. Each expression is independently evaluated.
# Capture multiple specific values pup debugger probes create \ --service my-service --env prod \ --probe-location "OrderService:processOrder" \ --capture "order.id" \ --capture "order.items[0].price" \ --capture "customer.email"
> **Tip:** Start with `--depth 1` (the default) to see field names and types, then increase depth to drill into interesting subtrees. Use `--depth 5` for deeply nested objects.
Full Snapshot (use sparingly)
Use bare `--cap
Every AI agent needs a loyal companion. Meet Pup — the CLI that gives your agents full access to Datadog's observability platform (because even autonomous agents need good tooling, not just tricks).
Repo: DataDog/pup
Other skills on pup.
- /dd-apm
APM - traces, services, dependencies, performance analysis.
Open skill - /dd-code-generation
Use pup CLI for immediate Datadog operations or generate code for integration into applications
Open skill - /dd-docs
Datadog docs lookup using docs.datadoghq.com/llms.txt and linked Markdown pages.
Open skill - /dd-file-issue
File GitHub issues to the right repository (pup CLI or plugin)
Open skill - /dd-logs
Log management - search, pipelines, archives, and cost control.
Open skill - /dd-monitors
Monitor management - create, update, mute, and alerting best practices.
Open skill

