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/ 100Recommendation
Install this skill
Choose your coding agent and copy a project or personal installation command.
Project installation.agents/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a codex -yPersonal installation~/.agents/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a codex -g -yProject installation.claude/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a claude-code -yPersonal installation~/.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 -yProject installation.agents/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a github-copilot -yPersonal installation~/.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 -yProject installation.agents/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a cursor -yPersonal installation~/.cursor/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a cursor -g -yProject installation.agents/skills/critique-theater
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/atoms/critique-theater -a gemini-cli -yPersonal installation~/.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⚠ Installation uses the open-source skills CLI. Inspect the source and permissions before running the command.
Skill instructions
View source on 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.