Meet agents where they are: a Claude Code plugin and a VS Code extension - #92
Merged
Merged
Conversation
The repository is its own marketplace. The plugin's MCP server is bundled with its font, so a clone needs no install; CI checks the bundle is current. server.json and docs/listings.md prepare the listings.
Syntax colours, errors underlined by line, a live preview in the editor's theme, and Open in isketch. Tested against a fake vscode API.
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.
FL-89.
Claude Code plugin (
plugin/, with.claude-plugin/marketplace.jsonat the root, so the repo is its own marketplace):.flowformat, how to build from a diagram, and how to keep one true after changing code (read as text, change only what changed, diff, write, fix reported lines)..mcp.jsonruns the MCP server, bundled intoplugin/server/(rolldown, one 128 KB file plus the font), so a clone works with no install.npm run pluginrebuilds it; CI fails if it is out of date.claude plugin validatepasses for the plugin and the marketplace. The bundle, run from a copy ofplugin/alone, answers the MCP handshake, lists its five tools, reads a brief and renders a sketch with the font.sketchFontno longer throws when the font package is missing (require.resolvewas outside the catch).VS Code extension (
vscode/): aflowlanguage with a TextMate grammar, a live preview beside the editor (the app's renderer, dark with VS Code, keeping the last good drawing while the text has an error), errors as diagnostics by line, and Open in isketch.npm run vscodebundles it;npx @vscode/vsce packageinvscode/makes a 60 KB.vsix. Tests run the real extension code against a fakevscodeAPI.Listings (AC #2, left open):
server.jsonfor the official MCP registry anddocs/listings.mdwith each step. Publishing needs your accounts and the hosted server at isketch.online, so it is yours to run.Tests: extension spec (5); vitest 305, e2e 144, lint and typecheck.