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 を選び、プロジェクト用または個人用コマンドをコピーします。
プロジェクトに導入.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プロジェクトに導入.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プロジェクトに導入.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-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-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 -yNative Gemini CLI
gemini skills install https://github.com/nexu-io/open-design.git --scope workspace --path plugins/_official/atoms/critique-theater⚠ インストールには open-source skills CLI を使用します。実行前にソースと権限を確認してください。
Skill の指示
GitHub で元ファイルを表示 ↗# 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.