Lands M2 wave 1 — three pure-Rust modules under crates/mxaccess-rpc with
60 unit tests. Each is a 1:1 port of one .NET reference file:
- ntlm.rs (1137 LoC, 19 tests) — `ManagedNtlmClientContext.cs`. NTLMv2
challenge/response, Type1/Type3 builders, sign() with RC4-sealed checksum
and per-call sequence advance. Manual `Debug` impl that hides credentials;
not Clone (rc4 0.2 cipher state is non-Clone). Pure-Rust crypto via
hmac/md-5/md4/rc4 v0.2/rand v0.8 (rc4 0.2 chosen per design/review.md:78).
- pdu.rs (1573 LoC, 33 tests) — `DceRpcPdu.cs` + auth-trailer types from
`DceRpcAuthentication.cs`. Bind/AlterContext/Auth3/Request/Response/Fault
PDUs, NDR20 transfer syntax, auth_value with 4-byte alignment padding,
preserved-byte fields per CLAUDE.md unknown-bytes rule.
- objref.rs (~470 LoC, 11 tests including a 366-byte captured OBJREF
round-trip) — `ComObjRef.cs`. MEOW signature, OXID/OID/IPID, dual-string
array with printable-ASCII escaping and security-binding boundary.
ComObjRefProvider.cs deferred (windows-rs Win32 wrapper — see F6).
Every wire-byte claim cites src/MxNativeClient/<file>.cs:LINE per
CLAUDE.md "no fabricated protocol behaviour" rule.
Test count delta: 217 → 277 (+60)
Open followups touched: F1–F8 (new — see design/followups.md)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
- design/dependencies.md: per-milestone parallelism map for M2–M6 with
per-phase agent budgets (peak 4 in parallel for M5 framing wave;
7-agent maximum if M2 wave 1 + M5 framing run concurrently).
- design/prompt.md: self-contained /loop driver. Step 0 triages
design/followups.md (auto-resolves items whose preconditions are met,
shelves the rest). Step 3 spawns parallel general-purpose agents per
design/dependencies.md when the active wave has multiple lanes.
Sequential lanes (M4 Session core, M5 client integration) run directly.
Local-commit-only by default; explicit stop conditions; Q7 hasDetailStatus
audit reminder for any new conditional-read codec port.
- design/README.md: index updated to reference prompt.md, followups.md,
dependencies.md, and review.md.
design/followups.md is intentionally not pre-created — prompt.md Step 0
bootstraps it on first /loop run.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>