Find where an Agent config setting or section is defined in the YAML schemas, and print its schema node, using `dda inv schema.locate`
npx skills add https://github.com/DataDog/datadog-agent --skill locate-config-setting
Locate a Datadog Agent configuration setting or section in the schema source and
print its definition plus the exact file and line where it lives.
Use this whenever you need to answer "where/how is config key X defined?" — its
type, default, env vars, description, or which schema file to edit. It is much
faster and more reliable than grepping the ~20k lines of schema YAML by hand,
because the schema is split across files (core_schema.yaml plus per-section
sub-files referenced via $ref), so a naive grep often points at the wrong file.
dda inv -- schema.locate <setting.path>
<setting.path> is the dotted logical path exactly as a user writes it in
datadog.yaml / system-probe.yaml — e.g. api_key, proxy.https,
apm_config.enabled. (Use -- so invoke treats the path as a positional arg.)
It can also be a pattern: any argument containing a character outside
[A-Za-z0-9_.] (e.g. *, $, [) is matched against *every* full dotted path
in the schema instead of looked up exactly. The pattern is treated as a regular
expression (re.search); if it isn't valid regex it falls back to shell-style
glob (fnmatch). So '*enabled' lists every setting whose path ends with
enabled. Pattern matches are printed as a compact, sorted
[<schema>] <path> -> <file>:<line> list (one line per match) rather than full
node blocks; pass --json for the full {schema, path, file, line, node} array.
| Flag | Effect |
|---|---|
| --target core / --target system-probe | Restrict to one schema (default: search both). |
| --json | Emit a JSON array of {schema, path, file, line, node} instead of human text. Use this when you want to parse the result programmatically. |
node_type, type, default,env_vars, visibility, description, tags.
properties collapsed to thesorted list of immediate child key names (so a big section like apm_config
doesn't dump thousands of lines). Drill into a child to see its full node.
[<schema>] <file>:<line>.log_level), it prints one block perschema, labeled [core] and [system-probe].
apm_config, logs_config) is reported atits $ref: line in pkg/config/schema/yaml/core_schema.yaml — that's where it's
wired in.
apm_config.enabled) is reported inthe sub-file (pkg/config/schema/yaml/apm_config.yaml:<line>) — that's where
its real definition is, and the file you'd edit.
api_key,proxy.https) is reported directly in core_schema.yaml.
pkg/config/schema/yaml/ — no build step oragent binary needed; works straight from a checkout. Line numbers are real.
properties). Array items andpatternProperties internals are out of scope.
# Top-level setting → core_schema.yaml + full node
dda inv -- schema.locate api_key
# Setting inside a split section → resolves into the sub-file
dda inv -- schema.locate apm_config.enabled
# Bare split section → $ref site in core_schema.yaml, child names only
dda inv -- schema.locate apm_config
# Restrict to one schema and get machine-readable output
dda inv -- schema.locate process_config.enabled --target core --json
# Pattern (glob): every setting whose full path ends with 'enabled'
dda inv -- schema.locate '*enabled'
# Pattern (regex): every path containing 'proxy' (a bare word like 'proxy' is an
# exact lookup, so add metacharacters to force a pattern/contains-match)
dda inv -- schema.locate '.*proxy'
tasks/schema/locate.py (registered in tasks/schema/__init__.py).pkg/config/schema/yaml/. To regenerate it, see dda inv schema.generate.create-config-field skill.Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.
Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances
Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.
Build and distribute Expo development clients locally or via TestFlight
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.
Take datadog/locate-config-setting from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
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.