/arn-code-review-plan
This skill should be used when the user says "review plan", "validate plan", "check plan", "sanity check the plan", "verify plan", "review my plan", "audit plan", "is my plan ready", or wants to validate a structured project plan for completeness, correctness, and pattern
$ npx -y skills add AppsVortex/arness --skill arn-code-review-plan --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/arn-code-review-plan
Context preview
The summary Claude sees to decide when to auto-load this skill.
This skill should be used when the user says "review plan", "validate plan", "check plan", "sanity check the plan", "verify plan", "review my plan", "audit plan", "is my plan ready", or wants to validate a structured project plan for completeness, correctness, and pattern
SKILL.md
arn-code-review-plan.SKILL.mdname: arn-code-review-plan
description: >-
This skill should be used when the user says "review plan", "validate plan",
"check plan", "sanity check the plan", "verify plan", "review my plan",
"audit plan", "is my plan ready", or
wants to validate a structured project plan for completeness, correctness,
and pattern compliance before execution. Checks structural completeness,
document quality, dependency graph consistency, codebase reference validity,
and pattern compliance. Offers to fix found issues interactively and can
proceed directly to arn-code-taskify when the plan passes.
version: 1.0.0
Arness Review Plan
Validate and review a structured project plan for completeness, correctness, and pattern compliance before execution. Reports issues with severity classification and actionable fix suggestions, offers interactive remediation, and optionally proceeds to task creation.
Workflow
Step 1: Load the Project
Read the project's CLAUDE.md and look for a `## Arness` section. Extract:
- **Plans directory** — base path where project plans are saved
- **Code patterns** — path to the directory containing stored pattern documentation
- **Template path** — path to the report template set (JSON templates)
**If `## Arness` is not found:** inform the user: "Arness is not configured for this project yet. Run `/arn-planning` to get started — it will set everything up automatically." Do not proceed.
Ask the user for `PROJECT_NAME` if not provided in the conversation.
Read all project files from `<plans-dir>/<PROJECT_NAME>/`:
<plans-dir>/<PROJECT_NAME>/
├── SOURCE_PLAN.md
├── INTRODUCTION.md
├── TASKS.md
├── PROGRESS_TRACKER.json
└── plans/PHASE_*.md
If any critical files are missing (`SOURCE_PLAN.md`, `INTRODUCTION.md`, `TASKS.md`, or any `PHASE_*.md`), report the missing files immediately. Do not attempt to run checks against missing files — instead, note the missing file as an ERROR finding and continue checking the files that do exist.
---
Step 2: Run Structural and Document Checks
Read `${CLAUDE_PLUGIN_ROOT}/skills/arn-code-review-plan/references/validation-checks.md` and execute all generic checks (sections 1-4, 6-8) against the project files.
Classify each finding by severity:
- **ERROR** — Must fix before execution (missing files, broken dependencies, placeholder content)
- **WARNING** — Likely problems that should be addressed (missing patterns, incomplete coverage)
- **INFO** — Suggestions for improvement (optional enhancements)
For each finding, record:
- **Check ID** — the identifier from validation-checks.md (e.g., S001, I010, T015)
- **Severity** — ERROR, WARNING, or INFO
- **Description** — what the check found
- **File** — which project file the finding applies to
- **Location** — line number or section name within the file
- **Suggestion** — an actionable fix description
Suggested fixes must be specific and actionable. Examples:
- "Add 'Scope & Boundaries' section to INTRODUCTION.md after the Dependencies section"
- "Fix dependency: Task 4 references non-existent Task 9 — update to a valid task number"
- "Add report save path directive to Phase 2 Implementation section: `reports/IMPLEMENTATION_REPORT_PHASE_2.json`"
---
Step 3: Verify Against Codebase
Validate that references in the plan actually exist in the codebase:
1. **Codebase References table** — Check that file paths listed in the INTRODUCTION.md "Codebase References" table actually exist on disk (use Glob for each path) 2. **Pattern code examples** — Spot-check 2-3 code pattern examples from INTRODUCTION.md: read the referenced file and confirm the code snippet is real and matches 3. **Test fixtures and helpers** — Verify test fixtures/helpers mentioned in INTRODUCTION.md testing patterns actually exist (use Grep to search for fixture/helper names in test files)
Add findings for any broken references. Suggestions should be specific:
- "Update path `src/old/module.py` to `src/new/module.py` in Codebase References table"
- "Remove stale reference to `conftest.py:db_session` — fixture no longer exists"
- "Code example for 'Service Layer' pattern does not match `src/services/base.py:15-30` — update snippet"
---
Step 4: Check Pattern Compliance (Dynamic)
Read stored pattern docs from the Code patterns path in the `## Arness` config:
- `<code-patterns-dir>/code-patterns.md`
- `<code-patterns-dir>/testing-patterns.md`
- `<code-patterns-dir>/ui-patterns.md` (if it exists)
**Code pattern compliance:** For each pattern documented in `code-patterns.md`:
- Check that phase plans reference or follow this pattern where relevant
- Flag if a phase plan contradicts a documented pattern (e.g., uses a different framework or approach than what's documented)
- Flag if a phase plan introduces patterns not found in the documentation
**Testing pattern compliance:** For each testing pattern in `testing-patterns.md`:
- Verify test cases in phase plans use the documented test framework
- Check that test markers/tags match those defined in the testing patterns
- Check that test cases reference fixtures documented in the testing patterns
- Flag if test cases use markers or fixtures not found in the testing patterns
**UI pattern compliance (if `ui-patterns.md` exists):** For each pattern documented in `ui-patterns.md`:
- Check that frontend tasks reference or follow UI patterns where relevant
- Flag if a phase plan uses a different component library or styling approach than what's documented
- Flag missing accessibility requirements when `ui-patterns.md` documents them
All pattern compliance findings are **WARNING** severity (not ERROR), since pattern compliance is advisory — the patterns may have been intentionally overridden for a specific phase.
Each finding includes a suggestion, e.g.:
- "Phase 2 test cases should use `@pytest.mark.unit` marker per testing patterns"
- "Phase 1 uses Flask-style routing but code-patterns.md documents FastAPI router pattern"
- "Phase 3 uses in
Read more
name: arn-code-review-plan description: >- This skill should be used when the user says "review plan", "validate plan", "check plan", "sanity check the plan", "verify plan", "review my plan", "audit plan", "is my plan ready", or wants to validate a structured project plan for completeness, correctness, and pattern compliance before execution. Checks structural completeness, document quality, dependency graph consistency, codebase reference validity, and pattern compliance. Offers to fix found issues interactively and can proceed directly to arn-code-taskify when the plan passes. version: 1.0.0
Arness Review Plan
Validate and review a structured project plan for completeness, correctness, and pattern compliance before execution. Reports issues with severity classification and actionable fix suggestions, offers interactive remediation, and optionally proceeds to task creation.
Workflow
Step 1: Load the Project
Read the project's CLAUDE.md and look for a `## Arness` section. Extract:
- **Plans directory** — base path where project plans are saved
- **Code patterns** — path to the directory containing stored pattern documentation
- **Template path** — path to the report template set (JSON templates)
**If `## Arness` is not found:** inform the user: "Arness is not configured for this project yet. Run `/arn-planning` to get started — it will set everything up automatically." Do not proceed.
Ask the user for `PROJECT_NAME` if not provided in the conversation.
Read all project files from `<plans-dir>/<PROJECT_NAME>/`:
<plans-dir>/<PROJECT_NAME>/ ├── SOURCE_PLAN.md ├── INTRODUCTION.md ├── TASKS.md ├── PROGRESS_TRACKER.json └── plans/PHASE_*.md
If any critical files are missing (`SOURCE_PLAN.md`, `INTRODUCTION.md`, `TASKS.md`, or any `PHASE_*.md`), report the missing files immediately. Do not attempt to run checks against missing files — instead, note the missing file as an ERROR finding and continue checking the files that do exist.
---
Step 2: Run Structural and Document Checks
Read `${CLAUDE_PLUGIN_ROOT}/skills/arn-code-review-plan/references/validation-checks.md` and execute all generic checks (sections 1-4, 6-8) against the project files.
Classify each finding by severity:
- **ERROR** — Must fix before execution (missing files, broken dependencies, placeholder content)
- **WARNING** — Likely problems that should be addressed (missing patterns, incomplete coverage)
- **INFO** — Suggestions for improvement (optional enhancements)
For each finding, record:
- **Check ID** — the identifier from validation-checks.md (e.g., S001, I010, T015)
- **Severity** — ERROR, WARNING, or INFO
- **Description** — what the check found
- **File** — which project file the finding applies to
- **Location** — line number or section name within the file
- **Suggestion** — an actionable fix description
Suggested fixes must be specific and actionable. Examples:
- "Add 'Scope & Boundaries' section to INTRODUCTION.md after the Dependencies section"
- "Fix dependency: Task 4 references non-existent Task 9 — update to a valid task number"
- "Add report save path directive to Phase 2 Implementation section: `reports/IMPLEMENTATION_REPORT_PHASE_2.json`"
---
Step 3: Verify Against Codebase
Validate that references in the plan actually exist in the codebase:
1. **Codebase References table** — Check that file paths listed in the INTRODUCTION.md "Codebase References" table actually exist on disk (use Glob for each path) 2. **Pattern code examples** — Spot-check 2-3 code pattern examples from INTRODUCTION.md: read the referenced file and confirm the code snippet is real and matches 3. **Test fixtures and helpers** — Verify test fixtures/helpers mentioned in INTRODUCTION.md testing patterns actually exist (use Grep to search for fixture/helper names in test files)
Add findings for any broken references. Suggestions should be specific:
- "Update path `src/old/module.py` to `src/new/module.py` in Codebase References table"
- "Remove stale reference to `conftest.py:db_session` — fixture no longer exists"
- "Code example for 'Service Layer' pattern does not match `src/services/base.py:15-30` — update snippet"
---
Step 4: Check Pattern Compliance (Dynamic)
Read stored pattern docs from the Code patterns path in the `## Arness` config:
- `<code-patterns-dir>/code-patterns.md`
- `<code-patterns-dir>/testing-patterns.md`
- `<code-patterns-dir>/ui-patterns.md` (if it exists)
**Code pattern compliance:** For each pattern documented in `code-patterns.md`:
- Check that phase plans reference or follow this pattern where relevant
- Flag if a phase plan contradicts a documented pattern (e.g., uses a different framework or approach than what's documented)
- Flag if a phase plan introduces patterns not found in the documentation
**Testing pattern compliance:** For each testing pattern in `testing-patterns.md`:
- Verify test cases in phase plans use the documented test framework
- Check that test markers/tags match those defined in the testing patterns
- Check that test cases reference fixtures documented in the testing patterns
- Flag if test cases use markers or fixtures not found in the testing patterns
**UI pattern compliance (if `ui-patterns.md` exists):** For each pattern documented in `ui-patterns.md`:
- Check that frontend tasks reference or follow UI patterns where relevant
- Flag if a phase plan uses a different component library or styling approach than what's documented
- Flag missing accessibility requirements when `ui-patterns.md` documents them
All pattern compliance findings are **WARNING** severity (not ERROR), since pattern compliance is advisory — the patterns may have been intentionally overridden for a specific phase.
Each finding includes a suggestion, e.g.:
- "Phase 2 test cases should use `@pytest.mark.unit` marker per testing patterns"
- "Phase 1 uses Flask-style routing but code-patterns.md documents FastAPI router pattern"
- "Phase 3 uses in
Showing the first part of this file.
Arness — H not required. Structured AI workflows for Claude Code. From first idea to production deploy. Seven entry commands. That's all you need to remember.
Repo: AppsVortex/arness
Other skills on arness.
- /arn-assessing
This skill should be used when the user says "assessing", "arness assessing", "assess", "assess codebase", "technical review", "codebase assessment", "find improvements", "what should I improve", "tech debt review", "pattern compliance check", "codebase health check",
Open skill - /arn-code-assess
This skill should be used when the user says "arness code assess", "arn-code-assess", "assess codebase", "technical review", "codebase assessment", "find improvements", "what should I improve", "tech debt review", "tech debt audit", "pattern compliance check", "codebase health
Open skill - /arn-code-batch-cve-fix
This skill should be used when the user says "fix CVEs", "patch vulnerabilities", "apply security patches", "resolve security advisories", "batch CVE fix", "patch dependencies", "fix security findings", "remediate CVEs", "apply CVE fixes", "batch fix vulnerabilities", "resolve
Open skill - /arn-code-batch-cve-scan
This skill should be used when the user says "scan for CVEs", "CVE scan", "check for vulnerabilities", "find vulnerabilities", "check security advisories", "dependabot triage", "dependabot scan", "scan dependencies for security issues", "audit dependencies", "vulnerability
Open skill - /arn-code-batch-implement
This skill should be used when the user says "batch implement", "implement all", "batch execution", "implement all features", "parallel implement", "implement in parallel", "arness batch implement", "arn-code-batch-implement", "run batch implementation", "implement everything",
Open skill - /arn-code-batch-merge
This skill should be used when the user says "batch merge", "merge batch", "arness batch merge", "arn-code-batch-merge", "merge all PRs", "merge batch PRs", "merge the batch", "merge implemented features", "batch merge PRs", "merge open PRs", "merge all feature PRs", "combine
Open skill

