Agent skill
dd-docs
Datadog docs lookup using docs.datadoghq.com/llms.txt and linked Markdown pages.
Install this agent skill to your Project
npx add-skill https://github.com/sushichan044/dotfiles/tree/main/.agents/skills/dd-docs
Metadata
Additional technical details for this skill
- tags
- datadog,docs,llms.txt,dd-docs
- author
- datadog-labs
- version
- 1.0.0
- repository
- https://github.com/datadog-labs/agent-skills
- alwaysApply
- false
SKILL.md
Datadog Docs
Use this skill to locate Datadog documentation and limits.
LLM-Friendly Documentation
Datadog provides an LLM-optimized documentation index at:
https://docs.datadoghq.com/llms.txt
This file contains:
- Overview of all Datadog products organized by use case
- Full list of documentation pages with URLs and descriptions
- Direct links to Markdown sources (append
.mdto URLs)
How to Use llms.txt
-
Fetch the index to understand available documentation:
bashcurl -s https://docs.datadoghq.com/llms.txt | head -100 -
Search for specific topics:
Examples:
curl -s https://docs.datadoghq.com/llms.txt | grep -i "monitors"
curl -s https://docs.datadoghq.com/llms.txt | grep -i "apm"
curl -s https://docs.datadoghq.com/llms.txt | grep -i "logs"
- Fetch specific doc pages (add .md to most Datadog Docs URLs for raw content):
bash
curl -s https://docs.datadoghq.com/monitors.md curl -s https://docs.datadoghq.com/tracing.md
Key Documentation Sections
| Topic | URL |
|---|---|
| APM/Tracing | https://docs.datadoghq.com/tracing/ |
| Logs | https://docs.datadoghq.com/logs/ |
| Metrics | https://docs.datadoghq.com/metrics/ |
| Monitors | https://docs.datadoghq.com/monitors/ |
| Dashboards | https://docs.datadoghq.com/dashboards/ |
| Security | https://docs.datadoghq.com/security/ |
| Synthetics | https://docs.datadoghq.com/synthetics/ |
| RUM | https://docs.datadoghq.com/real_user_monitoring/ |
| Incidents | https://docs.datadoghq.com/service_management/incident_management/ |
| API Reference | https://docs.datadoghq.com/api/ |
Scope Guardrails
- Use llms.txt for documentation lookups
- Defer to official docs for feature availability and limits
Failure Handling
- If docs.datadoghq.com is unreachable, check network connectivity
- For region-specific docs, use appropriate site (datadoghq.eu, etc.)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
terraform-style-guide
Generate Terraform HCL code following HashiCorp's official style conventions and best practices. Use when writing, reviewing, or generating Terraform configurations.
fix-github-actions-ci
GitHub Actions CI の失敗を調査して修正するためのスキルです。CI ログを分析して失敗箇所・原因を特定し、そのまま修正作業まで行います。
dd-logs
Log management - search, pipelines, archives, and cost control.
golang-safety
Defensive Golang coding to prevent panics, silent data corruption, and subtle runtime bugs. Use whenever writing or reviewing Go code that involves nil-prone types (pointers, interfaces, maps, slices, channels), numeric conversions, resource lifecycle (defer in loops), or defensive copying. Also triggers on questions about nil panics, append aliasing, map concurrent access, float comparison, or zero-value design.
resolve-merge-conflict
現在の branch を分岐元の最新に rebase するときに使う。まず rebase を実行し、止まった conflict を順番に解消して前に進める。長い事前調査を避けて、必要な file だけ見て片付けたいときに使う。
golang-data-structures
Golang data structures — slices (internals, capacity growth, preallocation, slices package), maps (internals, hash buckets, maps package), arrays, container/list/heap/ring, strings.Builder vs bytes.Buffer, generic collections, pointers (unsafe.Pointer, weak.Pointer), and copy semantics. Use when choosing or optimizing Go data structures, implementing generic containers, using container/ packages, unsafe or weak pointers, or questioning slice/map internals.
Didn't find tool you were looking for?