From cave-teams
N agents read and write a shared state over rounds, with a mutator that folds each contribution in and an optional adjudicator (stigmergy arena). Use for agents collaborating on a shared board, a market, a workspace they all see. `blackboard()`.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cave-teams:cave-blackboardThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The arena / stigmergy core: N agents ↔ a shared state ↔ a mutator (`(board, name, value) -> board`) over `rounds`, with an optional adjudicator Link. The gameworld's core building block.
The arena / stigmergy core: N agents ↔ a shared state ↔ a mutator ((board, name, value) -> board) over rounds, with an optional adjudicator Link. The gameworld's core building block.
from cave_teams import blackboard
from cave_teams import register_fn
# the mutator folds each agent's contribution into the shared board:
def keep_latest(board, name, value): return {**board, name: value}
arena = blackboard({"a": a, "b": b}, keep_latest, adjudicator=judge, rounds=3)
The mutator is required and is a Python callable. For the cave() spec, register it by name (register_fn) and reference the name — that's the callable axis of extending the metacontrol surface.
{"op": "blackboard", "agents": {"a": <spec>, "b": <spec>},
"mutator": "keep_latest", "rounds": 3}
// the mutator is referenced BY NAME — register it first:
// cave_teams.register_fn("keep_latest", keep_latest)
If the spec is malformed, cave() returns {"status": "construction_error", "hint": "read the cave-blackboard skill"} — the error names this skill.
cave-season · cave-world · cave
Part of the cave-teams plugin — the language + full DSL is the cave-teams skill; drive any pattern from data with the cave skill.
Guides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
npx claudepluginhub sancovp/cave-teams --plugin cave-teams