Files
wehub-resource-sync 070959e133
landing-page-staging / Deploy landing page to staging (push) Has been skipped
landing-page-ci / Validate landing page (push) Failing after 4s
visual-baseline / Capture visual baselines (push) Has been cancelled
bake-plugin-previews / Bake plugin previews (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:00:47 +08:00

44 lines
1.3 KiB
JSON

{
"$schema": "https://open-design.ai/schemas/plugin.v1.json",
"specVersion": "1.0.0",
"name": "refine-critique-loop",
"title": "Critique And Refine",
"version": "0.1.0",
"description": "Review, patch, and improve an existing Open Design artifact.",
"license": "MIT",
"tags": ["refine", "critique", "review", "patch-edit", "tune-collab"],
"compat": {
"agentSkills": [{ "path": "./SKILL.md" }]
},
"od": {
"kind": "skill",
"taskKind": "tune-collab",
"mode": "refine",
"scenario": "critique",
"useCase": {
"query": "Refine the current artifact with focus on {{focus}}."
},
"context": {
"skills": [{ "path": "./SKILL.md" }],
"atoms": ["file-read", "critique-theater", "patch-edit", "diff-review"]
},
"pipeline": {
"stages": [
{ "id": "inspect", "atoms": ["file-read"] },
{
"id": "critique",
"atoms": ["critique-theater"],
"repeat": true,
"until": "critique.score>=4 || iterations>=3"
},
{ "id": "patch", "atoms": ["patch-edit", "diff-review"] }
]
},
"inputs": [
{ "name": "focus", "type": "string", "required": false, "label": "Focus", "default": "visual polish, responsive behavior, and text fit" }
],
"capabilities": ["prompt:inject", "fs:read", "fs:write"]
}
}