honey-superpowers
FeaturedStack Honey onto Superpowers-style workflows (subagent-driven-development, dispatching-parallel-agents, executing-plans) and any orchestration that dispatches fresh subagents. Dispatched subagents run in isolated context and do NOT inherit the session's Honey hook, so they emit full-fat code and verbose reports. Use when you are about to dispatch implementer/reviewer/fixer/parallel subagents: it gives the exact Honey directive to paste into each dispatch prompt, with a worker variant and a reviewer variant, so the levers apply inside the subagents too — where the multiplied cost actually is.
Install
Quality Score: 91/100
Skill Content
Details
- Author
- Green-PT
- Repository
- Green-PT/honey-for-devs
- Created
- 2 months ago
- Last Updated
- 4 days ago
- Language
- JavaScript
- License
- MIT
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
honey-hive
Decide when to delegate to Honey's read-only subagents (hive-scout, hive-reviewer) instead of working inline, so the expensive tokens — large file reads and review passes injected back into the orchestrator's context — come back compressed (Honey Lever 3). Use when a task is search-heavy or review-heavy, spans many files, or you want to keep the orchestrator's context small. Not for trivial one-file work.
dispatching-parallel-agents
Use when facing 2+ INDEPENDENT tasks, failures, or subsystems that can be worked on concurrently without shared state or sequential dependencies — e.g. multiple unrelated test files failing, separate modules to build, or distinct bugs. Triggers when sequential investigation would waste time and each problem domain is self-contained.
subagent-driven-development
Use when executing an implementation plan with mostly-independent tasks in the current session by dispatching a fresh subagent per task with two-stage review (spec compliance, then code quality). Triggers after writing-plans when the user picks the subagent-driven option, or whenever coordinating a coding swarm task-by-task.