Datadog Pup CLI
Rust-based CLI for Datadog APIs. 49 command groups, 300+ subcommands across 53 command modules.
Install Skills
# Install all skills and agents for the auto-detected AI assistant
pup skills install
# Or install for a specific platform (claude, cursor, codex, opencode, pi)
pup skills install claude
pup skills install codex
pup skills install cursor
# Install for every supported platform at once
pup skills install all
# Install a single skill by name
pup skills install claude --name dd-pup
# Default scope is user-global; pass --project to install into the repo
pup skills install claude --project
# List all available skills
pup skills list
Skills
| Skill |
Description |
| dd-pup |
Primary CLI - all pup commands, auth, site config |
| dd-monitors |
Create, manage, mute monitors and alerts |
| dd-logs |
Search logs, pipelines, archives |
| dd-apm |
Traces, services, performance analysis |
| dd-docs |
Search Datadog documentation via llms.txt |
| dd-code-generation |
CLI vs code-gen decision, multi-language examples |
| dd-file-issue |
Issue routing to correct repo, duplicate search |
Domain Agents (48)
Specialized agents for every Datadog API domain: logs, metrics, dashboards, monitors, APM, security, infrastructure, incidents, and more.
pup skills list --category=agent
Quick Start
# Install pup
brew tap datadog-labs/pack && brew install pup
# Authenticate
pup auth login
# Install skills for your AI assistant
pup skills install
1---2name: pup3description: Datadog API CLI with 49 command groups, 300+ subcommands. Skills and domain agents for monitoring, logs, APM, security, and infrastructure.4---56# Datadog Pup CLI78Rust-based CLI for Datadog APIs. 49 command groups, 300+ subcommands across 53 command modules.910## Install Skills1112```bash13# Install all skills and agents for the auto-detected AI assistant14pup skills install1516# Or install for a specific platform (claude, cursor, codex, opencode, pi)17pup skills install claude18pup skills install codex19pup skills install cursor2021# Install for every supported platform at once22pup skills install all2324# Install a single skill by name25pup skills install claude --name dd-pup2627# Default scope is user-global; pass --project to install into the repo28pup skills install claude --project2930# List all available skills31pup skills list32```3334## Skills3536| Skill | Description |37|-------|-------------|38| **dd-pup** | Primary CLI - all pup commands, auth, site config |39| **dd-monitors** | Create, manage, mute monitors and alerts |40| **dd-logs** | Search logs, pipelines, archives |41| **dd-apm** | Traces, services, performance analysis |42| **dd-docs** | Search Datadog documentation via llms.txt |43| **dd-code-generation** | CLI vs code-gen decision, multi-language examples |44| **dd-file-issue** | Issue routing to correct repo, duplicate search |4546## Domain Agents (48)4748Specialized agents for every Datadog API domain: logs, metrics, dashboards, monitors, APM, security, infrastructure, incidents, and more.4950```bash51pup skills list --category=agent52```5354## Quick Start5556```bash57# Install pup58brew tap datadog-labs/pack && brew install pup5960# Authenticate61pup auth login6263# Install skills for your AI assistant64pup skills install65```