Skip to content
Automation
Command

/reset-beads

Reset a beads epic to initial state (reopen all child tasks)

From plugin
essentials-claude-code
9125 skills8 agents25 commands
Install
$ npx -y skills add GantisStorm/essentials-claude-code --agent claude-code

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/reset-beads

Context preview

What this command does when you run it.

Reset a beads epic to initial state (reopen all child tasks)

Command definition

reset-beads.md
allowed-tools: Bash(bd:*), Bash(jq:*), Bash(xargs:*)
argument-hint: "<epic-id> or --label <label>"
description: Reset a beads epic to initial state (reopen all child tasks)
model: opus
context: fork

Reset Beads

Reopen all tasks in a beads epic so they can be re-run from the beginning.

Instructions

If epic ID provided:

Get all child tasks (including closed) and reopen them:

bd list --parent <epic-id> --all --json | jq -r '.[].id' | xargs -I {} bd reopen {} --reason "Reset for re-run"

If --label provided:

Get all tasks with that label (including closed) and reopen them:

bd list -l <label> --all --json | jq -r '.[].id' | xargs -I {} bd reopen {} --reason "Reset for re-run"

If no argument:

List recent epics for the user to choose:

bd list --type epic -n 10

Then ask which epic to reset.

After resetting, tell the user they can run: `/beads-loop` or `/beads-swarm` (with optional `--label <label>`)

Note: Loop and swarm are interchangeable—swarm is just faster when tasks can run in parallel. Both enforce exit criteria and sync.

Ships withessentials-claude-code

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.

Get the whole plugin, auto-invoked
Stats
91
Stars
1
Views
9
Forks
Maintained
Maintenance
Unlicense
License
5mo ago
Last commit
7mo ago
Created

Repo: GantisStorm/essentials-claude-code