From wicked-garden
On-demand context assembly over wicked-brain + wicked-garden:search. v6 replaced the v5 push-model orchestrator (deleted in #428) with a pull-model skill — subagents call this skill directly when they need a context briefing rather than having one pushed onto every prompt. Use when: "context briefing", "gather background", "what do we know about", "resume where we left off", "catch me up", "what happened before", "context assembly", "prompt enrichment"
npx claudepluginhub mikeparcewski/wicked-garden --plugin wicked-gardenThis skill uses the workspace's default tool permissions.
Gather relevant context from wicked-brain + wicked-garden:search + domain state when
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.
Gather relevant context from wicked-brain + wicked-garden:search + domain state when a subagent or command asks for it. There is no per-prompt push — the user prompt submit hook no longer runs an orchestrator.
# Brain search — primary knowledge source
wicked-brain:search "your query"
# Brain query — conceptual / "how does X work"
wicked-brain:query "how does the facilitator rubric work"
# Codebase symbol search
/wicked-garden:search:code "symbol or pattern"
/wicked-garden:search:docs "doc or markdown text"
# Pull active crew project state
sh "${CLAUDE_PLUGIN_ROOT}/scripts/_python.sh" "${CLAUDE_PLUGIN_ROOT}/scripts/_run.py" scripts/crew/crew.py find-active --json
| Source | Plugin | Content |
|---|---|---|
| brain | wicked-brain (required) | Code, docs, wiki, memories — FTS5 search |
| search | wicked-garden | Indexed code symbols + docs |
| mem | wicked-garden | Memories, decisions, learnings |
| crew | wicked-garden | Project phase, outcomes, constraints |
| jam | wicked-garden | Brainstorm sessions, perspectives |
wicked-brain:search replaces Grep/Glob/Agent(Explore) for any
open-ended search. Fall back to raw tools only when the brain returns empty.chain_id — see scripts/_session.py::SessionState.active_chain_id.The v5 HOT/FAST/SLOW/SYNTHESIZE tiered orchestrator
(scripts/smaht/v2/orchestrator.py) was deleted in #428. Adapters (brain_adapter,
domain_adapter, events_adapter, etc.) still live under scripts/smaht/adapters/
and can be called directly by subagents as needed. There is no longer a central
router that decides HOT vs FAST vs SLOW — the caller decides by picking which
adapters (or skill calls) to invoke.