Context and goal
.claude/agents/fbw-scout.md documents the wrong paths for two of the three crates it exists to navigate. Lines 17 and 19 place systems and systems_wasm under fbw-a32nx/src/wasm/systems/. They actually live in fbw-common/src/wasm/systems/ — which is also what core-rs/Cargo.toml uses:
systems = { path = "vendor/aircraft/fbw-common/src/wasm/systems/systems" }
Line 18 (a320_systems in fbw-a32nx/src/wasm/systems/) is correct — that path does exist.
This matters more than a typo: fbw-scout is the designated entry point into the vendored monorepo, precisely so the other agents don't burn context exploring it. A scout with wrong paths sends everyone to directories that do not exist, on the one task it is supposed to be authoritative about.
Proposal
Fix lines 17 and 19. While there, check the rest of the file's paths against the pinned tree rather than assuming only these two drifted.
Acceptance criteria
Phase
Meta / infra (no phase)
Area
docs
Priority
P1 (next)
Estimated effort
S (hours)
FBW touchpoints
core-rs/vendor/aircraft/fbw-common/src/wasm/systems/systems/
core-rs/vendor/aircraft/fbw-common/src/wasm/systems/systems_wasm/
core-rs/vendor/aircraft/fbw-a32nx/src/wasm/systems/a320_systems/
Context and goal
.claude/agents/fbw-scout.mddocuments the wrong paths for two of the three crates it exists to navigate. Lines 17 and 19 placesystemsandsystems_wasmunderfbw-a32nx/src/wasm/systems/. They actually live infbw-common/src/wasm/systems/— which is also whatcore-rs/Cargo.tomluses:Line 18 (
a320_systemsinfbw-a32nx/src/wasm/systems/) is correct — that path does exist.This matters more than a typo:
fbw-scoutis the designated entry point into the vendored monorepo, precisely so the other agents don't burn context exploring it. A scout with wrong paths sends everyone to directories that do not exist, on the one task it is supposed to be authoritative about.Proposal
Fix lines 17 and 19. While there, check the rest of the file's paths against the pinned tree rather than assuming only these two drifted.
Acceptance criteria
systemsandsystems_wasmdocumented underfbw-common/src/wasm/systems/a320_systemsleft as-is (it is correct)Phase
Meta / infra (no phase)
Area
docs
Priority
P1 (next)
Estimated effort
S (hours)
FBW touchpoints