Fluxwing Skills — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Fluxwing Skills (Plugin) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
Aggregate score unchanged between these scans.
The primary manifest — the file an agent reads to learn what this artifact does.
Rapid iterative design with progressive fidelity.
Fluxwing enables rapid iteration using ASCII—a format both humans and AI read natively:
Why ASCII? It's rapid. Both humans and AI read it natively. Structure first, pixels later.
Level 1: ASCII Layout
╭──────────────────────╮
│ Welcome Back │
│ ┌────────────────┐ │
│ │ Email │ │
│ └────────────────┘ │
│ [ Sign In ] │
╰──────────────────────╯Iterate with Claude: "Move button up" → quick changes. Try multiple layouts rapidly.
Level 2: Component Metadata
{
"id": "submit-button",
"variant": "primary",
"states": { "hover": {...}, "disabled": {...} }
}Add behavior, states, accessibility as design solidifies.
Level 3: Review and Move to High-Fidelity
Get it right before investing in high-fidelity.
Fluxwing is the AI-powered design tool. uxscii is the open standard it uses.
Think of it this way:
Get started in 10 seconds:
# In Claude Code, add the marketplace
/plugin marketplace add trabian/fluxwing-skills
# Install the plugin
/plugin install fluxwing-skillsThat's it! Start designing by talking to Claude naturally.
For the GUI Claude app:
Available skills: 6 ZIP files (one per skill)
fluxwing-component-creator.zip (60KB)fluxwing-library-browser.zip (7.6KB)fluxwing-component-expander.zip (9.3KB)fluxwing-screen-scaffolder.zip (15KB)fluxwing-component-viewer.zip (6.6KB)fluxwing-screenshot-importer.zip (24KB)Requirements: Pro, Max, Team, or Enterprise plan with code execution enabled
See [INSTALL.md](INSTALL.md) for detailed instructions, development setup, and troubleshooting.
Simply ask Claude:
"Create a button component"The fluxwing-component-creator skill activates and guides you through creating a button with interactive states, accessibility attributes, and clean ASCII visualization.
Ask Claude:
"Show me all available components"The fluxwing-library-browser skill shows you 11 bundled templates (buttons, inputs, cards, modals, etc.) and your project components.
Ask Claude:
"Build a login screen"The fluxwing-screen-scaffolder skill creates missing components, composes them into a screen, and generates rendered examples with real data.
Ask Claude:
"Add hover state to my button"The fluxwing-component-expander skill adds interactive states (hover, focus, disabled, active, error) to existing components.
| Skill | Triggers | Purpose |
|---|---|---|
| fluxwing-component-creator | "Create a button", "I need an input component" | Create new components (buttons, inputs, cards, etc.) |
| fluxwing-library-browser | "Show me all components", "Browse the library" | Browse available templates and user components |
| fluxwing-component-expander | "Add hover state", "Make this interactive" | Add states to existing components |
| fluxwing-screen-scaffolder | "Create a login screen", "Build a dashboard" | Build complete screens from components |
| fluxwing-component-viewer | "Show me the submit-button", "View details" | View component details and metadata |
| fluxwing-screenshot-importer | "Import this screenshot", "Convert screenshot" | Convert screenshots to uxscii components |
Skills activate automatically based on your natural language requests to Claude.
Every component consists of two files:
1. `.uxm` file (JSON metadata):
{
"id": "submit-button",
"type": "button",
"version": "1.0.0",
"metadata": {
"name": "Submit Button",
"created": "2024-10-11T12:00:00Z"
},
"props": {
"text": "Submit"
},
"ascii": {
"templateFile": "submit-button.md",
"width": 20,
"height": 3
}
}2. `.md` file (ASCII template):
# Submit Button
## Default State
╭──────────────────╮ │ {{text}} │ ╰──────────────────╯
All component and screen outputs are saved to your project:
./fluxwing/ # Your project files
├── components/ # Your created components (.uxm + .md)
├── screens/ # Your created screens (.uxm + .md + .rendered.md)
└── library/ # Customized copies of templatesSkills include bundled templates (READ-ONLY reference materials):
.claude/skills/{skill-name}/
├── templates/ # 11 component templates
├── schemas/ # JSON Schema validation
└── docs/ # Documentation modulesThe Golden Rule: Skills READ from bundled templates, WRITE to your project workspace.
Iterate at conversation speed. ASCII layouts enable rapid iteration through natural language.
You: "Create a login screen" Claude: [ASCII layout in minutes] You: "Move the button up, add forgot password" Claude: [Updated quickly]
Try multiple layouts rapidly. Structure first. Pixels later.
Don't make detailed decisions too early. Start simple:
Add detail as the design solidifies. Get it right before high-fidelity.
ASCII enables rapid iteration and universal comprehension:
Rapid: No dragging, no resizing, just structure. Changes happen quickly through conversation.
Universal: Both humans AND AI read it natively.
One format. Two audiences. Conversation-speed iteration.
Validate at low-fidelity before investing in high-fidelity:
.uxm becomes your implementation spec.
The complete workflow:
Start fast. Get it right. Then invest in high-fidelity.
Version Control Native - Text-based diffs. See design changes in PRs. Collaborative editing. Track every change.
Component Derivation - Start with a base component, derive variations from it. Document relationships with extends. AI helps propagate changes when you ask.
Living Documentation - .uxm files are living specs. Review with stakeholders. Iterate rapidly. Always up to date.
Open Standard - uxscii is open, not proprietary. No vendor lock-in. Works with any text editor.
Step 1: Start Low-Fidelity
You: "Create a login screen with email, password, and submit button"
Claude generates ASCII layout:
╭──────────────────────╮
│ Welcome Back │
│ ┌────────────────┐ │
│ │ Email │ │
│ └────────────────┘ │
│ ┌────────────────┐ │
│ │ Password │ │
│ └────────────────┘ │
│ [ Sign In ] │
╰──────────────────────╯Step 2: Iterate Rapidly
You: "Add forgot password link, make button more prominent"
Claude updates:
╭──────────────────────╮
│ Welcome Back │
│ ┌────────────────┐ │
│ │ Email │ │
│ └────────────────┘ │
│ ┌────────────────┐ │
│ │ Password │ │
│ └────────────────┘ │
│ Forgot password? │
│ ╔════════════════╗ │
│ ║ SIGN IN ║ │
│ ╚════════════════╝ │
╰──────────────────────╯Step 3: Add Fidelity Progressively
You: "Add accessibility metadata and hover states"
Claude creates .uxm with ARIA labels, keyboard navigation, interaction states.
Step 4: Review and Validate
Share .uxm with stakeholders. Get feedback. Iterate rapidly. Get it right at low-fidelity.
Step 5: Move to High-Fidelity
Use .uxm as implementation spec. Build in React. Design visually. Implement with confidence.
Total: Fast iteration from idea to validated spec, ready for high-fidelity implementation.
Six Specialized Skills: Component creation, library browsing, state expansion, screen scaffolding, component viewing, and screenshot importing.
11 Curated Component Templates: Buttons, inputs, cards, modals, navigation, alerts, badges, lists, forms, and more.
2 Complete Screen Examples: Login screen and dashboard with rendered examples showing real data.
Complete Documentation: Modular guides optimized for AI agents, full uxscii reference, ASCII pattern library, and validation standards.
Production-Ready Schema: JSON Schema for validation with complete field reference and extensible architecture.
Each skill includes its own documentation:
.claude/skills/{skill-name}/SKILL.md - Skill workflow and instructions.claude/skills/{skill-name}/docs/ - Modular documentation modules.claude/skills/{skill-name}/templates/ - Component templates.claude/skills/{skill-name}/schemas/ - JSON Schema validationTo remove the skills:
./scripts/uninstall.shYour project data in ./fluxwing/ is never deleted during uninstallation.
.claude/skills/*/templates/ for component patternsMIT License - free to use and modify
Built on the uxscii standard - an open, AI-native design markup language.
Fluxwing brings uxscii to Claude Code, making AI-powered UX design accessible to everyone.
<div align="center">
Ready to design with AI?
Install with ./scripts/install.sh and start talking to Claude naturally.
Design beautiful UX with Fluxwing - your AI design assistant
</div>
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.