ada-pre-implementation-audit

Verifies traceability claims against source code before writing implementation plans.

Updated Jul 23, 2026
One-click install
npx skills add https://github.com/wubing7755/Ada --skill ada-pre-implementation-audit-wubing7755
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ada-pre-implementation-audit
Source: https://github.com/wubing7755/Ada/tree/main/skills/software-development/ada-pre-implementation-audit
Command: npx skills add https://github.com/wubing7755/Ada --skill ada-pre-implementation-audit-wubing7755

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Documentation drifts: traceability matrices claim features are "Not Implemented" when code already exists, and plans built on stale docs waste entire phases of work. This Skill audits claimed statuses against actual source and tests before any implementation plan is written. ## Core Features & Use Cases - Claim Verification: Extracts REQs and statuses from SRS or traceability matrices and confirms each against real code and test files with grep/read_file evidence. - Parallel Subagent Audits: Dispatches three parallel auditors covering domain, services, and component layers, then cross-checks their findings in the main context. - Plan Feasibility Review: Independently reviews an existing plan's claimed facts, caller blast radius, test-breakage risk, and CI ordering, returning a feasible / revise / infeasible verdict. - Use Case: Before planning Phase 21, you discover REQ-F-149 is already fully implemented in ToolBar.razor, so the phase is removed and the traceability matrix corrected from 31 to 27 open items. ## Quick Start Ask the agent to verify the traceability claims against the actual code before writing the implementation plan for your next phase.

Frequently Asked Questions about ada-pre-implementation-audit

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I verify a traceability matrix against actual code before planning?

Extract the REQs relevant to the planned scope with their claimed statuses, then confirm each claim with grep or read_file against source and test files. Build a discrepancy table showing what traceability says versus what the code actually contains before writing the plan.

How to audit a large codebase with parallel subagents?

Use delegate_task batch mode with three agents covering independent module clusters such as domain, services, and components. Each agent reads full file paths, notes REQ references and TODOs, and reports test coverage; cross-check all findings in the main context before trusting them.

When should I skip a pre-implementation audit?

Skip it for greenfield projects with no existing code or traceability dependencies, plans that do not reference documented statuses, or when a full project audit was just completed in the same session. Re-auditing immediately is redundant.

Can this review a plan written by another agent for feasibility?

Yes, the post-plan feasibility review mode treats every claimed fact in the plan as a hypothesis and verifies it against source with file:line evidence. It checks caller blast radius, test instantiation patterns, and CI ordering, then returns a feasible, revise, or infeasible verdict.

Why do implementation plans fail when based on documentation?

Traceability matrices are lagging indicators: statuses go stale within days and file lists miss newly added modules. Plans built on them schedule work that is already done or miss real gaps, so claims must be verified against code first.