AI & Agentslow risk

critique-theater

5-dimension critique panel; emits the critique.score signal that drives devloop convergence.

nexu-io/open-design·plugins/_official/atoms/critique-theater/SKILL.md
60/ 100推薦值

匯入這個 Skill

選擇你的 coding agent,複製專案級或個人級安裝指令。

固定至平台收錄的 commit
匯入目前專案.agents/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a codex -y
匯入個人環境~/.agents/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a codex -g -y
手動放置目錄.agents/skills/critique-theaterOfficial docs ↗
匯入目前專案.claude/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a claude-code -y
匯入個人環境~/.claude/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a claude-code -g -y
手動放置目錄.claude/skills/critique-theaterOfficial docs ↗
匯入目前專案.agents/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a github-copilot -y
匯入個人環境~/.copilot/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a github-copilot -g -y
手動放置目錄.agents/skills/critique-theaterOfficial docs ↗
匯入目前專案.agents/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a cursor -y
匯入個人環境~/.cursor/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a cursor -g -y
手動放置目錄.agents/skills/critique-theaterOfficial docs ↗
匯入目前專案.agents/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a gemini-cli -y
匯入個人環境~/.gemini/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a gemini-cli -g -y
Native Gemini CLIgemini skills install https://github.com/nexu-io/open-design.git --scope workspace --path plugins/_official/atoms/critique-theater
手動放置目錄.agents/skills/critique-theaterOfficial docs ↗
⚠ 安裝指令使用開源 skills CLI。執行前請檢查來源、腳本與權限。
# Critique theater

The atom that keeps the devloop honest. After each generation pass,
the agent self-critiques along five dimensions (clarity, hierarchy,
typography, motion, brand consistency — the panel is configurable per
plugin) and emits a `critique.score` signal in the 0-5 range. The
score is the variable a stage's `until` expression can read:

```jsonc
{
  "id": "critique",
  "atoms": ["critique-theater"],
  "repeat": true,
  "until": "critique.score >= 4 || iterations >= 3"
}
```

## Output shape

The agent writes the critique panel to `critique.json` in the project
cwd plus a structured event the daemon's pipeline runner reads:

```jsonc
{
  "kind": "critique-panel",
  "score": 4,
  "axes": {
    "clarity":      { "score": 4, "notes": "..." },
    "hierarchy":    { "score": 4, "notes": "..." },
    "typography":   { "score": 5, "notes": "..." },
    "motion":       { "score": 3, "notes": "needs easing pass" },
    "brand":        { "score": 4, "notes": "..." }
  }
}
```

## Convergence + escape hatches

- Critique converges at `score >= 4` per default `until`.
- Iteration cap (`OD_MAX_DEVLOOP_ITERATIONS`, default 10) always wins
  even when the score never reaches 4.
- The user can break out via `od ui respond` with action `break-loop`
  or the desktop "Stop refining" button.