원클릭으로
critique-theater
5-dimension critique panel; emits the critique.score signal that drives devloop convergence.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
5-dimension critique panel; emits the critique.score signal that drives devloop convergence.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create refreshable, auditable Open Design artifacts backed by connector or local data. Trigger when the user asks for live dashboards, refreshable reports, synced views, or reusable data-backed artifacts.
Hidden fallback scenario for free-form Home prompts. Ask the task type first, then continue through the matching Open Design flow.
Run the project's build / typecheck / lint / test commands and emit the build.passing + tests.passing signals devloop convergence reads.
Read an existing repository's structure into the project cwd as a normalised snapshot the agent can analyse without re-walking the tree on every turn.
Extract design tokens (color / typography / spacing) from imported source code, screenshots, or Figma exports into the canonical token bag token-map consumes.
Render the patch-edit run's accumulated changes as a reviewable diff, surface it through a GenUI choice surface, and persist the user's accept / reject decision into the artifact manifest.
| name | critique-theater |
| description | 5-dimension critique panel; emits the critique.score signal that drives devloop convergence. |
| od | {"scenario":"general","mode":"critique"} |
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:
{
"id": "critique",
"atoms": ["critique-theater"],
"repeat": true,
"until": "critique.score >= 4 || iterations >= 3"
}
The agent writes the critique panel to critique.json in the project
cwd plus a structured event the daemon's pipeline runner reads:
{
"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": "..." }
}
}
score >= 4 per default until.OD_MAX_DEVLOOP_ITERATIONS, default 10) always wins
even when the score never reaches 4.od ui respond with action break-loop
or the desktop "Stop refining" button.