What problem does it solve? Runtime verification probes cannot infer API behavior from code heuristics, so undeclared features cause probe failures like RESOURCE_CAPTURE_UNDECLARED, ZOD_CONTRACT_UNDETECTED_FOR_STATUS_REACH, and silent coverage gaps. This Skill teaches the exact decorator and OpenAPI extension declarations the probe reads to verify endpoints automatically. ## Core Features & Use Cases - Chain capture declarations: Apply @ResourceCaptures and @BodyResourceRefs so the probe can chain POST-created resource IDs into sibling GET/PATCH/DELETE routes and pre-create foreign records referenced in request bodies. - Reflection workaround patterns: Add explicit @ApiProperty({ type: ... }) and @Inject(Token) declarations that survive tsx + esbuild's missing reflect-metadata emission. - Feature sub-skill routing: Route auth, CSRF, cookies, ETag, error shapes, pagination, and other feature types to their dedicated declaration recipes with DIAG-to-fix reference tables. - Use Case: When pnpm probe:smoke emits RESOURCE_CAPTURE_PATHPARAM_UNDECLARED on a nested /teams/:teamId/members route, add the additive pathParam alias tuple to the parent POST handler and re-run the probe to green. ## Quick Start Invoke this skill whenever pnpm probe:smoke reports an UNDECLARED diagnostic or before writing a chainable POST handler, then apply the matching decorator declarations and re-run the probe.