grove-multi-agent
I'm using the grove-multi-agent skill to orchestrate parallel agents across isolated Grove workspaces.
When to Use This Skill
digraph {
"Multiple tasks?" [shape=diamond];
"Independent?" [shape=diamond];
"grove-multi-agent" [shape=box];
"Sequential execution" [shape=box];
"Single grove:using-grove" [shape=box];
"Multiple tasks?" -> "Single grove:using-grove" [label="1 task"];
"Multiple tasks?" -> "Independent?" [label="2+ tasks"];
"Independent?" -> "grove-multi-agent" [label="yes"];
"Independent?" -> "Sequential execution" [label="no - shared state"];
}
More from chrisbanes/grove
using-grove
Use when starting feature work that needs isolation from the current workspace, or before executing implementation plans in a Grove-enabled repository
9grove-doctor
Use when something in the Grove setup is not working as expected, or when a user asks to diagnose or troubleshoot their Grove installation
9finishing-grove-workspace
Use when implementation is complete, all tests pass, and the agent is operating inside a Grove workspace that needs to be resolved or cleaned up
9grove-init
Use when setting up Grove for a repository that does not yet have a `.grove/config.json`, or when a user asks to initialize Grove in their project
4grove-config
Use when configuring Grove for a repository that does not yet have a `.grove/config.json`, or when a user asks to configure Grove in their project
3