workflow_build_design_system
Automate the creation of a complete design system by extracting components, tokens, and documentation from Storybook or code sources. Streamline UI/UX development with integrated workflows.
Instructions
Generate complete design system from components
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeComponents | No | ||
includeDocumentation | No | ||
includeTokens | No | ||
source | Yes | ||
sourceId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"includeComponents": {
"default": true,
"type": "boolean"
},
"includeDocumentation": {
"default": true,
"type": "boolean"
},
"includeTokens": {
"default": true,
"type": "boolean"
},
"source": {
"enum": [
"storybook",
"code"
],
"type": "string"
},
"sourceId": {
"type": "string"
}
},
"required": [
"source",
"sourceId"
],
"type": "object"
}