bergside

Design Md Webflow — AI skill for Claude Code

AI community

Webflow extension that allows you to extract styles and generate DESIGN.md and SKILL.md files for AI.

How to install Design Md Webflow

This entry records only its repository, not the path inside it, so there is no exact command to give. Open bergside/design-md-webflow and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Design Md Webflow does

Webflow extension that allows you to extract styles and generate DESIGN.md and SKILL.md files for AI.

Alternatives in AI

  • UI UX Pro Max Skill — An AI SKILL that provide design intelligence for building professional UI/UX multiple platforms 45.8k ★
  • Impeccable — The design language that makes your AI harness better at design 13.9k ★
  • Pixel Agents — Compressed Reference — VS Code extension with embedded React webview: pixel art office where AI agents (Claude Code terminals) are an 6.5k ★

README

DESIGN.md Generator for Webflow - TypeUI

og-webflow



This project is a Webflow Designer Extension that scans the current Webflow workspace context and generates editable `DESIGN.md` and `SKILL.md` outputs based on [TypeUI](https://www.typeui.sh).

It is adapted from the same concept used in `design-md-framer`, but implemented for Webflow Designer APIs.

What it scans

When you click **Scan workspace**, the extension inspects:

  • Webflow site metadata (getSiteInfo)
  • All styles/classes on the site (getAllStyles + style.getProperties)
  • Elements in the current canvas context (getAllElements)
  • Variables in the default variable collection when available (getDefaultVariableCollection + getAllVariables)

From these signals, it infers:

  • semantic colors (primary, secondary, tertiary, neutral)
  • typography tokens (h1, body-md, label-caps)
  • radius scale (sm, md)
  • spacing scale (sm, md)

Then it renders editable markdown for `DESIGN.md` or `SKILL.md`.

Includes TypeUI and repo references

Generated `SKILL.md` frontmatter includes:

Local development

Prerequisites:

  • Node.js 16.20+
  • A registered Webflow App with Designer Extension enabled
  • App installed on a test site in your Webflow workspace

Install dependencies:

npm install

Run dev mode (build watch + Webflow extension server on `localhost:1337`):

npm run dev

Build JS bundle for the extension:

npm run build:js

Bundle for upload:

npm run build

File structure

  • src/index.ts: core scanning, token inference, markdown generation, and UI event wiring
  • public/index.html: extension UI markup
  • `public/styles