feat: support DESIGN.md workflow for design system creation#359
Merged
Conversation
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We recently added the ability to create design systems from markdown files (DESIGN.md). This is a two-step workflow:
SDK (domain classes)
Agent (callTool / tool definitions)
Both tools are also registered in the tool definitions, so agents using
callToolor 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.