DOCA DPDK Bridge
Where to start: This skill assumes DOCA is already installed,
DPDK is already installed, the user has an existing DPDK
application, and they want to add DOCA capabilities to it
in-place (most commonly DOCA Flow for hardware steering)
without migrating the data-plane to DOCA-native APIs. Open
TASKS.md if the user wants to do something
(configure / build / modify / run / test / debug); open
CAPABILITIES.md when the question is what
the bridge can express on this version. If the user has not
installed DOCA yet, route to
doca-setup first. If the user is
starting fresh (no DPDK code yet) and just wants line-rate
packet I/O against DOCA, route to
doca-eth instead — the bridge exists
for the interop case, not the start-fresh case.
Example questions this skill answers well
The CLASSES of DOCA DPDK Bridge 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.
- "I have a DPDK app — how do I add DOCA Flow rules to it
without rewriting the data-plane?" — worked example: "my
packet-processing app already drives mbufs through
rte_eth_*
ports; I want to install DOCA Flow steering rules on those
ports for HW offload". Answered by the bridge-vs-native
selection rule in
CAPABILITIES.md ## Capabilities and modes
- the port-handover workflow in
TASKS.md ## configure step 3.
- "How do I make a DPDK port visible to DOCA?" — worked
example: "I have a DPDK port id from
rte_eth_dev_*; how does
DOCA see it". Answered by the DPDK-port-id ↔ doca_dev
mapping (doca_dpdk_port_probe / doca_dpdk_port_as_dev) in
CAPABILITIES.md ## Capabilities and modes
bridge-objects table + the binding workflow in
TASKS.md ## configure step 4.
- "How do I move packets between DPDK mbufs and DOCA bufs?" —
worked example: "DPDK delivers an
rte_mbuf to my fastpath; I
want a DOCA library to operate on the payload". Answered by
the mbuf ↔ DOCA-buf conversion shape in
CAPABILITIES.md ## Capabilities and modes
- the conversion-step workflow in
TASKS.md ## modify.
- "Is the bridge even installed and is its DPDK compatible
with my DOCA?" — worked example: "
pkg-config --exists doca-dpdk-bridge returns failure on a host that has DPDK
separately installed". Answered by the version-coupling rule
in
CAPABILITIES.md ## Version compatibility
- the cap-check workflow in
TASKS.md ## configure step 1.
- "Should I be using
doca-dpdk-bridge or doca-eth?" —
worked example: "new project; I have not committed to DPDK
yet". Answered by the path-selection table in
CAPABILITIES.md ## Capabilities and modes
bridge-vs-native row + the deferred-verbs note in
TASKS.md ## Deferred task verbs.
- "What does this
DOCA_ERROR_* from a bridge call mean and
which layer caused it?" — worked example: "DOCA_ERROR_NOT_FOUND
on a port-registration call after the DPDK port came up
cleanly". Answered by the bridge overlay on the cross-library
taxonomy in
CAPABILITIES.md ## Error taxonomy
- the layered ladder in
TASKS.md ## debug that escalates to
doca-debug.
Audience
This skill serves external developers who already maintain a
DPDK-based packet-processing application — i.e., users whose
data-plane already drives rte_eth_* ports and rte_mbuf
buffers — and who want to add DOCA capabilities (most
commonly hardware steering via DOCA Flow) by linking the bridge
into the same process. It is not for users starting a fresh
DOCA-native project (route to doca-eth)
and not for users running pure DPDK with no interest in DOCA
(no skill in this bundle applies). It is also not for NVIDIA
developers contributing to DOCA DPDK Bridge itself.
Language scope. DOCA DPDK Bridge ships as a C library with
pkg-config module name doca-dpdk-bridge (the agent must
confirm the spelling against the user's install via
pkg-config --exists doca-dpdk-bridge; some DOCA releases use a
slightly different module name and the agent must not guess).
The shipped samples are written in C. C and C++ consumers are
the canonical case; the worked examples in TASKS.md assume
that path. Other-language consumers (Rust, Go, Python, …)
typically do not use this bridge — DPDK itself is C-shaped, and
a non-C DPDK app is rare; if the user is in that minority, the
skill's contribution is to keep the port-handover, capability,
permission, and error-taxonomy guidance language-neutral and
route them to the public C ABI as the authoritative surface.
When to load this skill
Load this skill when the user is doing hands-on DOCA DPDK Bridge
work, in any language. Concretely:
- The user has an EXISTING DPDK application (their data-plane
already drives
rte_eth_dev_* ports and rte_mbuf buffers),
and they want to layer DOCA on top — adding DOCA Flow rules,
feeding packets into a DOCA accelerator (Compress, AES-GCM, …),
or wiring a DOCA service into the same process.
- The user needs to bind a DPDK port id to a
doca_dev (via
doca_dpdk_port_probe / doca_dpdk_port_as_dev) so DOCA Core
/ DOCA Flow can operate on the same physical port.
- The user needs to convert between DPDK mbufs and DOCA-bufs at
the data-plane boundary, and is asking about the conversion
helpers and their cost.
- The user is debugging a
DOCA_ERROR_* returned from a bridge
call (lifecycle vs. permission vs. capability vs. DPDK-port-not-
registered vs. mbuf-conversion-failed) and the layered DPDK ↔
DOCA stack underneath.
- The user is hitting cross-version pain: their DPDK install and
their DOCA install are not the matched pair the bridge expects.
- The user is asking "native
doca-eth or doca-dpdk-bridge?"
and the agent needs the path-selection rule.
Do not load this skill for general DOCA orientation, install
of DOCA itself, fresh DOCA-native packet I/O (use
doca-eth), flow-rule programming on
its own (use doca-flow), host ↔ DPU
control messaging (use doca-comch),
or RDMA data movement (use doca-rdma).
For DOCA documentation orientation, use
doca-public-knowledge-map.
What this skill provides
This is a thin loader. The body keeps only the orientation
needed to pick the right next file. The substantive bridge-
specific material lives in two companion files:
CAPABILITIES.md — what the DOCA DPDK Bridge can express on
this version: the bridge-vs-native selection rule (when to
use doca-dpdk-bridge vs native doca-eth), the
bridge-object surface (DPDK-port-id ↔ doca_dev mapping, the
doca_dpdk_mempool mbuf ↔ DOCA-buf conversion), the
capability-query surface (the single
doca_dpdk_cap_is_rep_port_supported), the bridge error taxonomy
(mapped onto the cross-library DOCA_ERROR_* set), the
observability surface (DPDK-side counters + DOCA-side PE
events), and the safety policy that gates the matched-pair
DPDK ↔ DOCA version coupling, the EAL-must-be-up
precondition, and DPDK-side privileges.
TASKS.md — step-by-step workflows for the six in-scope
bridge verbs: configure, build, modify, run, test,
debug. Plus a Deferred task verbs block that points
out-of-scope questions at the right next skill, and a
Command appendix of the recurring commands the agent
reaches for.
The skill assumes a host or BlueField where DOCA AND DPDK are
already installed at the standard locations and the user has the
privileges their public install profile expects (typically sudo
or mlnx-group membership for DOCA, plus the DPDK-side
privileges to mount hugepages, bind PCIe ports, and open the
target rte_eth device). It does not cover installing DOCA —
that path goes through doca-setup;
it does not cover installing or learning DPDK itself — that
belongs in upstream DPDK documentation reachable via
doca-public-knowledge-map.
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 DPDK Bridge application source code, in any
language. The verified bridge source code is the bridge
usage inside the shipped C DOCA Flow samples at
/opt/mellanox/doca/samples/doca_flow/ (e.g. flow_common.c,
which calls doca_dpdk_port_probe() / doca_dpdk_port_as_dev()),
plus the canonical reference applications that pair DPDK +
DOCA Flow (see
doca-public-knowledge-map
for the reference-applications index). The agent's job is to
route the user to those files and prescribe a minimum-diff
modification on them via the universal modify-a-sample
workflow in
doca-programming-guide,
layered with the bridge-specific overrides in
TASKS.md ## modify.
- Standalone build manifests (
meson.build,
CMakeLists.txt, Cargo.toml, …) parked inside the skill.
The agent constructs the build manifest in the user's project
directory against the user's installed DOCA + DPDK, where
pkg-config --modversion doca-dpdk-bridge and
pkg-config --modversion libdpdk are the source of truth.
- 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 (existing DPDK app + wants DOCA on top — not fresh).
- For the bridge capability matrix, the bridge-vs-native
selection rule, port-handover surface, capability-query rules,
error taxonomy, observability, and safety policy, see
CAPABILITIES.md.
- For step-by-step workflows — configure, build, modify, run,
test, debug — see TASKS.md.
Both companion files cross-link to each other,
doca-version for the canonical
DOCA version-handling rules,
doca-eth for the start-fresh path that
is the bridge's deliberate alternative,
doca-flow for the steering library
that is the most common reason to use this bridge in the first
place, and
doca-public-knowledge-map
whenever the right answer is "look it up in the public docs or
the installed package layout" rather than "bridge-specific
guidance".
Related skills
doca-public-knowledge-map —
the routing table for every public DOCA documentation source
and the on-disk layout of an installed DOCA package. The
bridge URL slug is DOCA-DPDK-Bridge. Reference applications
that pair DPDK + DOCA Flow (the canonical adopters of this
bridge) are reachable from the same map's reference-
applications index.
doca-setup — env preparation,
install verification, hugepage mounts (DPDK requirement),
port-state checks (devlink dev show, ip link), permission
and group-membership requirements for opening a doca_dev
AND for binding PCIe ports under DPDK. This skill assumes its
preconditions are satisfied.
doca-version — canonical
DOCA version-handling rules. This skill's ## Version compatibility cross-links the four-way match rule and adds
only the bridge-specific overlay (DPDK ↔ DOCA matched-pair
coupling).
doca-structured-tools-contract —
the bundle's structured-tools precedence rule (detect / prefer
/ fall back / report). The Command appendix in
TASKS.md honors this contract.
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
universal lifecycle, the cross-library DOCA_ERROR_*
taxonomy, and the program-side debug order. This skill layers
bridge specifics on top.
doca-eth — the alternative path
for users starting fresh: pure DOCA-native queue I/O via
doca_eth_rxq / doca_eth_txq with no DPDK in the picture.
The bridge exists because migrating an existing DPDK app to
doca-eth is often the wrong tradeoff; for a new project
with no DPDK lock-in, doca-eth is the right choice.
doca-flow — the steering library
that is the most common reason a DPDK app reaches for this
bridge. The bridge binds a DPDK port id to a doca_dev;
DOCA Flow programs steering rules onto that doca_dev. The two
libraries are designed to compose.
doca-debug — the cross-cutting
debug ladder (install / version / build / link / runtime /
program / driver). Bridge-specific debug (DPDK ↔ DOCA version
drift, port-not-registered symptoms, mbuf-conversion failures)
overlays on top of that ladder.
1---2name: doca-dpdk-bridge3description: Use this skill when the user has an existing DPDK application and is adding DOCA capabilities in-place — most commonly DOCA Flow hardware steering — without rewriting the data-plane in DOCA-native form: binding a DPDK port id to a `doca_dev` (`doca_dpdk_port_probe` / `doca_dpdk_port_as_dev`), converting `rte_mbuf` ↔ `doca_buf`, querying `doca_dpdk_cap_is_rep_port_supported`, or debugging `DOCA_ERROR_*` from a bridge call. Trigger even without "DOCA DPDK Bridge": "how do I add DOCA Flow to my DPDK app", "make a DPDK port visible to DOCA", "the bridge loads but every operation returns errors", "pkg-config --exists doca-dpdk-bridge fails", or "DOCA_ERROR_NOT_FOUND on port registration". Route elsewhere for fresh DOCA-native packet I/O (doca-eth), flow-rule programming (doca-flow), DOCA or DPDK install (doca-setup), or RDMA data movement (doca-rdma).4license: Apache-2.05---67# DOCA DPDK Bridge89**Where to start:** This skill assumes DOCA is already installed,10DPDK is already installed, the user has an **existing DPDK11application**, and they want to **add DOCA capabilities to it12in-place** (most commonly DOCA Flow for hardware steering)13without migrating the data-plane to DOCA-native APIs. Open14[`TASKS.md`](TASKS.md) if the user wants to *do* something15(configure / build / modify / run / test / debug); open16[`CAPABILITIES.md`](CAPABILITIES.md) when the question is *what17the bridge can express* on this version. If the user has not18installed DOCA yet, route to19[`doca-setup`](../../doca-setup/SKILL.md) first. If the user is20**starting fresh** (no DPDK code yet) and just wants line-rate21packet I/O against DOCA, route to22[`doca-eth`](../doca-eth/SKILL.md) instead — the bridge exists23for the interop case, not the start-fresh case.2425## Example questions this skill answers well2627The CLASSES of DOCA DPDK Bridge questions this skill is built to28answer, each with one worked example. The agent should treat the29*class* as the load-bearing piece — the worked example is a30single instance.3132- **"I have a DPDK app — how do I add DOCA Flow rules to it33 without rewriting the data-plane?"** — worked example: *"my34 packet-processing app already drives mbufs through `rte_eth_*`35 ports; I want to install DOCA Flow steering rules on those36 ports for HW offload"*. Answered by the bridge-vs-native37 selection rule in38 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)39 + the port-handover workflow in40 [`TASKS.md ## configure`](TASKS.md#configure) step 3.41- **"How do I make a DPDK port visible to DOCA?"** — worked42 example: *"I have a DPDK port id from `rte_eth_dev_*`; how does43 DOCA see it"*. Answered by the DPDK-port-id ↔ `doca_dev`44 mapping (`doca_dpdk_port_probe` / `doca_dpdk_port_as_dev`) in45 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)46 bridge-objects table + the binding workflow in47 [`TASKS.md ## configure`](TASKS.md#configure) step 4.48- **"How do I move packets between DPDK mbufs and DOCA bufs?"** —49 worked example: *"DPDK delivers an `rte_mbuf` to my fastpath; I50 want a DOCA library to operate on the payload"*. Answered by51 the mbuf ↔ DOCA-buf conversion shape in52 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)53 + the conversion-step workflow in54 [`TASKS.md ## modify`](TASKS.md#modify).55- **"Is the bridge even installed and is its DPDK compatible56 with my DOCA?"** — worked example: *"`pkg-config --exists57 doca-dpdk-bridge` returns failure on a host that has DPDK58 separately installed"*. Answered by the version-coupling rule59 in60 [`CAPABILITIES.md ## Version compatibility`](CAPABILITIES.md#version-compatibility)61 + the cap-check workflow in62 [`TASKS.md ## configure`](TASKS.md#configure) step 1.63- **"Should I be using `doca-dpdk-bridge` or `doca-eth`?"** —64 worked example: *"new project; I have not committed to DPDK65 yet"*. Answered by the path-selection table in66 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)67 bridge-vs-native row + the deferred-verbs note in68 [`TASKS.md ## Deferred task verbs`](TASKS.md#deferred-task-verbs).69- **"What does this `DOCA_ERROR_*` from a bridge call mean and70 which layer caused it?"** — worked example: *"`DOCA_ERROR_NOT_FOUND`71 on a port-registration call after the DPDK port came up72 cleanly"*. Answered by the bridge overlay on the cross-library73 taxonomy in74 [`CAPABILITIES.md ## Error taxonomy`](CAPABILITIES.md#error-taxonomy)75 + the layered ladder in76 [`TASKS.md ## debug`](TASKS.md#debug) that escalates to77 [`doca-debug`](../../doca-debug/SKILL.md).7879## Audience8081This skill serves **external developers who already maintain a82DPDK-based packet-processing application** — i.e., users whose83data-plane already drives `rte_eth_*` ports and `rte_mbuf`84buffers — and who want to **add DOCA capabilities** (most85commonly hardware steering via DOCA Flow) by linking the bridge86into the same process. It is *not* for users starting a fresh87DOCA-native project (route to [`doca-eth`](../doca-eth/SKILL.md))88and *not* for users running pure DPDK with no interest in DOCA89(no skill in this bundle applies). It is also not for NVIDIA90developers contributing to DOCA DPDK Bridge itself.9192**Language scope.** DOCA DPDK Bridge ships as a C library with93`pkg-config` module name `doca-dpdk-bridge` (the agent must94confirm the spelling against the user's install via95`pkg-config --exists doca-dpdk-bridge`; some DOCA releases use a96slightly different module name and the agent must not guess).97The shipped samples are written in C. C and C++ consumers are98the canonical case; the worked examples in `TASKS.md` assume99that path. Other-language consumers (Rust, Go, Python, …)100typically do not use this bridge — DPDK itself is C-shaped, and101a non-C DPDK app is rare; if the user is in that minority, the102skill's contribution is to keep the port-handover, capability,103permission, and error-taxonomy guidance language-neutral and104route them to the public C ABI as the authoritative surface.105106## When to load this skill107108Load this skill when the user is doing hands-on DOCA DPDK Bridge109work, in any language. Concretely:110111- The user has an EXISTING DPDK application (their data-plane112 already drives `rte_eth_dev_*` ports and `rte_mbuf` buffers),113 and they want to layer DOCA on top — adding DOCA Flow rules,114 feeding packets into a DOCA accelerator (Compress, AES-GCM, …),115 or wiring a DOCA service into the same process.116- The user needs to bind a DPDK port id to a `doca_dev` (via117 `doca_dpdk_port_probe` / `doca_dpdk_port_as_dev`) so DOCA Core118 / DOCA Flow can operate on the same physical port.119- The user needs to convert between DPDK mbufs and DOCA-bufs at120 the data-plane boundary, and is asking about the conversion121 helpers and their cost.122- The user is debugging a `DOCA_ERROR_*` returned from a bridge123 call (lifecycle vs. permission vs. capability vs. DPDK-port-not-124 registered vs. mbuf-conversion-failed) and the layered DPDK ↔125 DOCA stack underneath.126- The user is hitting cross-version pain: their DPDK install and127 their DOCA install are not the matched pair the bridge expects.128- The user is asking *"native `doca-eth` or `doca-dpdk-bridge`?"*129 and the agent needs the path-selection rule.130131Do **not** load this skill for general DOCA orientation, install132of DOCA itself, fresh DOCA-native packet I/O (use133[`doca-eth`](../doca-eth/SKILL.md)), flow-rule programming on134its own (use [`doca-flow`](../doca-flow/SKILL.md)), host ↔ DPU135control messaging (use [`doca-comch`](../doca-comch/SKILL.md)),136or RDMA data movement (use [`doca-rdma`](../doca-rdma/SKILL.md)).137For DOCA documentation orientation, use138[`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md).139140## What this skill provides141142This is a **thin loader**. The body keeps only the orientation143needed to pick the right next file. The substantive bridge-144specific material lives in two companion files:145146- `CAPABILITIES.md` — what the DOCA DPDK Bridge can express on147 this version: the bridge-vs-native selection rule (when to148 use `doca-dpdk-bridge` vs native `doca-eth`), the149 bridge-object surface (DPDK-port-id ↔ `doca_dev` mapping, the150 `doca_dpdk_mempool` mbuf ↔ DOCA-buf conversion), the151 capability-query surface (the single152 `doca_dpdk_cap_is_rep_port_supported`), the bridge error taxonomy153 (mapped onto the cross-library `DOCA_ERROR_*` set), the154 observability surface (DPDK-side counters + DOCA-side PE155 events), and the safety policy that gates the matched-pair156 DPDK ↔ DOCA version coupling, the EAL-must-be-up157 precondition, and DPDK-side privileges.158- `TASKS.md` — step-by-step workflows for the six in-scope159 bridge verbs: `configure`, `build`, `modify`, `run`, `test`,160 `debug`. Plus a `Deferred task verbs` block that points161 out-of-scope questions at the right next skill, and a162 `Command appendix` of the recurring commands the agent163 reaches for.164165The skill assumes a host or BlueField where DOCA AND DPDK are166already installed at the standard locations and the user has the167privileges their public install profile expects (typically sudo168or `mlnx`-group membership for DOCA, plus the DPDK-side169privileges to mount hugepages, bind PCIe ports, and open the170target `rte_eth` device). It does not cover installing DOCA —171that path goes through [`doca-setup`](../../doca-setup/SKILL.md);172it does not cover installing or learning DPDK itself — that173belongs in upstream DPDK documentation reachable via174[`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md).175176## What this skill deliberately does not ship177178This skill is **agent guidance**, not a samples or templates179bundle. To keep the boundary clean, it deliberately does not180contain — and pull requests should not add:181182- **Pre-written DOCA DPDK Bridge application source code, in any183 language.** The verified bridge source code is the bridge184 usage inside the shipped C DOCA Flow samples at185 `/opt/mellanox/doca/samples/doca_flow/` (e.g. `flow_common.c`,186 which calls `doca_dpdk_port_probe()` / `doca_dpdk_port_as_dev()`),187 plus the canonical reference applications that pair DPDK +188 DOCA Flow (see189 [`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md)190 for the reference-applications index). The agent's job is to191 route the user to those files and prescribe a minimum-diff192 modification on them via the universal modify-a-sample193 workflow in194 [`doca-programming-guide`](../../doca-programming-guide/SKILL.md),195 layered with the bridge-specific overrides in196 [`TASKS.md ## modify`](TASKS.md#modify).197- **Standalone build manifests** (`meson.build`,198 `CMakeLists.txt`, `Cargo.toml`, …) parked inside the skill.199 The agent constructs the build manifest *in the user's project200 directory* against the user's installed DOCA + DPDK, where201 `pkg-config --modversion doca-dpdk-bridge` and202 `pkg-config --modversion libdpdk` are the source of truth.203- **A `samples/`, `bindings/`, or `reference/` subtree** of any204 kind. A mock or incomplete artifact in this skill's tree, even205 one labeled "reference", is misleading: users will read it as206 buildable.207208## Loading order2092101. Read this `SKILL.md` first to confirm the user's question is211 in scope (existing DPDK app + wants DOCA on top — not fresh).2122. **For the bridge capability matrix, the bridge-vs-native213 selection rule, port-handover surface, capability-query rules,214 error taxonomy, observability, and safety policy, see215 [CAPABILITIES.md](CAPABILITIES.md).**2163. **For step-by-step workflows — configure, build, modify, run,217 test, debug — see [TASKS.md](TASKS.md).**218219Both companion files cross-link to each other,220[`doca-version`](../../doca-version/SKILL.md) for the canonical221DOCA version-handling rules,222[`doca-eth`](../doca-eth/SKILL.md) for the start-fresh path that223is the bridge's deliberate alternative,224[`doca-flow`](../doca-flow/SKILL.md) for the steering library225that is the most common reason to use this bridge in the first226place, and227[`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md)228whenever the right answer is "look it up in the public docs or229the installed package layout" rather than "bridge-specific230guidance".231232## Related skills233234- [`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md) —235 the routing table for every public DOCA documentation source236 and the on-disk layout of an installed DOCA package. The237 bridge URL slug is `DOCA-DPDK-Bridge`. Reference applications238 that pair DPDK + DOCA Flow (the canonical adopters of this239 bridge) are reachable from the same map's reference-240 applications index.241- [`doca-setup`](../../doca-setup/SKILL.md) — env preparation,242 install verification, hugepage mounts (DPDK requirement),243 port-state checks (`devlink dev show`, `ip link`), permission244 and group-membership requirements for opening a `doca_dev`245 AND for binding PCIe ports under DPDK. This skill assumes its246 preconditions are satisfied.247- [`doca-version`](../../doca-version/SKILL.md) — canonical248 DOCA version-handling rules. This skill's `## Version249 compatibility` cross-links the four-way match rule and adds250 only the bridge-specific overlay (DPDK ↔ DOCA matched-pair251 coupling).252- [`doca-structured-tools-contract`](../../doca-structured-tools-contract/SKILL.md) —253 the bundle's structured-tools precedence rule (detect / prefer254 / fall back / report). The Command appendix in255 [TASKS.md](TASKS.md) honors this contract.256- [`doca-programming-guide`](../../doca-programming-guide/SKILL.md) —257 general DOCA programming patterns shared by every library:258 the canonical `pkg-config` + meson build pattern, the259 universal modify-a-shipped-sample first-app workflow, the260 universal lifecycle, the cross-library `DOCA_ERROR_*`261 taxonomy, and the program-side debug order. This skill layers262 bridge specifics on top.263- [`doca-eth`](../doca-eth/SKILL.md) — the **alternative path**264 for users starting fresh: pure DOCA-native queue I/O via265 `doca_eth_rxq` / `doca_eth_txq` with no DPDK in the picture.266 The bridge exists *because* migrating an existing DPDK app to267 `doca-eth` is often the wrong tradeoff; for a new project268 with no DPDK lock-in, `doca-eth` is the right choice.269- [`doca-flow`](../doca-flow/SKILL.md) — the steering library270 that is the most common reason a DPDK app reaches for this271 bridge. The bridge binds a DPDK port id to a `doca_dev`;272 DOCA Flow programs steering rules onto that `doca_dev`. The two273 libraries are designed to compose.274- [`doca-debug`](../../doca-debug/SKILL.md) — the cross-cutting275 debug ladder (install / version / build / link / runtime /276 program / driver). Bridge-specific debug (DPDK ↔ DOCA version277 drift, port-not-registered symptoms, mbuf-conversion failures)278 overlays on top of that ladder.