dd-docs

Look up Datadog documentation via llms.txt index and Markdown pages.

5|2|Updated Mar 9, 2026
One-click install
npx skills add https://github.com/lauhon/pi --skill dd-docs-lauhon
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dd-docs
Source: https://github.com/lauhon/pi/tree/main/skills/dd-docs
Command: npx skills add https://github.com/lauhon/pi --skill dd-docs-lauhon

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Finding accurate Datadog documentation, feature details, and limits requires navigating a large docs site; this Skill provides a direct, LLM-friendly lookup path using Datadog's llms.txt index and raw Markdown pages. ## Core Features & Use Cases - LLM-Optimized Index Access: Fetches https://docs.datadoghq.com/llms.txt to list all Datadog products and documentation pages with descriptions. - Topic Search: Greps the index for specific topics like monitors, APM, or logs to find relevant doc URLs. - Raw Markdown Retrieval: Appends .md to Datadog docs URLs to fetch clean Markdown content for any page. - Use Case: When configuring a Datadog monitor and unsure about evaluation window options, fetch the monitors documentation as Markdown and read the exact parameter definitions. ## Quick Start Look up the Datadog documentation for setting up APM tracing and summarize the key configuration steps.

Frequently Asked Questions about dd-docs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search Datadog documentation from the command line?

Fetch the llms.txt index with curl -s https://docs.datadoghq.com/llms.txt and pipe it to grep with your topic, such as grep -i "monitors". This returns matching documentation page URLs and descriptions.

How to get Datadog docs pages as Markdown?

Append .md to most Datadog documentation URLs to retrieve the raw Markdown source. For example, curl -s https://docs.datadoghq.com/monitors.md returns the monitors documentation in Markdown format.

What is the llms.txt file on docs.datadoghq.com?

It is an LLM-optimized documentation index containing an overview of all Datadog products organized by use case, plus a full list of documentation pages with URLs and descriptions.

Does Datadog docs lookup work for EU region?

For region-specific documentation, use the appropriate site domain such as datadoghq.eu instead of datadoghq.com. The same llms.txt and .md URL patterns apply to regional sites.

Why is the Datadog docs lookup failing?

If docs.datadoghq.com is unreachable, first check network connectivity from your environment. The skill relies on live HTTP requests to Datadog's documentation site, so firewall or DNS issues will block retrieval.