From memstack
Breaks large tasks into parallel sub-agent prompts for coordinated multi-session execution. Useful when dispatching independent work across multiple Claude Code sessions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/memstack:familiarThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
*Break large tasks into coordinated CC session prompts for parallel execution.*
Break large tasks into coordinated CC session prompts for parallel execution.
When this skill activates, output:
👻 Familiar — Dispatching sub-agents...
Then execute the protocol below.
Read $MEMSTACK_PATH/MEMSTACK.mdUser: "dispatch — build the analytics dashboard, API routes, and database migration"
Familiar activates:
👻 Familiar — Dispatching sub-agents...
Session 1 — Database & Types
Working directory: C:\Projects\AdminStack
Task: Create migration + TypeScript types for analytics...
Session 2 — API Routes
Working directory: C:\Projects\AdminStack
Task: Build /api/analytics endpoints (types from Session 1)...
Session 3 — Frontend Page
Working directory: C:\Projects\AdminStack
Task: Build /analytics dashboard page...
Merge order: Session 1 → Session 2 → Session 3
npx claudepluginhub cwinvestments/memstack --plugin memstackDecomposes large tasks (migrations, multi-issue fixes, big features) into parallel work packages with quality gates. Useful for reducing PR cycle time and avoiding merge conflicts.
Patterns and principles for orchestrating parallel subagent execution: work decomposition (fan-out/fan-in, map-reduce), isolation, result synthesis, and failure handling. Use when a task splits into independent subtasks.
Decomposes specs/PRDs/plans into independent tasks, assigns to builder agents for parallel execution in waves respecting dependencies, then integrates results. For fast multi-file feature implementation.