design-analyzer

design-analyzer is an agent for Claude Code from Egonex-AI/Understand-Anything. It costs 56 tokens per session (641 once invoked), scanned A, original, MIT.

A Figma design analysis agent that adds meaning to already-parsed design data such as pages, screens, components, instances, and design tokens. Figma is a tool for creating and organizing interface designs.

In plain words
What is it for?
Use it to summarize screens and components, tag design elements, describe token roles, and add cautious relationships between related design nodes.
Why use it?
It explains what design elements are for and connects clearly related parts without inventing items that were not found in the design file.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the understand-anything plugin — 9 skills, 10 agents, 2 hooks shipped together

Good fit Use it to summarize screens and components, tag design elements, describe token roles, and add cautious relationships between related design nodes.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/egonex-ai/understand-anything/design-analyzer
About the project

Understand Anything analyzes codebases, knowledge bases, or documentation and turns their files, functions, classes, and dependencies into an interactive knowledge graph with summaries and relationships. It helps developers learn unfamiliar projects, explore structure, and ask questions through a visual dashboard. The catalogue entries are integrations for coding agents, including skills, agents, plugins, hooks, and instructions.

Egonex-AI/Understand-Anything · 81,691 stars · on GitHub · understand-anything.com

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/Egonex-AI/Understand-Anything

Made for: Claude Code.

Or install understand-anything, the plugin that ships this one along with the rest of its 9 skills, 10 agents, 2 hooks.

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 design-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/agents/egonex-ai/understand-anything/design-analyzer.svg)](https://agentmods.dev/agents/egonex-ai/understand-anything/design-analyzer)
Your own site
<a href="https://agentmods.dev/agents/egonex-ai/understand-anything/design-analyzer"><img src="https://agentmods.dev/badge/agents/egonex-ai/understand-anything/design-analyzer.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 641 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.00056 $0.00641
Opus 5 $0.00028 $0.00320
Sonnet 5 $0.00011 $0.00128
Haiku 4.5 $0.00006 $0.00064

Measured 8d ago against content hash 568bc73c7d54, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

design-analyzer 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 8d 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.

understand-anything-plugin/agents/design-analyzer.md · 52 lines

How it starts

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

Design Analyzer Agent

You enrich a Figma design graph. The deterministic parser already produced the structural nodes (pages, screens, components, component sets, instances, tokens) and structural edges (contains, instance_of, variant_of, uses_token). Your job is the semantic layer only.

Input

A JSON batch of manifest nodes. Each has:

  • id, type (page | screen | component | componentSet | instance | token), name
  • figmaMeta (dimensions, tokenKind, componentKey, etc.)
  • childSummary: names of notable children (for screens/components)
  • tokenUsage: token names this node uses (if any)

You also receive the full list of existing node IDs so you can reference them.

Task

For each node, produce an enrichment object:

  • summary: one or two sentences — what the screen/component is FOR (purpose), not a description of pixels. For tokens, state the role (e.g., "Primary brand color used on CTAs").
  • tags: 2–5 lowercase tags (feature area, role, state). Examples: auth, entry, cta, list, empty-state, primary.

Optionally, emit conservative related edges between nodes that clearly belong to the same feature/flow (e.g., two screens of the same onboarding flow). Only when names/structure make it obvious.

Rules

  1. Do NOT emit page/screen/component/componentSet/instance/token nodes — they already exist. Only enrichment + optional related edges.
  2. Do NOT re-emit structural edges (contains, instance_of, variant_of, uses_token).
  3. Use exact existing ids when emitting related edges.
  4. Be concise. For a batch of ~15 nodes, expect ~15 enrichments and 0–8 related edges.

Output Format

Write a JSON file to $INTERMEDIATE_DIR/analysis-batch-$BATCH_NUM.json:

{
  "nodes": [
    { "id": "screen:1:1", "summary": "The sign-in screen where returning users authenticate.", "tags": ["auth", "entry"] }
  ],
  "edges": [
    { "source": "screen:1:1", "target": "screen:1:5", "type": "related", "direction": "forward", "weight": 0.5, "description": "Both part of the sign-in flow" }
  ]
}

Read the full file on GitHub · 52 lines

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. 8d ago First seen · 52 lines · 56 tokens per session scan A 568bc73c7d54

Subscribe to this mod's changes

design-analyzer is an agent published in the GitHub repository Egonex-AI/Understand-Anything (81,691 stars, last pushed yesterday), licensed MIT. It adds 56 tokens to every session and 641 once invoked, about $0.0003 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 agents, from other repositories

maestro-impeccable-finish-reviewer

Reviews a finished Impeccable build against its direction contract, the approved comp, and the chosen world's quality bar, returning an ordered list of material fixes.

catlog22/maestro-flow · 43 tokens

svg-maker

Creates clean standalone SVG illustrations (spatial layouts, annotated figures, concept maps with precise positioning, simple scenes) and saves them into the Obsidian vault. Give it a concept, the exact output path, and any constraints.

Mohamed-El-Sharqawy/agent-tutor · 49 tokens

brainstorm-swarm:designer

Brainstorming persona — UX / Product Designer. Use when the swarm-protocol skill spawns parallel persona agents and a design perspective is needed. Asks about user flow, friction, accessibility, and aesthetic coherence.

viktorbezdek/skillstack · 50 tokens

ui-designer

Use this agent when UI/UX work is needed: creating custom SwiftUI components, implementing animations, fixing layout issues, polishing visual design, building a design system, or improving accessibility. For example: adding a custom tab bar animation, implementing a skeleton loading view, auditing VoiceOver support…

xvirobotics/metaskill · 75 tokens

ui-component-writer

Converts design inputs (screenshots, Figma exports, wireframe images, or text descriptions) into production-ready UI components that match the project's existing design system, naming conventions, and framework. Detects component libraries (shadcn/ui, MUI, Chakra, Ant Design), icon libraries, dark mode strategy…

mantacron/manta · 123 tokens

ux-designer

An interface-review role focused on how easily users can reach their goal, using screenshots, brand rules, and concrete design suggestions.

Avalon-27reg/smyslokod-starter · 50 tokens