mcpbeat Sign in

Agent Skills

Datadog skills for AI agents. Essential monitoring, logging, tracing and observability.

232k tokens
context cost
the whole folder, loaded on every use
89
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
147
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/datadog-labs/agent-skills --skill agent-skills

The instruction itself

8 sections, as written by the author

Datadog Skills

Essential Datadog skills for AI agents.

Core Skills

| Skill | Description |

|-------|-------------|

| dd-pup | Primary CLI - all pup commands, auth, PATH setup |

| 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 |

| dd-llmo | LLM Observability traces, experiments, evals |

| dd-browser-sdk | Browser SDK setup, RUM, Logs, Session Replay, version migration |

| dd-software-delivery | CI/CD workflow skills — unblock PR, triage flaky tests |

| dd-apps | Build Datadog Apps — scaffold, run, upload, publish, CI/CD |

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

Other skills for the same job

different authors, same section of the catalogue
MCP Deploy Manage Agents
by github
vendor ×1

Skill converted from mcp-deploy-manage-agents.prompt.md

2k tokens
Cloud Claw Launch Agent
by internet-court
×1

Use this skill when the user wants to launch a new AltClaw, OpenClaw, PicoClaw, or Ottie deployment through Cloud Claw. Covers the same user-facing fields and constraints exposed in the Cloud Claw UI, using the local altllm cloud-claw-* commands. Do NOT use for post-launch lifecycle tasks like start/stop/delete/logs; use cloud-claw-manage-vm.

1k tokens
Hosted Agents V2 Py
by lingxling
×1

Build hosted agents using Azure AI Projects SDK with ImageBasedHostedAgentDefinition. Use when creating container-based agents in Azure AI Foundry.

2k tokens
Cloudflare MCP Server
by ComeOnOliver
×1

Build MCP (Model Context Protocol) servers on Cloudflare Workers with tools, resources, and prompts.

49k tokens scripts
When Chaining Agent Pipelines Use Stream Chain
by ComeOnOliver
×1

Chain agent outputs as inputs in sequential or parallel pipelines for data flow orchestration

5k tokens
Clone Audit Mrlv3nl4
by nexu-io

Audit cloned or reimplemented websites for fidelity gaps, tracking scripts, source-brand and language residue, placeholders, and risky external dependencies. Use before handoff or deployment, or when asked to review a website clone for cleanup and readiness.

2k tokens
Hermes Tweet
by wshobson

> Install and operate Hermes Tweet, a Hermes Agent plugin for X/Twitter research, timeline reading, tweet analysis, and approval-gated tweet actions. Use this skill when installing Hermes Tweet, researching X/Twitter accounts, monitoring launch signals, investigating mentions, auditing giveaways, or preparing guarded tweet actions. Use proactively when a Hermes Agent workflow needs current X/Twitter context. Requires XQUIK_API_KEY for read and action tools.

2k tokens
Arize Evaluator
by github
vendor

Handles LLM-as-judge evaluation workflows on Arize including creating/updating evaluators, running evaluations on spans or experiments, managing tasks, trigger-run operations, column mapping, and continuous monitoring. Use when the user mentions create evaluator, LLM judge, hallucination, faithfulness, correctness, relevance, run eval, score spans, score experiment, trigger-run, column mapping, continuous monitoring, or improve evaluator prompt.

10k tokens

How to use it

Copy the folder

Take datadog-labs/agent-skills from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference npx. Without those the skill loads but fails at the first command.