Datadog Skills
Essential Datadog skills for AI agents.
Core Skills
| Skill |
Description |
| dd-account-setup |
Ensure an authenticated Datadog account with a valid API key on the right region; validates keys, fixes wrong-region 403s, signs in or creates an account |
| dd-apm |
Traces, services, performance analysis |
| dd-apps |
Build Datadog Apps — scaffold, run, upload, publish, CI/CD |
| dd-aws-integration |
Connect an AWS account to Datadog with Terraform - cross-account IAM role, metrics and resource collection |
| dd-azure-integration |
Connect Azure subscriptions or management groups to Datadog with Terraform - Entra app registration, Monitoring Reader |
| dd-browser-sdk |
Browser SDK setup, RUM, Logs, Session Replay, version migration |
| dd-docs |
Search Datadog documentation |
| dd-gcp-integration |
Connect GCP projects or folders to Datadog with Terraform - keyless service-account impersonation |
| dd-llmo |
LLM Observability traces, experiments, evals |
| dd-logs |
Search logs, pipelines, archives |
| dd-monitors |
Create, manage, mute monitors and alerts |
| dd-oci-integration |
Connect an Oracle Cloud tenancy to Datadog with Terraform - Datadog's official OCI module |
| dd-product-recommender |
Recommend the right Datadog products for a codebase and/or goal (recommendation only) |
| dd-pup |
Primary CLI - all pup commands, auth, PATH setup |
| dd-software-delivery |
CI/CD workflow skills — unblock PR, triage flaky tests |
| dd-instrument-rum |
Instrument browser apps with Datadog Browser RUM — React, Next.js, Angular, Vue, Nuxt, Svelte, vanilla |
Install
# Install core skills
npx skills add datadog-labs/agent-skills \
--skill dd-pup \
--skill dd-monitors \
--skill dd-logs \
--skill dd-apm \
--skill dd-docs \
--full-depth -y
# Install CI/CD workflow skills
npx skills add datadog-labs/agent-skills \
--skill dd-software-delivery/unblock-pr \
--skill dd-software-delivery/triage-flaky-test \
--full-depth -y
Prerequisites
See Setup Pup for installation and authentication.
Command Execution Policy
Use this order for scoped commands:
- Check context first (conversation, prior outputs, known values).
- Run discovery commands when required values are missing.
- Ask the user only when values remain ambiguous.
- Run the target command after required inputs are known.
- Avoid speculative commands likely to fail.
Quick Reference
| Task |
Command |
| Search error logs |
pup logs search --query "status:error" --from 1h |
| List monitors |
pup monitors list |
| Schedule monitor downtime |
pup downtime create --file downtime.json |
| Find slow traces |
pup traces search --query "service:api @duration:>500ms" --from 1h |
| Query metrics |
pup metrics query --query "avg:system.cpu.user{*}" |
| Check auth |
pup auth status |
| Refresh token |
pup auth refresh |
Auth
pup auth login # OAuth2 (recommended)
pup auth status # Check token
pup auth refresh # Refresh expired token
Token Expiry: OAuth tokens expire (~1 hour). Run pup auth refresh if commands fail with 401/403.
More Skills
Additional skills available shortly.
npx skills add datadog-labs/agent-skills --list --full-depth
1---2name: agent-skills3description: Datadog skills for AI agents. Essential monitoring, logging, tracing and observability.4---5
6# Datadog Skills
7
8Essential Datadog skills for AI agents.
9
10## Core Skills
11
12| Skill | Description |
13|-------|-------------|
14| **dd-account-setup** | Ensure an authenticated Datadog account with a valid API key on the right region; validates keys, fixes wrong-region 403s, signs in or creates an account |
15| **dd-apm** | Traces, services, performance analysis |
16| **dd-apps** | Build Datadog Apps — scaffold, run, upload, publish, CI/CD |
17| **dd-aws-integration** | Connect an AWS account to Datadog with Terraform - cross-account IAM role, metrics and resource collection |
18| **dd-azure-integration** | Connect Azure subscriptions or management groups to Datadog with Terraform - Entra app registration, Monitoring Reader |
19| **dd-browser-sdk** | Browser SDK setup, RUM, Logs, Session Replay, version migration |
20| **dd-docs** | Search Datadog documentation |
21| **dd-gcp-integration** | Connect GCP projects or folders to Datadog with Terraform - keyless service-account impersonation |
22| **dd-llmo** | LLM Observability traces, experiments, evals |
23| **dd-logs** | Search logs, pipelines, archives |
24| **dd-monitors** | Create, manage, mute monitors and alerts |
25| **dd-oci-integration** | Connect an Oracle Cloud tenancy to Datadog with Terraform - Datadog's official OCI module |
26| **dd-product-recommender** | Recommend the right Datadog products for a codebase and/or goal (recommendation only) |
27| **dd-pup** | Primary CLI - all pup commands, auth, PATH setup |
28| **dd-software-delivery** | CI/CD workflow skills — unblock PR, triage flaky tests |
29| **dd-instrument-rum** | Instrument browser apps with Datadog Browser RUM — React, Next.js, Angular, Vue, Nuxt, Svelte, vanilla |
30
31## Install
32
33```bash
34# Install core skills
35npx skills add datadog-labs/agent-skills \
36 --skill dd-pup \
37 --skill dd-monitors \
38 --skill dd-logs \
39 --skill dd-apm \
40 --skill dd-docs \
41 --full-depth -y
42
43# Install CI/CD workflow skills
44npx skills add datadog-labs/agent-skills \
45 --skill dd-software-delivery/unblock-pr \
46 --skill dd-software-delivery/triage-flaky-test \
47 --full-depth -y
48```
49
50## Prerequisites
51
52See [Setup Pup](https://github.com/datadog-labs/agent-skills/tree/main?tab=readme-ov-file#setup-pup) for installation and authentication.
53
54## Command Execution Policy
55
56Use this order for scoped commands:
57
581. Check context first (conversation, prior outputs, known values).
592. Run discovery commands when required values are missing.
603. Ask the user only when values remain ambiguous.
614. Run the target command after required inputs are known.
625. Avoid speculative commands likely to fail.
63
64## Quick Reference
65
66| Task | Command |
67|------|---------|
68| Search error logs | `pup logs search --query "status:error" --from 1h` |
69| List monitors | `pup monitors list` |
70| Schedule monitor downtime | `pup downtime create --file downtime.json` |
71| Find slow traces | `pup traces search --query "service:api @duration:>500ms" --from 1h` |
72| Query metrics | `pup metrics query --query "avg:system.cpu.user{*}"` |
73| Check auth | `pup auth status` |
74| Refresh token | `pup auth refresh` |
75
76## Auth
77
78```bash
79pup auth login # OAuth2 (recommended)
80pup auth status # Check token
81pup auth refresh # Refresh expired token
82```
83
84**Token Expiry**: OAuth tokens expire (~1 hour). Run `pup auth refresh` if commands fail with 401/403.
85
86## More Skills
87
88Additional skills available shortly.
89
90```bash
91npx skills add datadog-labs/agent-skills --list --full-depth
92```