mirror of
https://github.com/nexu-io/open-design.git
synced 2026-05-31 19:04:39 +07:00
- Introduced `specVersion` and `version` fields to the plugin and marketplace schemas, ensuring better versioning and compatibility tracking. - Updated various components and functions to handle the new fields, including database migrations, plugin snapshots, and marketplace management. - Enhanced tests to validate the presence and correctness of the new fields in plugin manifests and marketplace entries. - Improved documentation to reflect the changes in schema requirements and provide guidance on the new versioning system. This update strengthens the plugin ecosystem by providing clear versioning, enhancing the reliability and maintainability of plugins and marketplaces.
36 lines
889 B
JSON
36 lines
889 B
JSON
{
|
|
"$schema": "https://open-design.ai/schemas/plugin.v1.json",
|
|
"specVersion": "1.0.0",
|
|
"name": "handoff",
|
|
"title": "Handoff",
|
|
"version": "0.1.0",
|
|
"description": "Push the run's accepted artifact to a downstream collaboration surface (cli, other code agents, cloud, desktop, github, figma) and stamp the artifact manifest with the export target.",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Open Design",
|
|
"url": "https://github.com/nexu-io"
|
|
},
|
|
"homepage": "https://github.com/nexu-io/open-design/tree/main/plugins/_official/atoms/handoff",
|
|
"tags": [
|
|
"atom",
|
|
"first-party",
|
|
"tune-collab",
|
|
"phase-7",
|
|
"phase-8"
|
|
],
|
|
"compat": {
|
|
"agentSkills": [
|
|
{
|
|
"path": "./SKILL.md"
|
|
}
|
|
]
|
|
},
|
|
"od": {
|
|
"kind": "atom",
|
|
"scenario": "tune-collab",
|
|
"mode": "handoff",
|
|
"capabilities": [
|
|
"prompt:inject"
|
|
]
|
|
}
|
|
}
|