From accelerator
Defines JSON schema, field references, severity emoji prefixes, and finding body format for plan review agents. Ensures consistent outputs across lenses like architecture, security, and code-quality in multi-agent reviews.
npx claudepluginhub atomicinnovation/accelerator --plugin acceleratorThis skill uses the workspace's default tool permissions.
Return your analysis as a JSON code block. Do not include any text before or
Specifies JSON output format for work-item review agents, including schema, field references, severity emoji prefixes, and finding body structure. Used by review orchestratorsβnot invoked directly.
Provides standardized Markdown templates for research, planning, implementation, and review agent outputs. Use when generating or parsing agent responses in autonomous dev workflows.
Performs parallel multi-angle reviews of implementation plans from CEO, engineering, design, and devex perspectives. Merges scorecards, presents consolidated fix checklist for user selection, and applies approved changes.
Share bugs, ideas, or general feedback.
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.
{
"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]."
}
]
}
"architecture", "security",
"test-coverage", "code-quality", "standards", "usability",
"performance", "documentation", "database", "correctness",
"compatibility", "portability", "safety")"critical", "major", "minor", "suggestion""high", "medium", "low"lens field).
Included on each finding so the orchestrator can attribute findings after
merging outputs from multiple agents.Use these actual Unicode emoji characters at the start of each finding body:
π΄ for "critical" severityπ‘ for "major" severityπ΅ for "minor" and "suggestion" severityIMPORTANT: Use the actual Unicode emoji characters shown above (π΄ π‘ π΅), NOT
text shortcodes like :red_circle:, :yellow_circle:, or :blue_circle:. The
output is rendered as markdown, not Slack/Discord, so shortcodes will appear as
literal text.
Each finding body should follow this structure:
[emoji] **[Lens Name]**
[Issue description β 1-2 sentences, standalone context].
**Impact**: [Why this matters].
**Suggestion**: [Concrete fix].
Example:
π΄ **Architecture**
The plan proposes a direct dependency from the API layer to the database schema
with no service abstraction. This couples the presentation layer to the data
model.
**Impact**: Database schema changes will ripple into the API layer, breaking
the dependency rule.
**Suggestion**: Introduce a service layer to mediate between the API handlers
and the data access layer.
Output only the JSON block β do not include additional prose, narrative analysis, or markdown outside the JSON code fence. The orchestrator parses your output as JSON.