DOCA Management
Where to start: This skill assumes DOCA is already installed
and the user is doing hands-on management-plane work against
a BlueField / ConnectX device — typically a fleet-management or
orchestration tool that needs to query or modify device-level
state programmatically. Open TASKS.md if the user
wants to do something (install / configure / build / modify /
run / test / debug / use); open CAPABILITIES.md
when the question is what can doca-mgmt express on this version —
the management context model, the raw-command scope ladder, the
sub-domain surfaces (caps-general, cc-global-status, diagnostics-
data, icm-quota), version compatibility, and the safety overlay.
If the user has not installed DOCA yet, route to
doca-setup first.
Example questions this skill answers well
The CLASSES of management-plane questions this skill is built to
answer, each with one worked example. The agent should treat the
class as the load-bearing piece — the worked example is a
single instance.
- "Is
doca-mgmt even the right surface, or do I want
telemetry / bench / caps?" — worked example: "I'm building a
fleet inventory tool — do I use doca-mgmt to query each
BlueField's data-direct capability, or doca-telemetry, or
doca_caps?". Answered by the management-plane vs
observability-plane vs read-only-CLI selection rule in
CAPABILITIES.md ## Capabilities and modes
surface-selection table.
- "How do I stand up a management context on a device (and a
representor)?" — worked example: "open a
doca_mgmt_dev_ctx
on the device, then a doca_mgmt_dev_rep_ctx on a specific
VF representor for caps-general programming". Answered by
the management-context lifecycle in
CAPABILITIES.md ## Capabilities and modes
- the configure walk in
TASKS.md ## configure.
- "How do I query a device capability — say, whether it
supports data-direct?" — worked example: "create a
caps-general handle, call
doca_mgmt_device_caps_general_get
on the representor context, read the data-direct flag".
Answered by the capability-query pattern in
CAPABILITIES.md ## Capabilities and modes
- the test step in
TASKS.md ## test.
- "How do I modify a device-level feature flag safely?" —
worked example: "toggle
data_direct on a representor;
capture pre-state, write, verify, prepare rollback".
Answered by the apply-with-rollback workflow in
TASKS.md ## modify layered on the
bundle-wide hardware-safety meta-policy referenced from
CAPABILITIES.md ## Safety policy.
- "What does the
doca_mgmt_raw_cmd scope mean and which
scope should I use?" — worked example: "I have a vendor-
documented opcode for a DEBUG_READ_ONLY query — what scope
does that need and what is the blast radius?". Answered by
the command-scope ladder in
CAPABILITIES.md ## Capabilities and modes
- the raw-command verb in
TASKS.md ## use.
- "What does this
DOCA_ERROR_* from a doca_mgmt_* call
mean and which layer caused it?" — worked example:
"DOCA_ERROR_IO_FAILED from doca_mgmt_raw_cmd".
Answered by the mgmt overlay on the cross-library taxonomy
in CAPABILITIES.md ## Error taxonomy
Audience
This skill serves external developers building fleet-management,
orchestration, or device-administration tools that programmatically
query and modify BlueField / ConnectX device-level state — i.e.,
users whose code calls doca_mgmt_* (directly in C/C++, or
through FFI/bindings from another language) to inspect device
capabilities, toggle device feature flags, query diagnostics
counters, set ICM quotas, or issue raw firmware-control commands.
The canonical caller is a fleet-management agent that walks every
BlueField in a data center and applies a desired-state diff. This
skill is not for NVIDIA developers contributing to DOCA
Management itself, and it is not the right surface for live
performance benchmarking or stream-based observability — those
belong to doca-bench,
doca-telemetry, and
doca-telemetry-exporter.
Language scope
DOCA Management ships as a C library with the pkg-config module
name doca-mgmt. The library's surface is C; the shipped samples
on a real install (where present) are C. C and C++ consumers are
the canonical case and the workflows in TASKS.md assume that
path. Other-language consumers (Rust, Go, Python, …) consume the
same *.so library through FFI or language-specific bindings;
the skill's contribution in that case is to keep the management-
context lifecycle, the command-scope ladder, the capability-query
pattern, the version-handling rule, and the safety overlay
language-neutral, and to route the agent to the public C ABI as
the authoritative surface that any wrapper will eventually call.
The skill does not author wrappers in any language.
When to load this skill
Load this skill when the user is doing hands-on DOCA Management
work on a host with one or more BlueField / ConnectX devices.
Concretely:
- Standing up a
doca_mgmt_dev_ctx on a doca_dev to inspect
or modify device-level state.
- Standing up a
doca_mgmt_dev_rep_ctx on a doca_dev_rep (or
via doca_mgmt_dev_rep_ctx_create_by_pci_addr when the
representor is not available) to inspect or modify a VF /
function-level configuration.
- Querying a device's general capabilities via
doca_mgmt_device_caps_general_* (data-direct support and
similar device-wide attributes).
- Programming a representor's general capabilities via the same
set path.
- Querying or modifying congestion-control global status via
doca_mgmt_cc_global_status_* (RP / NP protocol type,
priority, enable / disable).
- Modifying or querying multi-domain diagnostics data via
doca_mgmt_diagnostics_data_* against a specific device.
- Setting ICM quota limits per device or per representor via
doca_mgmt_icm_quota_* and reading the current allocation /
max-reached.
- Issuing a
doca_mgmt_raw_cmd against the device's
firmware-control endpoint, choosing the right
enum doca_mgmt_cmd_scope for the operation's blast radius.
- Debugging a
DOCA_ERROR_* returned by a doca_mgmt_* call
and deciding whether the cause is a configuration mistake, a
lifecycle ordering bug, a missing capability on the device,
an fwctl ioctl failure, or a firmware-side rejection.
Do not load this skill for general DOCA orientation, install
of DOCA itself, live performance benchmarking, or stream-based
telemetry. For those, use
doca-public-knowledge-map,
doca-setup,
doca-bench, and
doca-telemetry respectively.
What this skill provides
This is a thin loader. The body keeps only the orientation
needed to pick the right next file. The substantive
management-specific material lives in two companion files:
CAPABILITIES.md — what doca-mgmt can express on this
version: the management-context object model
(doca_mgmt_dev_ctx + doca_mgmt_dev_rep_ctx), the raw-
command scope ladder (DOCA_MGMT_CMD_SCOPE_CONFIGURATION,
DOCA_MGMT_CMD_SCOPE_DEBUG_READ_ONLY,
DOCA_MGMT_CMD_SCOPE_DEBUG_WRITE,
DOCA_MGMT_CMD_SCOPE_DEBUG_WRITE_FULL), the sub-domain
surfaces (caps-general, cc-global-status, diagnostics-data,
icm-quota) with their capability-query gates, the EXPERIMENTAL
symbol-set policy (every public doca_mgmt_* symbol is
tagged EXPERIMENTAL), the mgmt overlay on the cross-library
DOCA_ERROR_* taxonomy, the observability surface (pre-state
capture + post-write re-query), and the per-artifact safety
overlay on the bundle-wide hardware-safety meta-policy.
TASKS.md — step-by-step workflows for the eight in-scope
verbs: install, configure, build, modify, run,
test, debug, use. Plus a Deferred task verbs block
that points out-of-scope questions at the right next skill.
The skill assumes a host or BlueField where DOCA is already
installed at the standard location and the user has the
privileges their public install profile expects (management-
plane operations typically require root or an equivalent
device-administration capability). It does not cover installing
DOCA — that path goes through
doca-setup.
What this skill deliberately does not ship
This skill is agent guidance, not a samples or templates
bundle. To keep the boundary clean, it deliberately does not
contain — and pull requests should not add:
- Pre-written DOCA Management application source code, in any
language. Management-plane code touches device state and a
wrong write can take the device offline; authoring it from
documentation prose, especially against an EXPERIMENTAL
symbol set whose shape can change between releases, is
forbidden by this skill. The agent's job is to route the user
to verified reference code (the shipped DOCA samples on the
installed package set are the canonical worked examples) and
to prescribe a minimum-diff modification via the universal
modify-a-sample workflow in
doca-programming-guide.
- Standalone build manifests parked inside the skill. The
agent constructs the build manifest in the user's project
directory against the user's installed DOCA, where
pkg-config --modversion doca-mgmt is the source of truth.
- Raw-command opcode catalogs. The
doca_mgmt_raw_cmd
in-payload and out-payload are device / firmware specific;
the skill names the scope of a command class and the
discipline the agent applies (pre-state capture, scope
ladder, rollback path) but it does NOT enumerate opcodes —
those are vendor / device documentation and looked up via
doca-public-knowledge-map.
- A
samples/, bindings/, or reference/ subtree of any
kind. A mock or incomplete artifact in this skill's tree,
even one labeled "reference", is misleading: users will read
it as buildable.
Loading order
- Read this
SKILL.md first to confirm the user's question is
in scope.
- For the management-context object model, the raw-command
scope ladder, the sub-domain surfaces, version
compatibility, the error taxonomy, observability, and the
per-artifact safety overlay, see
CAPABILITIES.md.
- For step-by-step workflows — install, configure, build,
modify, run, test, debug, use — see TASKS.md.
Both companion files cross-link to each other and to
doca-public-knowledge-map
whenever the right answer is "look it up in the public docs or
the installed package layout" rather than "mgmt-specific
guidance".
Related skills
doca-hardware-safety —
the bundle-wide hardware-safety meta-policy. Because
doca-mgmt is the surface through which agents most commonly
modify device state programmatically, the safety overlay
in CAPABILITIES.md cross-links the meta-policy
load-bearingly and the agent walks the hardware-safety
ladder whenever a write is recommended.
doca-telemetry and
doca-telemetry-exporter —
the observability surfaces for streaming telemetry from the
device. Use those when the user wants live metrics; use
doca-mgmt when the user wants point-in-time programmatic
query or modification.
doca-caps — the
read-only CLI for inspecting device capabilities. Use the
tool when the user wants an interactive snapshot; use
doca-mgmt when the user wants the same information through
the C API in a fleet tool.
doca-bench — the
live-performance benchmarking tool. Out of scope for
doca-mgmt; the skill names the boundary.
doca-pcc and
doca-pcc-counters —
programmable congestion control. doca-mgmt's
doca_mgmt_cc_global_status_* surface is the global
enable/disable + protocol selection control plane that
layers on the deeper programmable-CC surface owned by
doca-pcc.
doca-public-knowledge-map — the
routing table for every public DOCA documentation source and
the on-disk layout of an installed DOCA package.
doca-setup — env preparation,
install verification, and the I have no install yet path
with the public NGC DOCA container.
doca-programming-guide —
general DOCA programming patterns shared by every library:
the canonical pkg-config + meson build pattern, the
universal modify-a-shipped-sample first-app workflow, the
cross-library DOCA_ERROR_* taxonomy. This skill layers
management-plane specifics on top.
doca-debug — the cross-cutting
debug ladder. Management-specific debug overlays on top of
it.
doca-version — the version
detection / four-way match rule every per-artifact ## Version compatibility anchor builds on. This skill quotes
the management-specific overlay only.
doca-structured-tools-contract —
the JSON-schema contracts for the agent-preferred structured
helpers; the ## Command appendix in TASKS.md defers to
them before falling back to the manual chain.
1---2name: doca-mgmt3description: Use this skill when the user is doing hands-on DOCA Management programming against BlueField / ConnectX devices — standing up a management or representor context (doca_mgmt_dev_ctx / doca_mgmt_dev_rep_ctx), querying device caps (data-direct, caps-general), toggling congestion-control global status, modifying diagnostics-data, setting ICM quotas, or issuing a raw firmware command via doca_mgmt_raw_cmd with the right scope (CONFIGURATION / DEBUG_READ_ONLY / DEBUG_WRITE / DEBUG_WRITE_FULL). Trigger even when the user does not say "DOCA Management" — typical implicit phrasings include "fleet tool that walks every BlueField and reads device state", "toggle data-direct on a VF", "set an ICM quota per representor", "send a raw firmware command from C", "DOCA_ERROR_IO_FAILED from raw_cmd", or "fwctl ioctl is failing". Refuse and route elsewhere for mlxconfig direct operation, BFB / firmware reflash, streaming telemetry, doca_caps CLI snapshots, or DOCA install itself — those belong to other skills.4license: Apache-2.05---67# DOCA Management89**Where to start:** This skill assumes DOCA is already installed10and the user is doing **hands-on management-plane work** against11a BlueField / ConnectX device — typically a fleet-management or12orchestration tool that needs to query or modify device-level13state programmatically. Open [`TASKS.md`](TASKS.md) if the user14wants to *do* something (install / configure / build / modify /15run / test / debug / use); open [`CAPABILITIES.md`](CAPABILITIES.md)16when the question is *what can doca-mgmt express on this version* —17the management context model, the raw-command scope ladder, the18sub-domain surfaces (caps-general, cc-global-status, diagnostics-19data, icm-quota), version compatibility, and the safety overlay.20If the user has not installed DOCA yet, route to21[`doca-setup`](../../doca-setup/SKILL.md) first.2223## Example questions this skill answers well2425The CLASSES of management-plane questions this skill is built to26answer, each with one worked example. The agent should treat the27*class* as the load-bearing piece — the worked example is a28single instance.2930- **"Is `doca-mgmt` even the right surface, or do I want31 telemetry / bench / caps?"** — worked example: *"I'm building a32 fleet inventory tool — do I use doca-mgmt to query each33 BlueField's data-direct capability, or doca-telemetry, or34 doca_caps?"*. Answered by the *management-plane vs35 observability-plane vs read-only-CLI* selection rule in36 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)37 surface-selection table.38- **"How do I stand up a management context on a device (and a39 representor)?"** — worked example: *"open a `doca_mgmt_dev_ctx`40 on the device, then a `doca_mgmt_dev_rep_ctx` on a specific41 VF representor for caps-general programming"*. Answered by42 the management-context lifecycle in43 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)44 + the configure walk in45 [`TASKS.md ## configure`](TASKS.md#configure).46- **"How do I query a device capability — say, whether it47 supports data-direct?"** — worked example: *"create a48 caps-general handle, call `doca_mgmt_device_caps_general_get`49 on the representor context, read the data-direct flag"*.50 Answered by the capability-query pattern in51 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)52 + the test step in [`TASKS.md ## test`](TASKS.md#test).53- **"How do I modify a device-level feature flag safely?"** —54 worked example: *"toggle `data_direct` on a representor;55 capture pre-state, write, verify, prepare rollback"*.56 Answered by the apply-with-rollback workflow in57 [`TASKS.md ## modify`](TASKS.md#modify) layered on the58 bundle-wide hardware-safety meta-policy referenced from59 [`CAPABILITIES.md ## Safety policy`](CAPABILITIES.md#safety-policy).60- **"What does the `doca_mgmt_raw_cmd` scope mean and which61 scope should I use?"** — worked example: *"I have a vendor-62 documented opcode for a `DEBUG_READ_ONLY` query — what scope63 does that need and what is the blast radius?"*. Answered by64 the command-scope ladder in65 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)66 + the raw-command verb in [`TASKS.md ## use`](TASKS.md#use).67- **"What does this `DOCA_ERROR_*` from a `doca_mgmt_*` call68 mean and which layer caused it?"** — worked example:69 *"`DOCA_ERROR_IO_FAILED` from `doca_mgmt_raw_cmd`"*.70 Answered by the mgmt overlay on the cross-library taxonomy71 in [`CAPABILITIES.md ## Error taxonomy`](CAPABILITIES.md#error-taxonomy)72 + the layered ladder in73 [`TASKS.md ## debug`](TASKS.md#debug) that escalates to74 [`doca-debug`](../../doca-debug/SKILL.md) and to75 [`doca-hardware-safety`](../../doca-hardware-safety/SKILL.md)76 when the cause is a device-state change.7778## Audience7980This skill serves **external developers building fleet-management,81orchestration, or device-administration tools that programmatically82query and modify BlueField / ConnectX device-level state** — i.e.,83users whose code calls `doca_mgmt_*` (directly in C/C++, or84through FFI/bindings from another language) to inspect device85capabilities, toggle device feature flags, query diagnostics86counters, set ICM quotas, or issue raw firmware-control commands.87The canonical caller is a fleet-management agent that walks every88BlueField in a data center and applies a desired-state diff. This89skill is *not* for NVIDIA developers contributing to DOCA90Management itself, and it is not the right surface for live91performance benchmarking or stream-based observability — those92belong to [`doca-bench`](../../tools/doca-bench/SKILL.md),93[`doca-telemetry`](../doca-telemetry/SKILL.md), and94[`doca-telemetry-exporter`](../doca-telemetry-exporter/SKILL.md).9596## Language scope9798DOCA Management ships as a C library with the `pkg-config` module99name `doca-mgmt`. The library's surface is C; the shipped samples100on a real install (where present) are C. C and C++ consumers are101the canonical case and the workflows in `TASKS.md` assume that102path. Other-language consumers (Rust, Go, Python, …) consume the103same `*.so` library through FFI or language-specific bindings;104the skill's contribution in that case is to keep the management-105context lifecycle, the command-scope ladder, the capability-query106pattern, the version-handling rule, and the safety overlay107language-neutral, and to route the agent to the public C ABI as108the authoritative surface that any wrapper will eventually call.109The skill does not author wrappers in any language.110111## When to load this skill112113Load this skill when the user is doing **hands-on DOCA Management114work** on a host with one or more BlueField / ConnectX devices.115Concretely:116117- Standing up a `doca_mgmt_dev_ctx` on a `doca_dev` to inspect118 or modify device-level state.119- Standing up a `doca_mgmt_dev_rep_ctx` on a `doca_dev_rep` (or120 via `doca_mgmt_dev_rep_ctx_create_by_pci_addr` when the121 representor is not available) to inspect or modify a VF /122 function-level configuration.123- Querying a device's general capabilities via124 `doca_mgmt_device_caps_general_*` (data-direct support and125 similar device-wide attributes).126- Programming a representor's general capabilities via the same127 `set` path.128- Querying or modifying congestion-control global status via129 `doca_mgmt_cc_global_status_*` (RP / NP protocol type,130 priority, enable / disable).131- Modifying or querying multi-domain diagnostics data via132 `doca_mgmt_diagnostics_data_*` against a specific device.133- Setting ICM quota limits per device or per representor via134 `doca_mgmt_icm_quota_*` and reading the current allocation /135 max-reached.136- Issuing a `doca_mgmt_raw_cmd` against the device's137 firmware-control endpoint, choosing the right138 `enum doca_mgmt_cmd_scope` for the operation's blast radius.139- Debugging a `DOCA_ERROR_*` returned by a `doca_mgmt_*` call140 and deciding whether the cause is a configuration mistake, a141 lifecycle ordering bug, a missing capability on the device,142 an `fwctl` ioctl failure, or a firmware-side rejection.143144Do **not** load this skill for general DOCA orientation, install145of DOCA itself, live performance benchmarking, or stream-based146telemetry. For those, use147[`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md),148[`doca-setup`](../../doca-setup/SKILL.md),149[`doca-bench`](../../tools/doca-bench/SKILL.md), and150[`doca-telemetry`](../doca-telemetry/SKILL.md) respectively.151152## What this skill provides153154This is a **thin loader**. The body keeps only the orientation155needed to pick the right next file. The substantive156management-specific material lives in two companion files:157158- `CAPABILITIES.md` — what doca-mgmt can express on this159 version: the management-context object model160 (`doca_mgmt_dev_ctx` + `doca_mgmt_dev_rep_ctx`), the raw-161 command scope ladder (`DOCA_MGMT_CMD_SCOPE_CONFIGURATION`,162 `DOCA_MGMT_CMD_SCOPE_DEBUG_READ_ONLY`,163 `DOCA_MGMT_CMD_SCOPE_DEBUG_WRITE`,164 `DOCA_MGMT_CMD_SCOPE_DEBUG_WRITE_FULL`), the sub-domain165 surfaces (caps-general, cc-global-status, diagnostics-data,166 icm-quota) with their capability-query gates, the EXPERIMENTAL167 symbol-set policy (every public `doca_mgmt_*` symbol is168 tagged EXPERIMENTAL), the mgmt overlay on the cross-library169 `DOCA_ERROR_*` taxonomy, the observability surface (pre-state170 capture + post-write re-query), and the per-artifact safety171 overlay on the bundle-wide hardware-safety meta-policy.172- `TASKS.md` — step-by-step workflows for the eight in-scope173 verbs: `install`, `configure`, `build`, `modify`, `run`,174 `test`, `debug`, `use`. Plus a `Deferred task verbs` block175 that points out-of-scope questions at the right next skill.176177The skill assumes a host or BlueField where DOCA is already178installed at the standard location and the user has the179privileges their public install profile expects (management-180plane operations typically require root or an equivalent181device-administration capability). It does not cover installing182DOCA — that path goes through183[`doca-setup`](../../doca-setup/SKILL.md).184185## What this skill deliberately does not ship186187This skill is **agent guidance**, not a samples or templates188bundle. To keep the boundary clean, it deliberately does not189contain — and pull requests should not add:190191- **Pre-written DOCA Management application source code, in any192 language.** Management-plane code touches device state and a193 wrong write can take the device offline; authoring it from194 documentation prose, especially against an EXPERIMENTAL195 symbol set whose shape can change between releases, is196 forbidden by this skill. The agent's job is to route the user197 to verified reference code (the shipped DOCA samples on the198 installed package set are the canonical worked examples) and199 to prescribe a minimum-diff modification via the universal200 modify-a-sample workflow in201 [`doca-programming-guide`](../../doca-programming-guide/SKILL.md).202- **Standalone build manifests** parked inside the skill. The203 agent constructs the build manifest *in the user's project204 directory* against the user's installed DOCA, where205 `pkg-config --modversion doca-mgmt` is the source of truth.206- **Raw-command opcode catalogs.** The `doca_mgmt_raw_cmd`207 in-payload and out-payload are device / firmware specific;208 the skill names the *scope* of a command class and the209 *discipline* the agent applies (pre-state capture, scope210 ladder, rollback path) but it does NOT enumerate opcodes —211 those are vendor / device documentation and looked up via212 [`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md).213- **A `samples/`, `bindings/`, or `reference/` subtree** of any214 kind. A mock or incomplete artifact in this skill's tree,215 even one labeled "reference", is misleading: users will read216 it as buildable.217218## Loading order2192201. Read this `SKILL.md` first to confirm the user's question is221 in scope.2222. **For the management-context object model, the raw-command223 scope ladder, the sub-domain surfaces, version224 compatibility, the error taxonomy, observability, and the225 per-artifact safety overlay, see226 [CAPABILITIES.md](CAPABILITIES.md).**2273. **For step-by-step workflows — install, configure, build,228 modify, run, test, debug, use — see [TASKS.md](TASKS.md).**229230Both companion files cross-link to each other and to231[`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md)232whenever the right answer is "look it up in the public docs or233the installed package layout" rather than "mgmt-specific234guidance".235236## Related skills237238- [`doca-hardware-safety`](../../doca-hardware-safety/SKILL.md) —239 the bundle-wide hardware-safety meta-policy. Because240 doca-mgmt is the surface through which agents most commonly241 *modify* device state programmatically, the safety overlay242 in `CAPABILITIES.md` cross-links the meta-policy243 load-bearingly and the agent walks the hardware-safety244 ladder whenever a write is recommended.245- [`doca-telemetry`](../doca-telemetry/SKILL.md) and246 [`doca-telemetry-exporter`](../doca-telemetry-exporter/SKILL.md) —247 the observability surfaces for *streaming* telemetry from the248 device. Use those when the user wants live metrics; use249 doca-mgmt when the user wants point-in-time programmatic250 query or modification.251- [`doca-caps`](../../tools/doca-caps/SKILL.md) — the252 read-only CLI for inspecting device capabilities. Use the253 tool when the user wants an interactive snapshot; use254 doca-mgmt when the user wants the same information through255 the C API in a fleet tool.256- [`doca-bench`](../../tools/doca-bench/SKILL.md) — the257 live-performance benchmarking tool. Out of scope for258 doca-mgmt; the skill names the boundary.259- [`doca-pcc`](../doca-pcc/SKILL.md) and260 [`doca-pcc-counters`](../../tools/doca-pcc-counters/SKILL.md) —261 programmable congestion control. doca-mgmt's262 `doca_mgmt_cc_global_status_*` surface is the *global263 enable/disable + protocol selection* control plane that264 layers on the deeper programmable-CC surface owned by265 doca-pcc.266- [`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md) — the267 routing table for every public DOCA documentation source and268 the on-disk layout of an installed DOCA package.269- [`doca-setup`](../../doca-setup/SKILL.md) — env preparation,270 install verification, and the *I have no install yet* path271 with the public NGC DOCA container.272- [`doca-programming-guide`](../../doca-programming-guide/SKILL.md) —273 general DOCA programming patterns shared by every library:274 the canonical `pkg-config` + meson build pattern, the275 universal modify-a-shipped-sample first-app workflow, the276 cross-library `DOCA_ERROR_*` taxonomy. This skill layers277 management-plane specifics on top.278- [`doca-debug`](../../doca-debug/SKILL.md) — the cross-cutting279 debug ladder. Management-specific debug overlays on top of280 it.281- [`doca-version`](../../doca-version/SKILL.md) — the version282 detection / four-way match rule every per-artifact `##283 Version compatibility` anchor builds on. This skill quotes284 the management-specific overlay only.285- [`doca-structured-tools-contract`](../../doca-structured-tools-contract/SKILL.md) —286 the JSON-schema contracts for the agent-preferred structured287 helpers; the `## Command appendix` in `TASKS.md` defers to288 them before falling back to the manual chain.289