[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-datadog":3,"mdc--8p3s7d-key":39,"related-repo-letta-datadog":1586,"related-org-letta-datadog":1693},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"datadog","query Datadog observability data","Query Datadog observability data (logs, metrics, monitors, dashboards, hosts) via direct API. Use when investigating production issues, checking monitors, searching logs, or accessing Datadog data.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"letta","Letta","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fletta.png","letta-ai",[13,17,20,23,25],{"name":14,"slug":15,"type":16},"Observability","observability","tag",{"name":18,"slug":19,"type":16},"Logs","logs",{"name":21,"slug":22,"type":16},"Monitoring","monitoring",{"name":24,"slug":4,"type":16},"Datadog",{"name":26,"slug":27,"type":16},"Metrics","metrics",127,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills","2026-07-13T06:24:27.990605",null,20,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"A shared repository for skills. Intended to be used with Letta Code, Claude Code, Codex CLI, and other agents that support skills.","https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills\u002Ftree\u002FHEAD\u002Ftools\u002Fdatadog","---\nname: datadog\ndescription: Query Datadog observability data (logs, metrics, monitors, dashboards, hosts) via direct API. Use when investigating production issues, checking monitors, searching logs, or accessing Datadog data.\n---\n\n# Datadog CLI\n\nDirect API access to Datadog observability data — logs, metrics, monitors, dashboards, hosts, and APM spans.\n\n## Prerequisites\n\nSet these environment variables:\n\n```bash\nexport DD_API_KEY=\"your-32-char-hex-api-key\"\nexport DD_APP_KEY=\"your-application-key\"\nexport DD_SITE=\"us5.datadoghq.com\"  # or datadoghq.com, datadoghq.eu, etc.\n```\n\n**Get keys from Datadog:**\n- API Key: Organization Settings → API Keys\n- App Key: Organization Settings → Application Keys\n\n**Required scopes** (for read-only access):\n- `dashboards_read`, `monitors_read`, `metrics_read`, `logs_read_data`, `incidents_read`, `hosts_read`, `apm_read`\n\n## Quick Start\n\n```bash\n# Test credentials\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts validate\n\n# Search logs\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts search-logs \"status:error\" --from -1h\n\n# Query metrics\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts query-metrics \"avg:system.cpu.user{*}\" --from -4h\n\n# List monitors\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-monitors\n```\n\n## Commands\n\n### Logs\n\n```bash\n# Search logs (default: last hour, 50 results)\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts search-logs \"service:api status:error\"\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts search-logs \"env:prod\" --from -30m --limit 100\n```\n\n### Metrics\n\n```bash\n# Query metric timeseries\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts query-metrics \"avg:system.cpu.user{*}\" --from -4h\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts query-metrics \"sum:requests.count{service:api}.as_count()\" --from -1d\n```\n\n### Monitors\n\n```bash\n# List all monitors\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-monitors\n\n# Filter monitors\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-monitors --query \"status:alert\"\n\n# Get specific monitor\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts get-monitor 12345\n```\n\n### Dashboards\n\n```bash\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-dashboards\n```\n\n### Hosts\n\n```bash\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-hosts\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-hosts --filter \"env:production\"\n```\n\n### Incidents\n\n```bash\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-incidents\n```\n\n### APM (Spans & Services)\n\n```bash\n# Search spans\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts search-spans \"service:api @http.status_code:500\" --from -1h\n\n# List services\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-services\n```\n\n## Time Formats\n\nThe `--from` and `--to` flags accept:\n- Relative: `-1h`, `-30m`, `-1d`, `-4h`\n- ISO 8601: `2026-03-20T00:00:00Z`\n\n## Datadog Sites\n\n| Region | DD_SITE value |\n|--------|---------------|\n| US1 | `datadoghq.com` |\n| US3 | `us3.datadoghq.com` |\n| US5 | `us5.datadoghq.com` |\n| EU | `datadoghq.eu` |\n| AP1 | `ap1.datadoghq.com` |\n\n## Troubleshooting\n\n**403 Forbidden:**\n- Check DD_SITE matches your Datadog region\n- Verify app key has required scopes\n- Confirm API key is active\n\n**Credentials not found:**\n- Ensure DD_API_KEY and DD_APP_KEY are exported\n- Check for typos in env var names\n",{"data":40,"body":41},{"name":4,"description":6},{"type":42,"children":43},"root",[44,53,59,66,71,189,198,213,223,278,284,552,558,563,694,698,825,831,1006,1012,1055,1061,1158,1164,1207,1213,1336,1342,1363,1409,1415,1527,1533,1541,1559,1567,1580],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"datadog-cli",[50],{"type":51,"value":52},"text","Datadog CLI",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57],{"type":51,"value":58},"Direct API access to Datadog observability data — logs, metrics, monitors, dashboards, hosts, and APM spans.",{"type":45,"tag":60,"props":61,"children":63},"h2",{"id":62},"prerequisites",[64],{"type":51,"value":65},"Prerequisites",{"type":45,"tag":54,"props":67,"children":68},{},[69],{"type":51,"value":70},"Set these environment variables:",{"type":45,"tag":72,"props":73,"children":78},"pre",{"className":74,"code":75,"language":76,"meta":77,"style":77},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","export DD_API_KEY=\"your-32-char-hex-api-key\"\nexport DD_APP_KEY=\"your-application-key\"\nexport DD_SITE=\"us5.datadoghq.com\"  # or datadoghq.com, datadoghq.eu, etc.\n","bash","",[79],{"type":45,"tag":80,"props":81,"children":82},"code",{"__ignoreMap":77},[83,123,153],{"type":45,"tag":84,"props":85,"children":88},"span",{"class":86,"line":87},"line",1,[89,95,101,107,112,118],{"type":45,"tag":84,"props":90,"children":92},{"style":91},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[93],{"type":51,"value":94},"export",{"type":45,"tag":84,"props":96,"children":98},{"style":97},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[99],{"type":51,"value":100}," DD_API_KEY",{"type":45,"tag":84,"props":102,"children":104},{"style":103},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[105],{"type":51,"value":106},"=",{"type":45,"tag":84,"props":108,"children":109},{"style":103},[110],{"type":51,"value":111},"\"",{"type":45,"tag":84,"props":113,"children":115},{"style":114},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[116],{"type":51,"value":117},"your-32-char-hex-api-key",{"type":45,"tag":84,"props":119,"children":120},{"style":103},[121],{"type":51,"value":122},"\"\n",{"type":45,"tag":84,"props":124,"children":126},{"class":86,"line":125},2,[127,131,136,140,144,149],{"type":45,"tag":84,"props":128,"children":129},{"style":91},[130],{"type":51,"value":94},{"type":45,"tag":84,"props":132,"children":133},{"style":97},[134],{"type":51,"value":135}," DD_APP_KEY",{"type":45,"tag":84,"props":137,"children":138},{"style":103},[139],{"type":51,"value":106},{"type":45,"tag":84,"props":141,"children":142},{"style":103},[143],{"type":51,"value":111},{"type":45,"tag":84,"props":145,"children":146},{"style":114},[147],{"type":51,"value":148},"your-application-key",{"type":45,"tag":84,"props":150,"children":151},{"style":103},[152],{"type":51,"value":122},{"type":45,"tag":84,"props":154,"children":156},{"class":86,"line":155},3,[157,161,166,170,174,179,183],{"type":45,"tag":84,"props":158,"children":159},{"style":91},[160],{"type":51,"value":94},{"type":45,"tag":84,"props":162,"children":163},{"style":97},[164],{"type":51,"value":165}," DD_SITE",{"type":45,"tag":84,"props":167,"children":168},{"style":103},[169],{"type":51,"value":106},{"type":45,"tag":84,"props":171,"children":172},{"style":103},[173],{"type":51,"value":111},{"type":45,"tag":84,"props":175,"children":176},{"style":114},[177],{"type":51,"value":178},"us5.datadoghq.com",{"type":45,"tag":84,"props":180,"children":181},{"style":103},[182],{"type":51,"value":111},{"type":45,"tag":84,"props":184,"children":186},{"style":185},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[187],{"type":51,"value":188},"  # or datadoghq.com, datadoghq.eu, etc.\n",{"type":45,"tag":54,"props":190,"children":191},{},[192],{"type":45,"tag":193,"props":194,"children":195},"strong",{},[196],{"type":51,"value":197},"Get keys from Datadog:",{"type":45,"tag":199,"props":200,"children":201},"ul",{},[202,208],{"type":45,"tag":203,"props":204,"children":205},"li",{},[206],{"type":51,"value":207},"API Key: Organization Settings → API Keys",{"type":45,"tag":203,"props":209,"children":210},{},[211],{"type":51,"value":212},"App Key: Organization Settings → Application Keys",{"type":45,"tag":54,"props":214,"children":215},{},[216,221],{"type":45,"tag":193,"props":217,"children":218},{},[219],{"type":51,"value":220},"Required scopes",{"type":51,"value":222}," (for read-only access):",{"type":45,"tag":199,"props":224,"children":225},{},[226],{"type":45,"tag":203,"props":227,"children":228},{},[229,235,237,243,244,250,251,257,258,264,265,271,272],{"type":45,"tag":80,"props":230,"children":232},{"className":231},[],[233],{"type":51,"value":234},"dashboards_read",{"type":51,"value":236},", ",{"type":45,"tag":80,"props":238,"children":240},{"className":239},[],[241],{"type":51,"value":242},"monitors_read",{"type":51,"value":236},{"type":45,"tag":80,"props":245,"children":247},{"className":246},[],[248],{"type":51,"value":249},"metrics_read",{"type":51,"value":236},{"type":45,"tag":80,"props":252,"children":254},{"className":253},[],[255],{"type":51,"value":256},"logs_read_data",{"type":51,"value":236},{"type":45,"tag":80,"props":259,"children":261},{"className":260},[],[262],{"type":51,"value":263},"incidents_read",{"type":51,"value":236},{"type":45,"tag":80,"props":266,"children":268},{"className":267},[],[269],{"type":51,"value":270},"hosts_read",{"type":51,"value":236},{"type":45,"tag":80,"props":273,"children":275},{"className":274},[],[276],{"type":51,"value":277},"apm_read",{"type":45,"tag":60,"props":279,"children":281},{"id":280},"quick-start",[282],{"type":51,"value":283},"Quick Start",{"type":45,"tag":72,"props":285,"children":287},{"className":74,"code":286,"language":76,"meta":77,"style":77},"# Test credentials\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts validate\n\n# Search logs\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts search-logs \"status:error\" --from -1h\n\n# Query metrics\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts query-metrics \"avg:system.cpu.user{*}\" --from -4h\n\n# List monitors\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-monitors\n",[288],{"type":45,"tag":80,"props":289,"children":290},{"__ignoreMap":77},[291,299,343,352,361,422,430,439,498,506,515],{"type":45,"tag":84,"props":292,"children":293},{"class":86,"line":87},[294],{"type":45,"tag":84,"props":295,"children":296},{"style":185},[297],{"type":51,"value":298},"# Test credentials\n",{"type":45,"tag":84,"props":300,"children":301},{"class":86,"line":125},[302,308,313,318,323,328,333,338],{"type":45,"tag":84,"props":303,"children":305},{"style":304},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[306],{"type":51,"value":307},"npx",{"type":45,"tag":84,"props":309,"children":310},{"style":114},[311],{"type":51,"value":312}," tsx",{"type":45,"tag":84,"props":314,"children":315},{"style":103},[316],{"type":51,"value":317}," \u003C",{"type":45,"tag":84,"props":319,"children":320},{"style":114},[321],{"type":51,"value":322},"skill-pat",{"type":45,"tag":84,"props":324,"children":325},{"style":97},[326],{"type":51,"value":327},"h",{"type":45,"tag":84,"props":329,"children":330},{"style":103},[331],{"type":51,"value":332},">",{"type":45,"tag":84,"props":334,"children":335},{"style":114},[336],{"type":51,"value":337},"\u002Fscripts\u002Fdatadog.ts",{"type":45,"tag":84,"props":339,"children":340},{"style":114},[341],{"type":51,"value":342}," validate\n",{"type":45,"tag":84,"props":344,"children":345},{"class":86,"line":155},[346],{"type":45,"tag":84,"props":347,"children":349},{"emptyLinePlaceholder":348},true,[350],{"type":51,"value":351},"\n",{"type":45,"tag":84,"props":353,"children":355},{"class":86,"line":354},4,[356],{"type":45,"tag":84,"props":357,"children":358},{"style":185},[359],{"type":51,"value":360},"# Search logs\n",{"type":45,"tag":84,"props":362,"children":364},{"class":86,"line":363},5,[365,369,373,377,381,385,389,393,398,403,408,412,417],{"type":45,"tag":84,"props":366,"children":367},{"style":304},[368],{"type":51,"value":307},{"type":45,"tag":84,"props":370,"children":371},{"style":114},[372],{"type":51,"value":312},{"type":45,"tag":84,"props":374,"children":375},{"style":103},[376],{"type":51,"value":317},{"type":45,"tag":84,"props":378,"children":379},{"style":114},[380],{"type":51,"value":322},{"type":45,"tag":84,"props":382,"children":383},{"style":97},[384],{"type":51,"value":327},{"type":45,"tag":84,"props":386,"children":387},{"style":103},[388],{"type":51,"value":332},{"type":45,"tag":84,"props":390,"children":391},{"style":114},[392],{"type":51,"value":337},{"type":45,"tag":84,"props":394,"children":395},{"style":114},[396],{"type":51,"value":397}," search-logs",{"type":45,"tag":84,"props":399,"children":400},{"style":103},[401],{"type":51,"value":402}," \"",{"type":45,"tag":84,"props":404,"children":405},{"style":114},[406],{"type":51,"value":407},"status:error",{"type":45,"tag":84,"props":409,"children":410},{"style":103},[411],{"type":51,"value":111},{"type":45,"tag":84,"props":413,"children":414},{"style":114},[415],{"type":51,"value":416}," --from",{"type":45,"tag":84,"props":418,"children":419},{"style":114},[420],{"type":51,"value":421}," -1h\n",{"type":45,"tag":84,"props":423,"children":425},{"class":86,"line":424},6,[426],{"type":45,"tag":84,"props":427,"children":428},{"emptyLinePlaceholder":348},[429],{"type":51,"value":351},{"type":45,"tag":84,"props":431,"children":433},{"class":86,"line":432},7,[434],{"type":45,"tag":84,"props":435,"children":436},{"style":185},[437],{"type":51,"value":438},"# Query metrics\n",{"type":45,"tag":84,"props":440,"children":442},{"class":86,"line":441},8,[443,447,451,455,459,463,467,471,476,480,485,489,493],{"type":45,"tag":84,"props":444,"children":445},{"style":304},[446],{"type":51,"value":307},{"type":45,"tag":84,"props":448,"children":449},{"style":114},[450],{"type":51,"value":312},{"type":45,"tag":84,"props":452,"children":453},{"style":103},[454],{"type":51,"value":317},{"type":45,"tag":84,"props":456,"children":457},{"style":114},[458],{"type":51,"value":322},{"type":45,"tag":84,"props":460,"children":461},{"style":97},[462],{"type":51,"value":327},{"type":45,"tag":84,"props":464,"children":465},{"style":103},[466],{"type":51,"value":332},{"type":45,"tag":84,"props":468,"children":469},{"style":114},[470],{"type":51,"value":337},{"type":45,"tag":84,"props":472,"children":473},{"style":114},[474],{"type":51,"value":475}," query-metrics",{"type":45,"tag":84,"props":477,"children":478},{"style":103},[479],{"type":51,"value":402},{"type":45,"tag":84,"props":481,"children":482},{"style":114},[483],{"type":51,"value":484},"avg:system.cpu.user{*}",{"type":45,"tag":84,"props":486,"children":487},{"style":103},[488],{"type":51,"value":111},{"type":45,"tag":84,"props":490,"children":491},{"style":114},[492],{"type":51,"value":416},{"type":45,"tag":84,"props":494,"children":495},{"style":114},[496],{"type":51,"value":497}," -4h\n",{"type":45,"tag":84,"props":499,"children":501},{"class":86,"line":500},9,[502],{"type":45,"tag":84,"props":503,"children":504},{"emptyLinePlaceholder":348},[505],{"type":51,"value":351},{"type":45,"tag":84,"props":507,"children":509},{"class":86,"line":508},10,[510],{"type":45,"tag":84,"props":511,"children":512},{"style":185},[513],{"type":51,"value":514},"# List monitors\n",{"type":45,"tag":84,"props":516,"children":518},{"class":86,"line":517},11,[519,523,527,531,535,539,543,547],{"type":45,"tag":84,"props":520,"children":521},{"style":304},[522],{"type":51,"value":307},{"type":45,"tag":84,"props":524,"children":525},{"style":114},[526],{"type":51,"value":312},{"type":45,"tag":84,"props":528,"children":529},{"style":103},[530],{"type":51,"value":317},{"type":45,"tag":84,"props":532,"children":533},{"style":114},[534],{"type":51,"value":322},{"type":45,"tag":84,"props":536,"children":537},{"style":97},[538],{"type":51,"value":327},{"type":45,"tag":84,"props":540,"children":541},{"style":103},[542],{"type":51,"value":332},{"type":45,"tag":84,"props":544,"children":545},{"style":114},[546],{"type":51,"value":337},{"type":45,"tag":84,"props":548,"children":549},{"style":114},[550],{"type":51,"value":551}," list-monitors\n",{"type":45,"tag":60,"props":553,"children":555},{"id":554},"commands",[556],{"type":51,"value":557},"Commands",{"type":45,"tag":559,"props":560,"children":561},"h3",{"id":19},[562],{"type":51,"value":18},{"type":45,"tag":72,"props":564,"children":566},{"className":74,"code":565,"language":76,"meta":77,"style":77},"# Search logs (default: last hour, 50 results)\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts search-logs \"service:api status:error\"\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts search-logs \"env:prod\" --from -30m --limit 100\n",[567],{"type":45,"tag":80,"props":568,"children":569},{"__ignoreMap":77},[570,578,626],{"type":45,"tag":84,"props":571,"children":572},{"class":86,"line":87},[573],{"type":45,"tag":84,"props":574,"children":575},{"style":185},[576],{"type":51,"value":577},"# Search logs (default: last hour, 50 results)\n",{"type":45,"tag":84,"props":579,"children":580},{"class":86,"line":125},[581,585,589,593,597,601,605,609,613,617,622],{"type":45,"tag":84,"props":582,"children":583},{"style":304},[584],{"type":51,"value":307},{"type":45,"tag":84,"props":586,"children":587},{"style":114},[588],{"type":51,"value":312},{"type":45,"tag":84,"props":590,"children":591},{"style":103},[592],{"type":51,"value":317},{"type":45,"tag":84,"props":594,"children":595},{"style":114},[596],{"type":51,"value":322},{"type":45,"tag":84,"props":598,"children":599},{"style":97},[600],{"type":51,"value":327},{"type":45,"tag":84,"props":602,"children":603},{"style":103},[604],{"type":51,"value":332},{"type":45,"tag":84,"props":606,"children":607},{"style":114},[608],{"type":51,"value":337},{"type":45,"tag":84,"props":610,"children":611},{"style":114},[612],{"type":51,"value":397},{"type":45,"tag":84,"props":614,"children":615},{"style":103},[616],{"type":51,"value":402},{"type":45,"tag":84,"props":618,"children":619},{"style":114},[620],{"type":51,"value":621},"service:api status:error",{"type":45,"tag":84,"props":623,"children":624},{"style":103},[625],{"type":51,"value":122},{"type":45,"tag":84,"props":627,"children":628},{"class":86,"line":155},[629,633,637,641,645,649,653,657,661,665,670,674,678,683,688],{"type":45,"tag":84,"props":630,"children":631},{"style":304},[632],{"type":51,"value":307},{"type":45,"tag":84,"props":634,"children":635},{"style":114},[636],{"type":51,"value":312},{"type":45,"tag":84,"props":638,"children":639},{"style":103},[640],{"type":51,"value":317},{"type":45,"tag":84,"props":642,"children":643},{"style":114},[644],{"type":51,"value":322},{"type":45,"tag":84,"props":646,"children":647},{"style":97},[648],{"type":51,"value":327},{"type":45,"tag":84,"props":650,"children":651},{"style":103},[652],{"type":51,"value":332},{"type":45,"tag":84,"props":654,"children":655},{"style":114},[656],{"type":51,"value":337},{"type":45,"tag":84,"props":658,"children":659},{"style":114},[660],{"type":51,"value":397},{"type":45,"tag":84,"props":662,"children":663},{"style":103},[664],{"type":51,"value":402},{"type":45,"tag":84,"props":666,"children":667},{"style":114},[668],{"type":51,"value":669},"env:prod",{"type":45,"tag":84,"props":671,"children":672},{"style":103},[673],{"type":51,"value":111},{"type":45,"tag":84,"props":675,"children":676},{"style":114},[677],{"type":51,"value":416},{"type":45,"tag":84,"props":679,"children":680},{"style":114},[681],{"type":51,"value":682}," -30m",{"type":45,"tag":84,"props":684,"children":685},{"style":114},[686],{"type":51,"value":687}," --limit",{"type":45,"tag":84,"props":689,"children":691},{"style":690},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[692],{"type":51,"value":693}," 100\n",{"type":45,"tag":559,"props":695,"children":696},{"id":27},[697],{"type":51,"value":26},{"type":45,"tag":72,"props":699,"children":701},{"className":74,"code":700,"language":76,"meta":77,"style":77},"# Query metric timeseries\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts query-metrics \"avg:system.cpu.user{*}\" --from -4h\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts query-metrics \"sum:requests.count{service:api}.as_count()\" --from -1d\n",[702],{"type":45,"tag":80,"props":703,"children":704},{"__ignoreMap":77},[705,713,768],{"type":45,"tag":84,"props":706,"children":707},{"class":86,"line":87},[708],{"type":45,"tag":84,"props":709,"children":710},{"style":185},[711],{"type":51,"value":712},"# Query metric timeseries\n",{"type":45,"tag":84,"props":714,"children":715},{"class":86,"line":125},[716,720,724,728,732,736,740,744,748,752,756,760,764],{"type":45,"tag":84,"props":717,"children":718},{"style":304},[719],{"type":51,"value":307},{"type":45,"tag":84,"props":721,"children":722},{"style":114},[723],{"type":51,"value":312},{"type":45,"tag":84,"props":725,"children":726},{"style":103},[727],{"type":51,"value":317},{"type":45,"tag":84,"props":729,"children":730},{"style":114},[731],{"type":51,"value":322},{"type":45,"tag":84,"props":733,"children":734},{"style":97},[735],{"type":51,"value":327},{"type":45,"tag":84,"props":737,"children":738},{"style":103},[739],{"type":51,"value":332},{"type":45,"tag":84,"props":741,"children":742},{"style":114},[743],{"type":51,"value":337},{"type":45,"tag":84,"props":745,"children":746},{"style":114},[747],{"type":51,"value":475},{"type":45,"tag":84,"props":749,"children":750},{"style":103},[751],{"type":51,"value":402},{"type":45,"tag":84,"props":753,"children":754},{"style":114},[755],{"type":51,"value":484},{"type":45,"tag":84,"props":757,"children":758},{"style":103},[759],{"type":51,"value":111},{"type":45,"tag":84,"props":761,"children":762},{"style":114},[763],{"type":51,"value":416},{"type":45,"tag":84,"props":765,"children":766},{"style":114},[767],{"type":51,"value":497},{"type":45,"tag":84,"props":769,"children":770},{"class":86,"line":155},[771,775,779,783,787,791,795,799,803,807,812,816,820],{"type":45,"tag":84,"props":772,"children":773},{"style":304},[774],{"type":51,"value":307},{"type":45,"tag":84,"props":776,"children":777},{"style":114},[778],{"type":51,"value":312},{"type":45,"tag":84,"props":780,"children":781},{"style":103},[782],{"type":51,"value":317},{"type":45,"tag":84,"props":784,"children":785},{"style":114},[786],{"type":51,"value":322},{"type":45,"tag":84,"props":788,"children":789},{"style":97},[790],{"type":51,"value":327},{"type":45,"tag":84,"props":792,"children":793},{"style":103},[794],{"type":51,"value":332},{"type":45,"tag":84,"props":796,"children":797},{"style":114},[798],{"type":51,"value":337},{"type":45,"tag":84,"props":800,"children":801},{"style":114},[802],{"type":51,"value":475},{"type":45,"tag":84,"props":804,"children":805},{"style":103},[806],{"type":51,"value":402},{"type":45,"tag":84,"props":808,"children":809},{"style":114},[810],{"type":51,"value":811},"sum:requests.count{service:api}.as_count()",{"type":45,"tag":84,"props":813,"children":814},{"style":103},[815],{"type":51,"value":111},{"type":45,"tag":84,"props":817,"children":818},{"style":114},[819],{"type":51,"value":416},{"type":45,"tag":84,"props":821,"children":822},{"style":114},[823],{"type":51,"value":824}," -1d\n",{"type":45,"tag":559,"props":826,"children":828},{"id":827},"monitors",[829],{"type":51,"value":830},"Monitors",{"type":45,"tag":72,"props":832,"children":834},{"className":74,"code":833,"language":76,"meta":77,"style":77},"# List all monitors\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-monitors\n\n# Filter monitors\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-monitors --query \"status:alert\"\n\n# Get specific monitor\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts get-monitor 12345\n",[835],{"type":45,"tag":80,"props":836,"children":837},{"__ignoreMap":77},[838,846,881,888,896,950,957,965],{"type":45,"tag":84,"props":839,"children":840},{"class":86,"line":87},[841],{"type":45,"tag":84,"props":842,"children":843},{"style":185},[844],{"type":51,"value":845},"# List all monitors\n",{"type":45,"tag":84,"props":847,"children":848},{"class":86,"line":125},[849,853,857,861,865,869,873,877],{"type":45,"tag":84,"props":850,"children":851},{"style":304},[852],{"type":51,"value":307},{"type":45,"tag":84,"props":854,"children":855},{"style":114},[856],{"type":51,"value":312},{"type":45,"tag":84,"props":858,"children":859},{"style":103},[860],{"type":51,"value":317},{"type":45,"tag":84,"props":862,"children":863},{"style":114},[864],{"type":51,"value":322},{"type":45,"tag":84,"props":866,"children":867},{"style":97},[868],{"type":51,"value":327},{"type":45,"tag":84,"props":870,"children":871},{"style":103},[872],{"type":51,"value":332},{"type":45,"tag":84,"props":874,"children":875},{"style":114},[876],{"type":51,"value":337},{"type":45,"tag":84,"props":878,"children":879},{"style":114},[880],{"type":51,"value":551},{"type":45,"tag":84,"props":882,"children":883},{"class":86,"line":155},[884],{"type":45,"tag":84,"props":885,"children":886},{"emptyLinePlaceholder":348},[887],{"type":51,"value":351},{"type":45,"tag":84,"props":889,"children":890},{"class":86,"line":354},[891],{"type":45,"tag":84,"props":892,"children":893},{"style":185},[894],{"type":51,"value":895},"# Filter monitors\n",{"type":45,"tag":84,"props":897,"children":898},{"class":86,"line":363},[899,903,907,911,915,919,923,927,932,937,941,946],{"type":45,"tag":84,"props":900,"children":901},{"style":304},[902],{"type":51,"value":307},{"type":45,"tag":84,"props":904,"children":905},{"style":114},[906],{"type":51,"value":312},{"type":45,"tag":84,"props":908,"children":909},{"style":103},[910],{"type":51,"value":317},{"type":45,"tag":84,"props":912,"children":913},{"style":114},[914],{"type":51,"value":322},{"type":45,"tag":84,"props":916,"children":917},{"style":97},[918],{"type":51,"value":327},{"type":45,"tag":84,"props":920,"children":921},{"style":103},[922],{"type":51,"value":332},{"type":45,"tag":84,"props":924,"children":925},{"style":114},[926],{"type":51,"value":337},{"type":45,"tag":84,"props":928,"children":929},{"style":114},[930],{"type":51,"value":931}," list-monitors",{"type":45,"tag":84,"props":933,"children":934},{"style":114},[935],{"type":51,"value":936}," --query",{"type":45,"tag":84,"props":938,"children":939},{"style":103},[940],{"type":51,"value":402},{"type":45,"tag":84,"props":942,"children":943},{"style":114},[944],{"type":51,"value":945},"status:alert",{"type":45,"tag":84,"props":947,"children":948},{"style":103},[949],{"type":51,"value":122},{"type":45,"tag":84,"props":951,"children":952},{"class":86,"line":424},[953],{"type":45,"tag":84,"props":954,"children":955},{"emptyLinePlaceholder":348},[956],{"type":51,"value":351},{"type":45,"tag":84,"props":958,"children":959},{"class":86,"line":432},[960],{"type":45,"tag":84,"props":961,"children":962},{"style":185},[963],{"type":51,"value":964},"# Get specific monitor\n",{"type":45,"tag":84,"props":966,"children":967},{"class":86,"line":441},[968,972,976,980,984,988,992,996,1001],{"type":45,"tag":84,"props":969,"children":970},{"style":304},[971],{"type":51,"value":307},{"type":45,"tag":84,"props":973,"children":974},{"style":114},[975],{"type":51,"value":312},{"type":45,"tag":84,"props":977,"children":978},{"style":103},[979],{"type":51,"value":317},{"type":45,"tag":84,"props":981,"children":982},{"style":114},[983],{"type":51,"value":322},{"type":45,"tag":84,"props":985,"children":986},{"style":97},[987],{"type":51,"value":327},{"type":45,"tag":84,"props":989,"children":990},{"style":103},[991],{"type":51,"value":332},{"type":45,"tag":84,"props":993,"children":994},{"style":114},[995],{"type":51,"value":337},{"type":45,"tag":84,"props":997,"children":998},{"style":114},[999],{"type":51,"value":1000}," get-monitor",{"type":45,"tag":84,"props":1002,"children":1003},{"style":690},[1004],{"type":51,"value":1005}," 12345\n",{"type":45,"tag":559,"props":1007,"children":1009},{"id":1008},"dashboards",[1010],{"type":51,"value":1011},"Dashboards",{"type":45,"tag":72,"props":1013,"children":1015},{"className":74,"code":1014,"language":76,"meta":77,"style":77},"npx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-dashboards\n",[1016],{"type":45,"tag":80,"props":1017,"children":1018},{"__ignoreMap":77},[1019],{"type":45,"tag":84,"props":1020,"children":1021},{"class":86,"line":87},[1022,1026,1030,1034,1038,1042,1046,1050],{"type":45,"tag":84,"props":1023,"children":1024},{"style":304},[1025],{"type":51,"value":307},{"type":45,"tag":84,"props":1027,"children":1028},{"style":114},[1029],{"type":51,"value":312},{"type":45,"tag":84,"props":1031,"children":1032},{"style":103},[1033],{"type":51,"value":317},{"type":45,"tag":84,"props":1035,"children":1036},{"style":114},[1037],{"type":51,"value":322},{"type":45,"tag":84,"props":1039,"children":1040},{"style":97},[1041],{"type":51,"value":327},{"type":45,"tag":84,"props":1043,"children":1044},{"style":103},[1045],{"type":51,"value":332},{"type":45,"tag":84,"props":1047,"children":1048},{"style":114},[1049],{"type":51,"value":337},{"type":45,"tag":84,"props":1051,"children":1052},{"style":114},[1053],{"type":51,"value":1054}," list-dashboards\n",{"type":45,"tag":559,"props":1056,"children":1058},{"id":1057},"hosts",[1059],{"type":51,"value":1060},"Hosts",{"type":45,"tag":72,"props":1062,"children":1064},{"className":74,"code":1063,"language":76,"meta":77,"style":77},"npx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-hosts\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-hosts --filter \"env:production\"\n",[1065],{"type":45,"tag":80,"props":1066,"children":1067},{"__ignoreMap":77},[1068,1104],{"type":45,"tag":84,"props":1069,"children":1070},{"class":86,"line":87},[1071,1075,1079,1083,1087,1091,1095,1099],{"type":45,"tag":84,"props":1072,"children":1073},{"style":304},[1074],{"type":51,"value":307},{"type":45,"tag":84,"props":1076,"children":1077},{"style":114},[1078],{"type":51,"value":312},{"type":45,"tag":84,"props":1080,"children":1081},{"style":103},[1082],{"type":51,"value":317},{"type":45,"tag":84,"props":1084,"children":1085},{"style":114},[1086],{"type":51,"value":322},{"type":45,"tag":84,"props":1088,"children":1089},{"style":97},[1090],{"type":51,"value":327},{"type":45,"tag":84,"props":1092,"children":1093},{"style":103},[1094],{"type":51,"value":332},{"type":45,"tag":84,"props":1096,"children":1097},{"style":114},[1098],{"type":51,"value":337},{"type":45,"tag":84,"props":1100,"children":1101},{"style":114},[1102],{"type":51,"value":1103}," list-hosts\n",{"type":45,"tag":84,"props":1105,"children":1106},{"class":86,"line":125},[1107,1111,1115,1119,1123,1127,1131,1135,1140,1145,1149,1154],{"type":45,"tag":84,"props":1108,"children":1109},{"style":304},[1110],{"type":51,"value":307},{"type":45,"tag":84,"props":1112,"children":1113},{"style":114},[1114],{"type":51,"value":312},{"type":45,"tag":84,"props":1116,"children":1117},{"style":103},[1118],{"type":51,"value":317},{"type":45,"tag":84,"props":1120,"children":1121},{"style":114},[1122],{"type":51,"value":322},{"type":45,"tag":84,"props":1124,"children":1125},{"style":97},[1126],{"type":51,"value":327},{"type":45,"tag":84,"props":1128,"children":1129},{"style":103},[1130],{"type":51,"value":332},{"type":45,"tag":84,"props":1132,"children":1133},{"style":114},[1134],{"type":51,"value":337},{"type":45,"tag":84,"props":1136,"children":1137},{"style":114},[1138],{"type":51,"value":1139}," list-hosts",{"type":45,"tag":84,"props":1141,"children":1142},{"style":114},[1143],{"type":51,"value":1144}," --filter",{"type":45,"tag":84,"props":1146,"children":1147},{"style":103},[1148],{"type":51,"value":402},{"type":45,"tag":84,"props":1150,"children":1151},{"style":114},[1152],{"type":51,"value":1153},"env:production",{"type":45,"tag":84,"props":1155,"children":1156},{"style":103},[1157],{"type":51,"value":122},{"type":45,"tag":559,"props":1159,"children":1161},{"id":1160},"incidents",[1162],{"type":51,"value":1163},"Incidents",{"type":45,"tag":72,"props":1165,"children":1167},{"className":74,"code":1166,"language":76,"meta":77,"style":77},"npx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-incidents\n",[1168],{"type":45,"tag":80,"props":1169,"children":1170},{"__ignoreMap":77},[1171],{"type":45,"tag":84,"props":1172,"children":1173},{"class":86,"line":87},[1174,1178,1182,1186,1190,1194,1198,1202],{"type":45,"tag":84,"props":1175,"children":1176},{"style":304},[1177],{"type":51,"value":307},{"type":45,"tag":84,"props":1179,"children":1180},{"style":114},[1181],{"type":51,"value":312},{"type":45,"tag":84,"props":1183,"children":1184},{"style":103},[1185],{"type":51,"value":317},{"type":45,"tag":84,"props":1187,"children":1188},{"style":114},[1189],{"type":51,"value":322},{"type":45,"tag":84,"props":1191,"children":1192},{"style":97},[1193],{"type":51,"value":327},{"type":45,"tag":84,"props":1195,"children":1196},{"style":103},[1197],{"type":51,"value":332},{"type":45,"tag":84,"props":1199,"children":1200},{"style":114},[1201],{"type":51,"value":337},{"type":45,"tag":84,"props":1203,"children":1204},{"style":114},[1205],{"type":51,"value":1206}," list-incidents\n",{"type":45,"tag":559,"props":1208,"children":1210},{"id":1209},"apm-spans-services",[1211],{"type":51,"value":1212},"APM (Spans & Services)",{"type":45,"tag":72,"props":1214,"children":1216},{"className":74,"code":1215,"language":76,"meta":77,"style":77},"# Search spans\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts search-spans \"service:api @http.status_code:500\" --from -1h\n\n# List services\nnpx tsx \u003Cskill-path>\u002Fscripts\u002Fdatadog.ts list-services\n",[1217],{"type":45,"tag":80,"props":1218,"children":1219},{"__ignoreMap":77},[1220,1228,1285,1292,1300],{"type":45,"tag":84,"props":1221,"children":1222},{"class":86,"line":87},[1223],{"type":45,"tag":84,"props":1224,"children":1225},{"style":185},[1226],{"type":51,"value":1227},"# Search spans\n",{"type":45,"tag":84,"props":1229,"children":1230},{"class":86,"line":125},[1231,1235,1239,1243,1247,1251,1255,1259,1264,1268,1273,1277,1281],{"type":45,"tag":84,"props":1232,"children":1233},{"style":304},[1234],{"type":51,"value":307},{"type":45,"tag":84,"props":1236,"children":1237},{"style":114},[1238],{"type":51,"value":312},{"type":45,"tag":84,"props":1240,"children":1241},{"style":103},[1242],{"type":51,"value":317},{"type":45,"tag":84,"props":1244,"children":1245},{"style":114},[1246],{"type":51,"value":322},{"type":45,"tag":84,"props":1248,"children":1249},{"style":97},[1250],{"type":51,"value":327},{"type":45,"tag":84,"props":1252,"children":1253},{"style":103},[1254],{"type":51,"value":332},{"type":45,"tag":84,"props":1256,"children":1257},{"style":114},[1258],{"type":51,"value":337},{"type":45,"tag":84,"props":1260,"children":1261},{"style":114},[1262],{"type":51,"value":1263}," search-spans",{"type":45,"tag":84,"props":1265,"children":1266},{"style":103},[1267],{"type":51,"value":402},{"type":45,"tag":84,"props":1269,"children":1270},{"style":114},[1271],{"type":51,"value":1272},"service:api @http.status_code:500",{"type":45,"tag":84,"props":1274,"children":1275},{"style":103},[1276],{"type":51,"value":111},{"type":45,"tag":84,"props":1278,"children":1279},{"style":114},[1280],{"type":51,"value":416},{"type":45,"tag":84,"props":1282,"children":1283},{"style":114},[1284],{"type":51,"value":421},{"type":45,"tag":84,"props":1286,"children":1287},{"class":86,"line":155},[1288],{"type":45,"tag":84,"props":1289,"children":1290},{"emptyLinePlaceholder":348},[1291],{"type":51,"value":351},{"type":45,"tag":84,"props":1293,"children":1294},{"class":86,"line":354},[1295],{"type":45,"tag":84,"props":1296,"children":1297},{"style":185},[1298],{"type":51,"value":1299},"# List services\n",{"type":45,"tag":84,"props":1301,"children":1302},{"class":86,"line":363},[1303,1307,1311,1315,1319,1323,1327,1331],{"type":45,"tag":84,"props":1304,"children":1305},{"style":304},[1306],{"type":51,"value":307},{"type":45,"tag":84,"props":1308,"children":1309},{"style":114},[1310],{"type":51,"value":312},{"type":45,"tag":84,"props":1312,"children":1313},{"style":103},[1314],{"type":51,"value":317},{"type":45,"tag":84,"props":1316,"children":1317},{"style":114},[1318],{"type":51,"value":322},{"type":45,"tag":84,"props":1320,"children":1321},{"style":97},[1322],{"type":51,"value":327},{"type":45,"tag":84,"props":1324,"children":1325},{"style":103},[1326],{"type":51,"value":332},{"type":45,"tag":84,"props":1328,"children":1329},{"style":114},[1330],{"type":51,"value":337},{"type":45,"tag":84,"props":1332,"children":1333},{"style":114},[1334],{"type":51,"value":1335}," list-services\n",{"type":45,"tag":60,"props":1337,"children":1339},{"id":1338},"time-formats",[1340],{"type":51,"value":1341},"Time Formats",{"type":45,"tag":54,"props":1343,"children":1344},{},[1345,1347,1353,1355,1361],{"type":51,"value":1346},"The ",{"type":45,"tag":80,"props":1348,"children":1350},{"className":1349},[],[1351],{"type":51,"value":1352},"--from",{"type":51,"value":1354}," and ",{"type":45,"tag":80,"props":1356,"children":1358},{"className":1357},[],[1359],{"type":51,"value":1360},"--to",{"type":51,"value":1362}," flags accept:",{"type":45,"tag":199,"props":1364,"children":1365},{},[1366,1398],{"type":45,"tag":203,"props":1367,"children":1368},{},[1369,1371,1377,1378,1384,1385,1391,1392],{"type":51,"value":1370},"Relative: ",{"type":45,"tag":80,"props":1372,"children":1374},{"className":1373},[],[1375],{"type":51,"value":1376},"-1h",{"type":51,"value":236},{"type":45,"tag":80,"props":1379,"children":1381},{"className":1380},[],[1382],{"type":51,"value":1383},"-30m",{"type":51,"value":236},{"type":45,"tag":80,"props":1386,"children":1388},{"className":1387},[],[1389],{"type":51,"value":1390},"-1d",{"type":51,"value":236},{"type":45,"tag":80,"props":1393,"children":1395},{"className":1394},[],[1396],{"type":51,"value":1397},"-4h",{"type":45,"tag":203,"props":1399,"children":1400},{},[1401,1403],{"type":51,"value":1402},"ISO 8601: ",{"type":45,"tag":80,"props":1404,"children":1406},{"className":1405},[],[1407],{"type":51,"value":1408},"2026-03-20T00:00:00Z",{"type":45,"tag":60,"props":1410,"children":1412},{"id":1411},"datadog-sites",[1413],{"type":51,"value":1414},"Datadog Sites",{"type":45,"tag":1416,"props":1417,"children":1418},"table",{},[1419,1438],{"type":45,"tag":1420,"props":1421,"children":1422},"thead",{},[1423],{"type":45,"tag":1424,"props":1425,"children":1426},"tr",{},[1427,1433],{"type":45,"tag":1428,"props":1429,"children":1430},"th",{},[1431],{"type":51,"value":1432},"Region",{"type":45,"tag":1428,"props":1434,"children":1435},{},[1436],{"type":51,"value":1437},"DD_SITE value",{"type":45,"tag":1439,"props":1440,"children":1441},"tbody",{},[1442,1460,1477,1493,1510],{"type":45,"tag":1424,"props":1443,"children":1444},{},[1445,1451],{"type":45,"tag":1446,"props":1447,"children":1448},"td",{},[1449],{"type":51,"value":1450},"US1",{"type":45,"tag":1446,"props":1452,"children":1453},{},[1454],{"type":45,"tag":80,"props":1455,"children":1457},{"className":1456},[],[1458],{"type":51,"value":1459},"datadoghq.com",{"type":45,"tag":1424,"props":1461,"children":1462},{},[1463,1468],{"type":45,"tag":1446,"props":1464,"children":1465},{},[1466],{"type":51,"value":1467},"US3",{"type":45,"tag":1446,"props":1469,"children":1470},{},[1471],{"type":45,"tag":80,"props":1472,"children":1474},{"className":1473},[],[1475],{"type":51,"value":1476},"us3.datadoghq.com",{"type":45,"tag":1424,"props":1478,"children":1479},{},[1480,1485],{"type":45,"tag":1446,"props":1481,"children":1482},{},[1483],{"type":51,"value":1484},"US5",{"type":45,"tag":1446,"props":1486,"children":1487},{},[1488],{"type":45,"tag":80,"props":1489,"children":1491},{"className":1490},[],[1492],{"type":51,"value":178},{"type":45,"tag":1424,"props":1494,"children":1495},{},[1496,1501],{"type":45,"tag":1446,"props":1497,"children":1498},{},[1499],{"type":51,"value":1500},"EU",{"type":45,"tag":1446,"props":1502,"children":1503},{},[1504],{"type":45,"tag":80,"props":1505,"children":1507},{"className":1506},[],[1508],{"type":51,"value":1509},"datadoghq.eu",{"type":45,"tag":1424,"props":1511,"children":1512},{},[1513,1518],{"type":45,"tag":1446,"props":1514,"children":1515},{},[1516],{"type":51,"value":1517},"AP1",{"type":45,"tag":1446,"props":1519,"children":1520},{},[1521],{"type":45,"tag":80,"props":1522,"children":1524},{"className":1523},[],[1525],{"type":51,"value":1526},"ap1.datadoghq.com",{"type":45,"tag":60,"props":1528,"children":1530},{"id":1529},"troubleshooting",[1531],{"type":51,"value":1532},"Troubleshooting",{"type":45,"tag":54,"props":1534,"children":1535},{},[1536],{"type":45,"tag":193,"props":1537,"children":1538},{},[1539],{"type":51,"value":1540},"403 Forbidden:",{"type":45,"tag":199,"props":1542,"children":1543},{},[1544,1549,1554],{"type":45,"tag":203,"props":1545,"children":1546},{},[1547],{"type":51,"value":1548},"Check DD_SITE matches your Datadog region",{"type":45,"tag":203,"props":1550,"children":1551},{},[1552],{"type":51,"value":1553},"Verify app key has required scopes",{"type":45,"tag":203,"props":1555,"children":1556},{},[1557],{"type":51,"value":1558},"Confirm API key is active",{"type":45,"tag":54,"props":1560,"children":1561},{},[1562],{"type":45,"tag":193,"props":1563,"children":1564},{},[1565],{"type":51,"value":1566},"Credentials not found:",{"type":45,"tag":199,"props":1568,"children":1569},{},[1570,1575],{"type":45,"tag":203,"props":1571,"children":1572},{},[1573],{"type":51,"value":1574},"Ensure DD_API_KEY and DD_APP_KEY are exported",{"type":45,"tag":203,"props":1576,"children":1577},{},[1578],{"type":51,"value":1579},"Check for typos in env var names",{"type":45,"tag":1581,"props":1582,"children":1583},"style",{},[1584],{"type":51,"value":1585},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1587,"total":1692},[1588,1604,1621,1640,1655,1663,1673],{"slug":1589,"name":1589,"fn":1590,"description":1591,"org":1592,"tags":1593,"stars":28,"repoUrl":29,"updatedAt":1603},"1password","manage secrets with 1Password CLI","Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading\u002Finjecting\u002Frunning secrets via op.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1594,1597,1600],{"name":1595,"slug":1596,"type":16},"Authentication","authentication",{"name":1598,"slug":1599,"type":16},"CLI","cli",{"name":1601,"slug":1602,"type":16},"Security","security","2026-07-13T06:24:39.504387",{"slug":1605,"name":1605,"fn":1606,"description":1607,"org":1608,"tags":1609,"stars":28,"repoUrl":29,"updatedAt":1620},"agent-slack","automate Slack messaging and workflows","Slack automation CLI — read\u002Fsend\u002Fsearch messages, browse threads and channels, manage channels, download attachments, look up users, and run workflows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1610,1613,1614,1617],{"name":1611,"slug":1612,"type":16},"Automation","automation",{"name":1598,"slug":1599,"type":16},{"name":1615,"slug":1616,"type":16},"Messaging","messaging",{"name":1618,"slug":1619,"type":16},"Slack","slack","2026-07-13T06:23:51.908511",{"slug":1622,"name":1622,"fn":1623,"description":1624,"org":1625,"tags":1626,"stars":28,"repoUrl":29,"updatedAt":1639},"ai-news","fetch and summarize AI news","Fetch and summarize recent AI news from curated RSS feeds (Hugging Face, VentureBeat, The Verge, OpenAI, Anthropic, DeepMind, etc.) and YouTube channels (Yannic Kilcher, Two Minute Papers, AI Explained, etc.). Also fetches full transcripts for specific YouTube videos. Use when the user asks about recent AI news, what's happened in AI lately, summaries of AI research or product announcements, or wants a digest of what's going on in the AI space.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1627,1630,1633,1636],{"name":1628,"slug":1629,"type":16},"Communications","communications",{"name":1631,"slug":1632,"type":16},"LLM","llm",{"name":1634,"slug":1635,"type":16},"Research","research",{"name":1637,"slug":1638,"type":16},"Summarization","summarization","2026-07-13T06:24:20.520223",{"slug":1641,"name":1641,"fn":1642,"description":1643,"org":1644,"tags":1645,"stars":28,"repoUrl":29,"updatedAt":1654},"creating-letta-code-channels","build and debug Letta Code channels","Builds and debugs Letta Code channels, including first-party channel adapters and dynamic user channel plugins under ~\u002F.letta\u002Fchannels. Use when adding Telegram, WhatsApp, Bluesky, Slack, Discord, or custom channel support; testing channel routing, pairing, MessageChannel, runtime dependencies, or channel plugin manifests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1646,1649,1652,1653],{"name":1647,"slug":1648,"type":16},"Agents","agents",{"name":1650,"slug":1651,"type":16},"API Development","api-development",{"name":1615,"slug":1616,"type":16},{"name":1618,"slug":1619,"type":16},"2026-07-13T06:25:55.843495",{"slug":4,"name":4,"fn":5,"description":6,"org":1656,"tags":1657,"stars":28,"repoUrl":29,"updatedAt":30},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1658,1659,1660,1661,1662],{"name":24,"slug":4,"type":16},{"name":18,"slug":19,"type":16},{"name":26,"slug":27,"type":16},{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"slug":1664,"name":1664,"fn":1665,"description":1666,"org":1667,"tags":1668,"stars":28,"repoUrl":29,"updatedAt":1672},"discord","automate Discord server and channel tasks","Discord automation CLI — send\u002Fread\u002Fsearch messages, manage channels and servers, react, create threads, pin messages, and look up users.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1669,1670,1671],{"name":1611,"slug":1612,"type":16},{"name":1598,"slug":1599,"type":16},{"name":1615,"slug":1616,"type":16},"2026-07-13T06:24:26.62387",{"slug":1674,"name":1674,"fn":1675,"description":1676,"org":1677,"tags":1678,"stars":28,"repoUrl":29,"updatedAt":1691},"doc","create and edit Word documents","Use when the task involves reading, creating, or editing `.docx` documents, especially when formatting or layout fidelity matters; prefer `python-docx` plus the bundled `scripts\u002Frender_docx.py` for visual checks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1679,1682,1685,1688],{"name":1680,"slug":1681,"type":16},"Documents","documents",{"name":1683,"slug":1684,"type":16},"DOCX","docx",{"name":1686,"slug":1687,"type":16},"Office","office",{"name":1689,"slug":1690,"type":16},"Word","word","2026-07-13T06:23:44.299568",45,{"items":1694,"total":1849},[1695,1709,1724,1736,1748,1762,1772,1783,1795,1811,1822,1834],{"slug":1696,"name":1696,"fn":1697,"description":1698,"org":1699,"tags":1700,"stars":1706,"repoUrl":1707,"updatedAt":1708},"acquiring-skills","discover and install agent skills","Discover and install skills from Hermes, ClawHub, GitHub, and other registries. Load this skill whenever a user asks for a capability you don't already have — image generation, social media, email, calendar, finance, DevOps, search, browser automation, etc.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1701,1702,1703],{"name":1647,"slug":1648,"type":16},{"name":1611,"slug":1612,"type":16},{"name":1704,"slug":1705,"type":16},"GitHub","github",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:22:58.45767",{"slug":1710,"name":1711,"fn":1712,"description":1713,"org":1714,"tags":1715,"stars":1706,"repoUrl":1707,"updatedAt":1723},"context-doctor","Context Doctor","repair system prompt and memory degradation","Identify and repair degradation in system prompt, external memory, and skills preventing you from following instructions or remembering information as well as you should.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1716,1717,1720],{"name":1647,"slug":1648,"type":16},{"name":1718,"slug":1719,"type":16},"AI Context","ai-context",{"name":1721,"slug":1722,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":1725,"name":1725,"fn":1726,"description":1727,"org":1728,"tags":1729,"stars":1706,"repoUrl":1707,"updatedAt":1735},"converting-mcps-to-skills","connect MCP servers to create skills","Connect to MCP (Model Context Protocol) servers and create skills for repeated use. Load when a user wants to use an MCP server, connect to external tools via MCP, or when they mention MCP, model context protocol, or specific MCP servers.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1730,1731,1732],{"name":1647,"slug":1648,"type":16},{"name":1611,"slug":1612,"type":16},{"name":1733,"slug":1734,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":1737,"name":1737,"fn":1738,"description":1739,"org":1740,"tags":1741,"stars":1706,"repoUrl":1707,"updatedAt":1747},"creating-mods","create and edit Letta Code mods","Creates and edits trusted local Letta Code mods, including tools, slash commands, local-only model providers, lifecycle\u002Fturn events, scoped conversation helpers, panels, and capability-gated behavior. Use when asked to make a mod, add an agent-callable tool, add a slash command, add a local provider\u002Fmodel adapter, transform turns, react to app events, or add lightweight mod UI outside the dedicated \u002Fstatusline flow.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1742,1743,1744],{"name":1647,"slug":1648,"type":16},{"name":1611,"slug":1612,"type":16},{"name":1745,"slug":1746,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":1749,"name":1749,"fn":1750,"description":1751,"org":1752,"tags":1753,"stars":1706,"repoUrl":1707,"updatedAt":1761},"creating-skills","create and update agent skills","Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Letta Code's capabilities with specialized knowledge, workflows, or tool integrations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1754,1755,1758],{"name":1647,"slug":1648,"type":16},{"name":1756,"slug":1757,"type":16},"Documentation","documentation",{"name":1759,"slug":1760,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":1763,"name":1763,"fn":1764,"description":1765,"org":1766,"tags":1767,"stars":1706,"repoUrl":1707,"updatedAt":1771},"customizing-commands","create and manage Letta slash commands","Creates, edits, and enables Letta Code mod-provided slash commands. Use when the user asks to add a custom \u002Fcommand, slash command, command shortcut, scoped conversation-backed command, or command-driven panel behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1768,1769,1770],{"name":1647,"slug":1648,"type":16},{"name":1611,"slug":1612,"type":16},{"name":1598,"slug":1599,"type":16},"2026-07-13T06:23:18.266798",{"slug":1773,"name":1773,"fn":1774,"description":1775,"org":1776,"tags":1777,"stars":1706,"repoUrl":1707,"updatedAt":1782},"customizing-statusline","customize Letta Code statusline mods","Creates, edits, and migrates Letta Code statusline mods. Use when handling the \u002Fstatusline command or continuing work started by \u002Fstatusline.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1778,1779],{"name":1598,"slug":1599,"type":16},{"name":1780,"slug":1781,"type":16},"Engineering","engineering","2026-07-13T06:23:27.465985",{"slug":1784,"name":1784,"fn":1785,"description":1786,"org":1787,"tags":1788,"stars":1706,"repoUrl":1707,"updatedAt":1794},"dispatching-coding-agents","dispatch stateless coding agents","Dispatch stateless coding agents (Claude Code or Codex) via Bash. Use when you're stuck, need a second opinion, or need parallel research on a hard problem. They have no memory — you must provide all context.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1789,1790,1791],{"name":1647,"slug":1648,"type":16},{"name":1745,"slug":1746,"type":16},{"name":1792,"slug":1793,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":1796,"name":1796,"fn":1797,"description":1798,"org":1799,"tags":1800,"stars":1706,"repoUrl":1707,"updatedAt":1810},"editing-letta-code-desktop-preferences","edit Letta Code Desktop preferences","Edits Letta Code Desktop (LCD) preferences by safely reading and updating ~\u002F.letta\u002Fdesktop_preferences.json. Use only when the user asks to change current Desktop\u002FLCD settings such as theme, default working directory, remote access preference, or remote environment name via the preferences JSON.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1801,1804,1807],{"name":1802,"slug":1803,"type":16},"Configuration","configuration",{"name":1805,"slug":1806,"type":16},"Desktop","desktop",{"name":1808,"slug":1809,"type":16},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":1812,"name":1812,"fn":1813,"description":1814,"org":1815,"tags":1816,"stars":1706,"repoUrl":1707,"updatedAt":1821},"finding-agents","locate and manage agents on server","Find other agents on the same server. Use when the user asks about other agents, wants to migrate memory from another agent, or needs to find an agent by name or tags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1817,1818],{"name":1647,"slug":1648,"type":16},{"name":1819,"slug":1820,"type":16},"Management","management","2026-07-16T06:02:17.297841",{"slug":1823,"name":1823,"fn":1824,"description":1825,"org":1826,"tags":1827,"stars":1706,"repoUrl":1707,"updatedAt":1833},"generating-mod-envs","generate Letta mod learning environments","Generates and reviews mod learning env JSON files for Letta Code local mods. Use when asked to teach, learn, or optimize a mod behavior; create, draft, validate, improve, or explain envs for `\u002Fmods learn --env`; or design evaluation scenarios, memory fixtures, requiredResultMarkers, requiredTraceMarkers, negative controls, and candidate diversity hints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1828,1829,1832],{"name":1647,"slug":1648,"type":16},{"name":1830,"slug":1831,"type":16},"AI Infrastructure","ai-infrastructure",{"name":1802,"slug":1803,"type":16},"2026-07-13T06:23:08.838181",{"slug":1835,"name":1835,"fn":1836,"description":1837,"org":1838,"tags":1839,"stars":1706,"repoUrl":1707,"updatedAt":1848},"image-generation","generate images from text prompts","Generate images from text prompts (and optionally edit\u002Fremix input images). Use when the user asks to create, generate, draw, render, or edit an image, illustration, logo, icon, diagram, or photo.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1840,1843,1846],{"name":1841,"slug":1842,"type":16},"Creative","creative",{"name":1844,"slug":1845,"type":16},"Graphics","graphics",{"name":1847,"slug":1835,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69]