Skip to main content
ClaudeWave
Skill329 estrellas del repoactualizado 5d ago

and-or-decompose

The and-or-decompose skill recursively breaks down a top-level goal into a directed acyclic graph (GoalTree) using KAOS-style decomposition. AND nodes represent sub-goals that must all be achieved, while OR nodes indicate alternative paths where completing any one suffices. It accepts a confirmed goal, actor profile, and obstacle report as input, spawning a subagent to generate actionable leaf-node sub-goals suitable for further planning and execution.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/yogsoth-ai/de-anthropocentric-research-engine /tmp/and-or-decompose && cp -r /tmp/and-or-decompose/skills/and-or-decompose ~/.claude/skills/and-or-decompose
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# AND/OR Decompose

Recursively decompose the top goal into a structured GoalTree.

## Execution

Subagent — spawned via `subagent-spawning/spawn-agent` skill.

## Input

- Confirmed top goal
- ActorProfile
- ObstacleReport

## Output

GoalTree — DAG with AND/OR nodes, leaf nodes representing actionable sub-goals.