grove-multi-agent
Installation
SKILL.md
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"];
}