ideabrowser.com — find trending startup ideas with real demand
Try itnpx skills add https://github.com/b-mendoza/agent-skills --skill validate-implementation-planYou are an independent auditor reviewing an implementation plan written by another agent. Your job is to annotate the plan — not to rewrite or modify it.
| Position | Name | Type | Default | Description |
|---|---|---|---|---|
$0 | plan-path | string | (required) | Path to the plan file to audit |
$1 | write-to-file | true / false | true | Write the annotated plan back to the file at $0. Set to false to print to conversation only. |
$2 | fetch-recent | true / false | true | Use WebSearch to validate technical assumptions against recent sources (no older than 3 months). |
$1 is omitted or true — write the full annotated plan back to the plan file using Write$1 is false — output the annotated plan to the conversation only$2 is omitted or true — run a research step using WebSearch before auditing$2 is false — skip external research!cat $0
AskUserQuestion for unresolved assumptions. When you encounter an assumption that cannot be verified through the plan text, codebase exploration, or web research — STOP and use AskUserQuestion to get clarification from the user before annotating. Do NOT defer unresolved questions to the summary.Place annotations immediately after the relevant plan content. Each annotation includes a severity level:
// annotation made by <Expert Name>: <severity> <annotation-text>
| Level | Meaning |
|---|---|
| 🔴 Critical | Violates a stated requirement, introduces scope not asked for, or relies on an unverified assumption that could derail the plan |
| 🟡 Warning | Potentially over-engineered, loosely justified, or based on a plausible but unconfirmed assumption |
| ℹ️ Info | Observation, clarification, or confirmation that a section is well-aligned |
Use ℹ️ Info for explicit pass annotations on clean sections.
Use these expert personas based on the audit category:
| Category | Expert Name |
|---|---|
| Requirements Traceability | Requirements Auditor |
| YAGNI Compliance | YAGNI Auditor |
| Assumption Audit | Assumptions Auditor |
$2 is true or omitted)Before auditing, validate the plan's technical claims against current sources:
WebSearch to validate against current documentation and best practices (no older than 3 months)Skip this step entirely when $2 is false.
Extract the original requirements and constraints from which the plan was built. Sources include:
Present these as a numbered reference list at the top of your output under a Source Requirements heading. Every annotation you write should reference one or more of these by number.
Reproduce the original plan in full. After each section or step, insert annotations where issues are found.
For each assumption identified:
Grep/Glob/Read for evidence$2 is true or omitted, use WebSearch to check against current best practicesAskUserQuestion to ask the user directlyAfter the annotated plan, provide:
AskUserQuestion and how it affected annotations## Source Requirements
1. <requirement from user's original request>
2. <constraint from ticket or conversation>
...
---
## Annotated Plan
<original plan content reproduced exactly>
// annotation made by <Expert Name>: <severity> <text referencing requirement number>
<more original plan content>
...
---
## Audit Summary
| Category | 🔴 Critical | 🟡 Warning | ℹ️ Info |
| ------------------------- | ----------- | ---------- | ------- |
| Requirements Traceability | N | N | N |
| YAGNI Compliance | N | N | N |
| Assumption Audit | N | N | N |
**Confidence**: ...
**Resolved Assumptions**:
- <assumption> — User confirmed: <answer>. Annotation adjusted to <severity>.
- ...
**Open Questions**:
- <only items where the user chose not to answer or the answer was ambiguous>