From speckit-extensions
Use when the user wants to create an implementation plan from a Lucidchart diagram — e.g. "plan from lucid <url>", "/speckit-extensions:plan-from-lucid <url>". Fetches the diagram via the Lucidchart MCP server and pipes it into /speckit.plan to produce an implementation plan.
How this skill is triggered — by the user, by Claude, or both
Slash command
/speckit-extensions:plan-from-lucidThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch a Lucidchart diagram and use its content as context for `/speckit.plan`.
Fetch a Lucidchart diagram and use its content as context for /speckit.plan.
$ARGUMENTS contains: <lucid-url> [additional-input]
lucid-url (required): URL to a Lucidchart document page, e.g. https://lucid.app/lucidchart/9c028565-3df6-4c34-9db4-449bb5c7c20d/edit?page=4WDSdv3BMKuGadditional-input (optional): Extra context or instructions to include alongside the diagramExtract the Lucid URL (first whitespace-delimited token from $ARGUMENTS) and any additional input (everything after it).
From the URL, extract:
/lucidchart/ and /edit, e.g. 9c028565-3df6-4c34-9db4-449bb5c7c20dpage query parameter, e.g. 4WDSdv3BMKuGIf pageId is absent from the URL, omit it when calling the fetch tool (the server will default to the first page).
Using the Lucidchart MCP server, call its document fetch tool with documentId and pageId. Request the content in the most structured format available — prefer SVG or XML over raster images, as structured vector formats are more accurately interpreted by the AI. If the server returns a PNG image, use it as-is for visual analysis.
Format the retrieved diagram content into a context block:
Lucidchart Document: <documentId>
Page: <pageId>
Diagram:
<diagram content — SVG, XML, or image as returned by the MCP server>
Append any additional input from $ARGUMENTS after the above block.
Pass the composed context block as the feature description to /speckit.plan.
npx claudepluginhub yesmarket/claude-marketplace --plugin speckit-extensionsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.