mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
- Introduced a new plugin upload mechanism with file size limits and memory storage, allowing users to upload plugins directly. - Implemented fallback logic for plugin application, ensuring projects can be created without explicit plugin requests. - Enhanced the UI to support plugin selection and integration, including a new `PluginsView` component for managing plugins. - Updated various components to utilize localized text for plugin queries, improving user experience across different languages. - Added tests for new plugin functionalities and local skill loading, ensuring reliability and correctness. This update significantly improves the plugin management experience, providing users with better tools for plugin integration and interaction.
71 lines
1.8 KiB
JSON
71 lines
1.8 KiB
JSON
{
|
||
"$schema": "https://open-design.ai/schemas/plugin.v1.json",
|
||
"name": "design-system-bugatti",
|
||
"title": "Bugatti",
|
||
"version": "0.1.0",
|
||
"description": "Hypercar brand. Cinema-black canvas, monochrome austerity, monumental display type.",
|
||
"license": "MIT",
|
||
"tags": [
|
||
"design-system",
|
||
"first-party",
|
||
"design",
|
||
"automotive"
|
||
],
|
||
"od": {
|
||
"kind": "scenario",
|
||
"taskKind": "new-generation",
|
||
"mode": "design-system",
|
||
"scenario": "design",
|
||
"surface": "web",
|
||
"useCase": {
|
||
"query": {
|
||
"en": "Generate a {{artifactKind}} using the Bugatti 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 Bugatti 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": "bugatti",
|
||
"primary": true
|
||
},
|
||
"assets": [
|
||
"./DESIGN.md"
|
||
]
|
||
},
|
||
"pipeline": {
|
||
"stages": [
|
||
{
|
||
"id": "generate",
|
||
"atoms": [
|
||
"file-write",
|
||
"live-artifact"
|
||
]
|
||
}
|
||
]
|
||
},
|
||
"capabilities": [
|
||
"prompt:inject",
|
||
"fs:write"
|
||
]
|
||
}
|
||
}
|