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.
72 lines
1.8 KiB
JSON
72 lines
1.8 KiB
JSON
{
|
||
"$schema": "https://open-design.ai/schemas/plugin.v1.json",
|
||
"specVersion": "1.0.0",
|
||
"name": "design-system-bold",
|
||
"title": "Bold",
|
||
"version": "0.1.0",
|
||
"description": "Strong visual presence with heavyweight typography, high-contrast colors, and commanding layouts.",
|
||
"license": "MIT",
|
||
"tags": [
|
||
"design-system",
|
||
"first-party",
|
||
"design",
|
||
"bold-expressive"
|
||
],
|
||
"od": {
|
||
"kind": "scenario",
|
||
"taskKind": "new-generation",
|
||
"mode": "design-system",
|
||
"scenario": "design",
|
||
"surface": "web",
|
||
"useCase": {
|
||
"query": {
|
||
"en": "Generate a {{artifactKind}} using the Bold design system. Stay faithful to its colour palette, typography, spacing, iconography, and component vocabulary as documented in DESIGN.md.",
|
||
"zh-CN": "使用这个插件完成以下任务:Generate a {{artifactKind}} using the Bold design system. Stay faithful to its colour palette, typography, spacing, iconography, and component vocabulary as documented in DESIGN.md."
|
||
}
|
||
},
|
||
"inputs": [
|
||
{
|
||
"name": "artifactKind",
|
||
"label": "Artifact kind",
|
||
"type": "select",
|
||
"options": [
|
||
"landing page",
|
||
"dashboard",
|
||
"marketing site",
|
||
"app screen"
|
||
],
|
||
"default": "landing page"
|
||
},
|
||
{
|
||
"name": "brief",
|
||
"label": "Brief",
|
||
"type": "text",
|
||
"placeholder": "What should the page communicate?"
|
||
}
|
||
],
|
||
"context": {
|
||
"designSystem": {
|
||
"ref": "bold",
|
||
"primary": true
|
||
},
|
||
"assets": [
|
||
"./DESIGN.md"
|
||
]
|
||
},
|
||
"pipeline": {
|
||
"stages": [
|
||
{
|
||
"id": "generate",
|
||
"atoms": [
|
||
"file-write",
|
||
"live-artifact"
|
||
]
|
||
}
|
||
]
|
||
},
|
||
"capabilities": [
|
||
"prompt:inject",
|
||
"fs:write"
|
||
]
|
||
}
|
||
}
|