Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/nitinjain999/platform-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/nitinjain999/platform-skills/datadog)<a href="https://agentmods.dev/commands/nitinjain999/platform-skills/datadog"><img src="https://agentmods.dev/badge/commands/nitinjain999/platform-skills/datadog.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00057 | $0.02099 |
| Opus 5 | $0.00028 | $0.01050 |
| Sonnet 5 | $0.00011 | $0.00420 |
| Haiku 4.5 | $0.00006 | $0.00210 |
Grade A, and why
datadog scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 186 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Configure, troubleshoot, or investigate incidents in Datadog.
Mode: setup
Deploy and configure the Datadog Agent on Kubernetes.
Steps:
- Ask for: Kubernetes distribution (EKS/AKS/GKE), Datadog site (EU:
datadoghq.eu/ US:datadoghq.com), features needed (APM, logs, process monitoring) - Generate Helm values with: API key from Secret (never hardcoded), APM enabled, log collection enabled, cluster name set, Cluster Agent enabled with 2 replicas
- Provide install command:
helm upgrade --install datadog datadog/datadog -f values.yaml -n datadog - Provide verification commands:
kubectl exec -n datadog ds/datadog -- agent status - Add Unified Service Tagging labels (
DD_ENV,DD_SERVICE,DD_VERSION) to app Deployment
Mode: instrument
Add APM tracing to a service.
Steps:
- Ask for: language (Node.js / Python / Java / Go), framework (Express / Django / Spring / etc.), whether log-trace correlation is needed
- Generate tracer initialisation code —
dd-traceinit must be the first import in Node.js; useddtrace-runorpatch_all()in Python - Add Unified Service Tagging env vars to the Deployment manifest
- Add custom spans for business-critical paths (payment processing, order creation, etc.)
- Show expected APM UI outcome: service map entry, latency/error rate populated
Mode: monitor
Create a Datadog monitor for a service.
Steps:
- Ask for: metric to alert on (error rate / latency / availability), thresholds, notification targets (PagerDuty / Slack)
- Generate Terraform
datadog_monitorresource (preferred over UI / API for IaC) - Set
notify_no_data: trueandno_data_timeframeso silent services alert - Include warning and critical thresholds
- Tag with
service:,env:,team:for routing
Output monitor query, thresholds, notification message with @pagerduty-* and @slack-* handles.
Mode: dashboard
Create a Datadog dashboard for a service.
Steps:
- Default to RED method: request rate, error rate %, p50/p95/p99 latency
- Generate Terraform
datadog_dashboardresource withtimeseries_definitionwidgets - Use APM metrics:
trace.web.request.hits,trace.web.request.errors,trace.web.requestpercentiles - Add template variables for
envandservicefor reuse across environments
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 186 lines · 57 tokens per session scan A 28fdf714ed0a
datadog is a command published in the GitHub repository nitinjain999/platform-skills (41 stars, last pushed today), licensed Apache-2.0. It adds 57 tokens to every session and 2,099 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
announce
Draft X/Twitter announcement post (or thread) for the latest plugin release.
release
Generate changelog, bump version, and create git tag.
issue-tree
Decompose a business problem into a MECE issue tree.
environment-switching-local-cloud-ssh
The environment selector at the bottom of Claude Code switches where work executes: local for fast interactive iteration, cloud (Anthropic servers) for routines that must run with your machine off, SSH for driving a remote box like a VPS.
aw-upgrade
Upgrade gh-aw extension, recompile and validate all workflows, and open a PR with changes.
perf-investigate
Drive an iOS performance or memory-leak investigation on using Memory Graph + Time Profiler. Enforce data-before-architecture and stacked PRs.