From wicked-garden
Translate jargon-heavy crew output into plain language. Input is typically a gate finding, reviewer brief, phase summary, or process plan containing specialist vocab (RED, BLOCK, convergence, blast radius, parallelization_check, CONDITIONAL, BLEND rule, etc.). Output is 2-4 sentences at a grade-8 reading level with no specialist vocab left behind. Use when: "explain this", "in plain English", "what does this mean", "translate for me", "simplify", "dumb this down", or any request to render crew jargon into language a non-practitioner can act on. Also used automatically by the orchestrator when `crew.output_style = paired` or `plain-only` — the skill produces the `**Plain:**` line.
npx claudepluginhub mikeparcewski/wicked-garden --plugin wicked-gardenThis skill uses the workspace's default tool permissions.
Convert crew output to plain language. Grade-8 reading level. No jargon.
Provides Ktor server patterns for routing DSL, plugins (auth, CORS, serialization), Koin DI, WebSockets, services, and testApplication testing.
Conducts multi-source web research with firecrawl and exa MCPs: searches, scrapes pages, synthesizes cited reports. For deep dives, competitive analysis, tech evaluations, or due diligence.
Provides demand forecasting, safety stock optimization, replenishment planning, and promotional lift estimation for multi-location retailers managing 300-800 SKUs.
Convert crew output to plain language. Grade-8 reading level. No jargon.
crew.output_style)The skill supports three modes set by crew.output_style in project config:
| Mode | Behavior |
|---|---|
paired (default) | Keep the original jargon block, append **Plain:** line |
terse | Jargon only — skill is not invoked |
plain-only | Replace jargon entirely with the plain-language version |
When invoked by the orchestrator, it passes the current mode in the prompt.
When invoked directly by a user, default to plain-only.
crew.output_style.Input (jargon):
Gate: code-quality — verdict: CONDITIONAL (score 0.62, min 0.70)
per_reviewer_verdicts:
- senior-engineer: CONDITIONAL — "god function in handler.py:process()"
- security-engineer: APPROVE
conditions-manifest.json written with 1 condition.
Output:
Gate: code-quality — verdict: CONDITIONAL (score 0.62, min 0.70)
per_reviewer_verdicts:
- senior-engineer: CONDITIONAL — "god function in handler.py:process()"
- security-engineer: APPROVE
conditions-manifest.json written with 1 condition.
**Plain:** One reviewer flagged that `handler.py` has a giant function that
does too much. Security was fine. Split the function into smaller pieces,
then re-run the gate to clear the finding before moving to the next phase.
Input (jargon): same as above.
Output:
One reviewer flagged that `handler.py` has a giant function that does too
much. Security was fine. Split the function into smaller pieces, then re-run
the gate to clear the finding before moving to the next phase.
Project-level configuration lives in the orchestrator config under
crew.output_style:
{
"crew": {
"output_style": "paired"
}
}
Valid values: terse | paired | plain-only. Default: paired.