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
56 lines
1.6 KiB
JSON
56 lines
1.6 KiB
JSON
{
|
|
"$schema": "https://open-design.ai/schemas/plugin.v1.json",
|
|
"specVersion": "1.0.0",
|
|
"name": "deploy-vercel-static",
|
|
"title": "Deploy To Vercel",
|
|
"version": "0.1.0",
|
|
"description": "Deploy an accepted static artifact to Vercel or prepare a deployment handoff.",
|
|
"license": "MIT",
|
|
"tags": ["deploy", "vercel", "static", "deployment"],
|
|
"compat": {
|
|
"agentSkills": [{ "path": "./SKILL.md" }]
|
|
},
|
|
"od": {
|
|
"kind": "skill",
|
|
"taskKind": "code-migration",
|
|
"mode": "deploy",
|
|
"scenario": "deployment",
|
|
"useCase": {
|
|
"query": "Deploy the accepted static artifact to Vercel as {{projectName}}."
|
|
},
|
|
"context": {
|
|
"skills": [{ "path": "./SKILL.md" }],
|
|
"atoms": ["file-read", "build-test", "handoff", "connector"]
|
|
},
|
|
"pipeline": {
|
|
"stages": [
|
|
{ "id": "inspect", "atoms": ["file-read"] },
|
|
{ "id": "verify", "atoms": ["build-test"] },
|
|
{ "id": "deploy", "atoms": ["connector"] },
|
|
{ "id": "handoff", "atoms": ["handoff"] }
|
|
]
|
|
},
|
|
"connectors": {
|
|
"optional": [
|
|
{ "id": "vercel", "tools": ["deploy-project"] }
|
|
]
|
|
},
|
|
"genui": {
|
|
"surfaces": [
|
|
{
|
|
"id": "confirm-deploy",
|
|
"kind": "confirmation",
|
|
"persist": "run",
|
|
"trigger": { "stageId": "deploy", "atom": "connector" },
|
|
"prompt": "Deploy this artifact to Vercel now?"
|
|
}
|
|
]
|
|
},
|
|
"inputs": [
|
|
{ "name": "projectName", "type": "string", "required": true, "label": "Project name" }
|
|
],
|
|
"capabilities": ["prompt:inject", "fs:read", "bash", "connector", "connector:vercel", "network"]
|
|
}
|
|
}
|
|
|