← ClaudeAtlas

plan-review-output-formatlisted

Output format specification for plan review agents. Defines the JSON schema, field reference, severity emoji prefixes, and finding body format for plan reviews.
atomicinnovation/accelerator · ★ 19 · Code & Development · score 84
Install: claude install-skill atomicinnovation/accelerator
# Plan Review Output Format ## JSON Schema Return your analysis as a JSON code block. Do not include any text before or after the JSON block — the orchestrator will parse this output directly. ```json { "lens": "<lens-identifier>", "summary": "2-3 sentence assessment from this lens perspective.", "strengths": [ "Positive observation about what the plan gets right from this lens perspective" ], "findings": [ { "severity": "critical", "confidence": "high", "lens": "<lens-identifier>", "location": "Phase 2, Section 3: Database Migration", "title": "Brief finding title", "body": "🔴 **<Lens Name>**\n\n[Issue description — 1-2 sentences with enough context to understand standalone].\n\n**Impact**: [Why this matters — 1 sentence].\n\n**Suggestion**: [Concrete fix — 1-2 sentences]." } ] } ``` ## Field Reference - **lens**: Agent lens identifier (e.g., `"architecture"`, `"security"`, `"test-coverage"`, `"code-quality"`, `"standards"`, `"usability"`, `"performance"`, `"documentation"`, `"database"`, `"correctness"`, `"compatibility"`, `"portability"`, `"safety"`) - **summary**: 2-3 sentence assessment from this lens perspective. Reflect the key dimensions from the lens's Core Responsibilities. This is where holistic assessment lives, beyond individual findings. - **strengths**: Positive observations (fed into the review summary — never posted as individual findings) - **findings**: All findings, each referenc