Loops, swarms, and teams powered by Claude Code's built-in Task System. Plans define exit criteria. Executors run until tests pass. Done means actually done.
npx claudepluginhub gantisstorm/essentials-claude-code24 commands, 8 agents. Loops, swarms, and teams powered by Claude Code's built-in Task System. Native task dependencies, ctrl+t progress, automatic persistence.
No description available.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Loops, swarms, and teams powered by Claude Code's built-in Task System.
Loop, swarm, and team are three execution modes. Loop runs sequentially. Swarm runs parallel subagents. Team spawns full Claude Code instances with shared contracts via Agent Teams. All use Claude's native task dependencies, ctrl+t progress, and automatic persistence.
Plans define exit criteria. Loops run until tests pass. Done means actually done.
You: "Add authentication"
AI: *writes code* "Done!"
You: *runs tests* — 3 failing
You: "Fix these"
AI: "Fixed!"
You: *runs tests* — still failing
[repeat until you give up]
# Option A: Discuss in chat, then execute from context
You: "I need to fix this auth bug..." [back and forth discussion]
You: /implement-loop fix the auth bug we discussed
AI: *implements, tests fail, fixes, tests fail, fixes...*
AI: "Exit criteria passed" ✓
# Option B: Create plan first, then execute
You: /plan-creator Add authentication
You: /plan-loop .claude/plans/auth-plan.md # Sequential
You: /plan-swarm .claude/plans/auth-plan.md # Parallel subagents
You: /plan-team .claude/plans/auth-plan.md # Agent Teams with contracts
AI: "Exit criteria passed" ✓
# Install
/plugin marketplace add GantisStorm/essentials-claude-code
/plugin install essentials@essentials-claude-code
mkdir -p .claude/plans .claude/prompts .claude/prd
# Option A: From conversation (after discussing a bug/feature)
/implement-loop fix the auth bug we discussed # Sequential
/implement-swarm refactor the API handlers # Parallel subagents
/implement-team build the full-stack feature # Agent Teams with contracts
# Option B: With plan file
/plan-creator Add user authentication with JWT
/plan-loop .claude/plans/user-auth-3k7f2-plan.md # Sequential
/plan-swarm .claude/plans/user-auth-3k7f2-plan.md # Parallel subagents
/plan-team .claude/plans/user-auth-3k7f2-plan.md # Agent Teams with contracts
# Visual progress
ctrl+t # Toggle task tree view
Zero external dependencies. All three modes enforce exit criteria. Swarm defaults to 3 concurrent workers. Team requires tmux and CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1.
Our loop, swarm, and team commands use Claude Code's built-in Task Management System (v2.1.19+).
Ralph TUI and Beads integrate seamlessly. Use Ralph TUI for dashboard visualization. Use Beads for persistent task tracking across sessions.
The community built Ralph Wiggum loops with workarounds:
.sh files) that ran after each Claude response, grepping output for keywords like "complete" or "done" to decide whether to continue the loopClaude Code v2.1.19+ provides native tools that replace all of this:
| Old Workaround | Native Replacement | Why It's Better |
|---|---|---|
| Stop hooks (shell scripts) | TaskUpdate({ status: "completed" }) | No external scripts, status is structured data |
| External plan.md for state | ~/.claude/tasks/ storage | Survives context compaction automatically |
| TodoWrite flat lists | TaskUpdate({ addBlockedBy: [...] }) | Dependencies enforced — tasks can't run out of order |
| Manual session coordination | CLAUDE_CODE_TASK_LIST_ID env var | Same task list across sessions |
| Single agent | TaskList + parallel workers | Multiple agents coordinate via shared state |
The core loop is unchanged: Plan → Implement → Verify → Loop if fail → Done when pass.
ctrl+t to see live task tree with status~/.claude/tasks/