一键导入
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.