Fluxwing Screenshot Importer

Fluxwing Screenshot Importer is a skill for Claude Code from trabian/fluxwing-skills. It costs 40 tokens per session (3,393 once invoked), scanned A, original, MIT.

A screenshot-to-component tool that examines UI images and creates uxscii component and screen files from them.

In plain words
What is it for?
Use it to import screenshots, generate .uxm components, and scaffold screens in a Fluxwing project.
Why use it?
It reduces the manual work of turning a visual design into structured interface components.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the TodoWrite tool.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/me/Desktop/login.png.

Part of the fluxwing-skills plugin — 8 skills shipped together

Good fit Use it to import screenshots, generate .uxm components, and scaffold screens in a Fluxwing project.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add trabian/fluxwing-skills
Claude Code
/plugin install fluxwing-skills

Made for: Claude Code.

Or install fluxwing-skills, the plugin that ships this one along with the rest of its 8 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Fluxwing Screenshot Importer

README.md
[![agentmods](https://agentmods.dev/badge/skills/trabian/fluxwing-skills/fluxwing-screenshot-importer/github.svg)](https://agentmods.dev/skills/trabian/fluxwing-skills/fluxwing-screenshot-importer)
Your own site
<a href="https://agentmods.dev/skills/trabian/fluxwing-skills/fluxwing-screenshot-importer"><img src="https://agentmods.dev/badge/skills/trabian/fluxwing-skills/fluxwing-screenshot-importer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for Fluxwing Screenshot Importer

Your own site · 80×15
<a href="https://agentmods.dev/skills/trabian/fluxwing-skills/fluxwing-screenshot-importer"><img src="https://agentmods.dev/badge/skills/trabian/fluxwing-skills/fluxwing-screenshot-importer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,393 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00040 $0.03393
Opus 5 $0.00020 $0.01697
Sonnet 5 $0.00008 $0.00679
Haiku 4.5 $0.00004 $0.00339

Measured 12d ago against content hash 04eb7ae936c5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

Fluxwing Screenshot Importer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/fluxwing-screenshot-importer/SKILL.md · 462 lines

How it starts

The opening of the file, as written. The whole thing — 462 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Fluxwing Screenshot Importer

Import UI screenshots and convert them to the uxscii standard by orchestrating specialized vision agents.

Data Location Rules

READ from (bundled templates - reference only):

  • {SKILL_ROOT}/../uxscii-component-creator/templates/ - 11 component templates (for reference)
  • {SKILL_ROOT}/docs/ - Screenshot processing documentation

WRITE to (project workspace):

  • ./fluxwing/components/ - Extracted components (.uxm + .md)
  • ./fluxwing/screens/ - Screen composition (.uxm + .md + .rendered.md)

NEVER write to skill directories - they are read-only!

Your Task

Import a screenshot of a UI design and automatically generate uxscii components and screens by orchestrating specialized agents:

  1. Vision Coordinator Agent - Spawns 3 parallel vision agents (layout + components + properties)
  2. Component Generator Agents - Generate component files in parallel (atomic + composite)
  3. Screen Scaffolder Skill - Delegates to fluxwing-screen-scaffolder for screen composition

⚠️ ORCHESTRATION RULES:

YOU CAN (as orchestrator):

  • ✅ Spawn vision analysis agents
  • ✅ Spawn component generator agents
  • ✅ Invoke fluxwing-screen-scaffolder skill
  • ✅ Read screenshots
  • ✅ Validate vision data

YOU CANNOT (worker mode - forbidden):

  • ⚠️ Create screen files yourself using Write/Edit tools
  • ⚠️ Generate .uxm, .md, or .rendered.md files for screens
  • ⚠️ "Help" the scaffolder by pre-creating screen files
  • ⚠️ Use TodoWrite to work through screen creation tasks yourself

For screen composition: ALWAYS delegate to fluxwing-screen-scaffolder skill. It will spawn composer agents that create all screen files (.uxm, .md, .rendered.md).

Workflow

Phase 1: Get Screenshot Path

Ask the user for the screenshot path if not provided:

  • "Which screenshot would you like to import?"
  • Validate file exists and is a supported format (PNG, JPG, JPEG, WebP, GIF)
// Example
const screenshotPath = "/path/to/screenshot.png";

Read the full file on GitHub · 462 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 462 lines · 40 tokens per session scan A 04eb7ae936c5

Subscribe to this mod's changes

Fluxwing Screenshot Importer is a skill published in the GitHub repository trabian/fluxwing-skills (18 stars, last pushed 9mo ago), licensed MIT. It adds 40 tokens to every session and 3,393 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

accessibility

Audit and improve web accessibility following WCAG 2.2 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible".

addyosmani/web-quality-skills · 51 tokens

information-architecture

Design the structure of a website or product including sitemap, navigation, URL structure, content types, taxonomy, and labeling. Use this skill whenever the user asks to plan a sitemap, design navigation, structure URLs, define content types, build taxonomies, design site search, or organize content at the system…

rampstackco/claude-skills · 131 tokens

frontend

Builds, styles, and polishes web UI and UX. Use for any frontend, page, component, styling, layout, animation, or visual-quality task, or when asked to make an interface look or feel a certain way.

code-yeongyu/oh-my-openagent · 49 tokens

shiny-bslib-theming

Advanced theming for Shiny apps using bslib and Bootstrap 5. Use when customizing app appearance with bstheme(), Bootswatch themes, custom colors, typography, brand.yml integration, Bootstrap Sass variables, custom Sass/CSS rules, dark mode and color modes, dynamic theme switching, real-time theming, theme inspection…

posit-dev/skills · 87 tokens

tastemaker

Generate genuinely beautiful, on-brand UI instead of generic "AI slop" — use whenever the user asks to build, design, style, or improve a UI, landing page, dashboard, app screen, or component, whenever a PRD/spec needs a design pass before implementation, whenever the user pastes reference images/Pinterest/Dribbble…

codeswithroh/tastemaker · 202 tokens

interaction-skill

Layer A interaction-mechanics reference anchored to the beui.dev catalog. Stacks on any style skill whenever work adds or changes motion or interaction — micro-interactions, animated components, transitions, gestures, hover/press/state feedback, loading/success/error morphs, 'make it feel alive'. Mandates reading the…

code-yeongyu/oh-my-openagent · 104 tokens