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.