Quickstart
Pick a surface and paste a URL. Every surface returns the same design.md.
Open getdesign.app, paste a URL, and watch the streaming chat panel write a live design.md.
curl "https://api.getdesign.app/?url=https://stripe.com" \ -H "Accept: text/markdown" \ -o stripe.design.mdNo auth is required in v1. Rate limits apply.
npx @getdesign/cli https://stripe.comnpx @getdesign/cli https://stripe.com --out stripe.design.mdRun without arguments to open the interactive REPL.
npm i @getdesign/sdkimport { getDesign, streamDesign } from "@getdesign/sdk";
const md = await getDesign("https://stripe.com");
for await (const chunk of streamDesign("https://stripe.com")) { process.stdout.write(chunk);}Inside Claude Code, Codex, or Cursor:
skills add MohtashamMurshid/getdesignThen ask your agent: “use the getdesign skill on https://linear.app”.
Next steps
Section titled “Next steps”- Bookmark Official URLs for every entry point (web app, docs, API, npm, GitHub).
- Learn what a
design.mdcontains in Concepts. - Pick a surface to go deeper: Web, API, CLI, SDK, Skill.
- Integrate in an app with SDK in Next.js.