You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: support Design.md workflow for design system creation (#359)
Stitch recently added the ability to create design systems from markdown
files (DESIGN.md). This is a two-step workflow:
1. Upload a markdown file describing the design language to a project
2. Create a design system from that uploaded file, which Stitch interprets
and converts into actionable design tokens
SDK (domain classes):
const instance = await project.uploadDesignMd(btoa(markdown));
const ds = await project.createDesignSystemFromDesignMd(instance, 'DESKTOP');
Agent (callTool / tool definitions):
Both tools are also registered in the tool definitions, so agents using
callTool or the ADK/AI SDK adapters can discover and invoke them directly.
This brings the SDK to full MCP tool coverage (14/14) across both modalities.
0 commit comments