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.
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.
git clone --depth 1 https://github.com/Egonex-AI/Understand-AnythingWrote 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.
[](https://agentmods.dev/agents/egonex-ai/understand-anything/design-analyzer)<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>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.
| Model | Per session | Once 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 |
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.
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),namefigmaMeta(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
- Do NOT emit
page/screen/component/componentSet/instance/tokennodes — they already exist. Only enrichment + optionalrelatededges. - Do NOT re-emit structural edges (
contains,instance_of,variant_of,uses_token). - Use exact existing
ids when emittingrelatededges. - Be concise. For a batch of ~15 nodes, expect ~15 enrichments and 0–8
relatededges.
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" }
]
}
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.
- 8d ago First seen · 52 lines · 56 tokens per session scan A 568bc73c7d54
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.
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.
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.
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.
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…
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…
ux-designer
An interface-review role focused on how easily users can reach their goal, using screenshots, brand rules, and concrete design suggestions.