Skip to main content
ClaudeWave
Skill254 estrellas del repoactualizado 2mo ago

sibyl-supervisor-decision

The sibyl-supervisor-decision skill analyzes experimental results and perspective documents from three debate roles to determine whether a research project should pivot or proceed. It evaluates the experiment summary, optimist, skeptic, and strategist viewpoints, then synthesizes these into a supervisory decision documented in the experiment analysis file. Use this skill when research teams need structured decision-making after experimental phases to guide next steps.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/Sibyl-Research-Team/AutoResearch-SibylSystem /tmp/sibyl-supervisor-decision && cp -r /tmp/sibyl-supervisor-decision/.claude/skills/sibyl-supervisor-decision ~/.claude/skills/sibyl-supervisor-decision
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

!`SIBYL_WORKSPACE="$ARGUMENTS[0]" .venv/bin/python3 -c "from sibyl.orchestrate import render_skill_prompt; import os; ws = os.environ.get('SIBYL_WORKSPACE', ''); print(render_skill_prompt('supervisor_decision', workspace_path=ws))"`

AGENT_NAME: sibyl-supervisor-decision
AGENT_TIER: sibyl-heavy
SIBYL_ROOT: /Users/cwan0785/sibyl-system

Workspace path: $ARGUMENTS[0]

SPECIAL TASK: Analyze experiment results and the debate opinions.
Read:
- $ARGUMENTS[0]/exp/results/summary.md
- $ARGUMENTS[0]/idea/result_debate/optimist.md
- $ARGUMENTS[0]/idea/result_debate/skeptic.md
- $ARGUMENTS[0]/idea/result_debate/strategist.md
- $ARGUMENTS[0]/idea/proposal.md

Determine: PIVOT or PROCEED?
Write to $ARGUMENTS[0]/supervisor/experiment_analysis.md
End with exactly: DECISION: PIVOT or DECISION: PROCEED