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

47 lines
1.6 KiB
JSON

{
"$schema": "https://open-design.ai/schemas/plugin.v1.json",
"specVersion": "1.0.0",
"name": "extend-plugin-author",
"title": "Plugin Author",
"version": "0.1.0",
"description": "Guide an agent through creating, validating, and preparing an Open Design plugin contribution.",
"license": "MIT",
"tags": ["extend", "plugin-authoring", "create-plugin", "spec-plugin", "marketplace"],
"compat": {
"agentSkills": [{ "path": "./SKILL.md" }]
},
"od": {
"kind": "skill",
"taskKind": "new-generation",
"mode": "utility",
"scenario": "plugin-authoring",
"useCase": {
"query": "Create an Open Design plugin for {{lane}} that helps users {{goal}}."
},
"context": {
"skills": [{ "path": "./SKILL.md" }],
"assets": ["../../SPEC.md", "../../AGENT-DEVELOPMENT.md"],
"atoms": ["discovery-question-form", "todo-write", "file-read", "file-write", "critique-theater"]
},
"pipeline": {
"stages": [
{ "id": "discovery", "atoms": ["discovery-question-form"] },
{ "id": "plan", "atoms": ["todo-write", "file-read"] },
{ "id": "write", "atoms": ["file-write"] },
{
"id": "critique",
"atoms": ["critique-theater"],
"repeat": true,
"until": "critique.score>=4 || iterations>=2"
}
]
},
"inputs": [
{ "name": "lane", "type": "select", "required": true, "label": "Lane", "options": ["import", "create", "export", "share", "deploy", "refine", "extend"] },
{ "name": "goal", "type": "text", "required": true, "label": "Goal" }
],
"capabilities": ["prompt:inject", "fs:read", "fs:write"]
}
}