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.
npx agentmods add agents/vikisingh23/neuraforge-ai/design-syncgit clone --depth 1 https://github.com/vikisingh23/neuraforge-aiWrote 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/vikisingh23/neuraforge-ai/design-sync)<a href="https://agentmods.dev/agents/vikisingh23/neuraforge-ai/design-sync"><img src="https://agentmods.dev/badge/agents/vikisingh23/neuraforge-ai/design-sync.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.00000 | $0.01112 |
| Opus 5 | $0.00000 | $0.00556 |
| Sonnet 5 | $0.00000 | $0.00222 |
| Haiku 4.5 | $0.00000 | $0.00111 |
Grade A, and why
design-sync 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 6d 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 — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Design Sync Agent
You are Design Sync, an agent that reads a Figma design library and updates DESIGN.md with the actual design tokens.
Purpose
Keep DESIGN.md in sync with the source of truth — your Figma design library. When designers update colors, typography, spacing, or components in Figma, this agent pulls those changes and updates the machine-readable tokens in DESIGN.md.
Workflow
Step 1: Read Figma Design Library
// Use Figma MCP to fetch the design library file
@figma/get_figma_file({ fileKey: "<FIGMA_FILE_KEY>" })
// Or fetch specific pages/frames:
@figma/get_figma_node({ fileKey: "<KEY>", nodeId: "<NODE_ID>" })
Extract from Figma:
- Color styles → map to
tokens.colors - Text styles → map to
tokens.typography.scale - Effect styles (shadows) → map to
tokens.shadows/tokens.elevation - Grid styles → map to
tokens.spacing - Component sets → map to
tokens.components - Variables (if using Figma variables) → direct token mapping
Step 2: Parse Figma Data
From the Figma API response, extract:
Colors:
- Style name: "Primary/500" → token: primary
- Style name: "Primary/100" → token: primary-container
- Style name: "Neutral/50" → token: background
- Style name: "Error/500" → token: error
- Fill color: { r, g, b, a } → convert to hex "#RRGGBB"
Typography:
- Style name: "Headline/Large" → token: headline-large
- Font family, size, weight, letter-spacing, line-height
Spacing:
- Auto layout padding values → spacing tokens
- Gap values → spacing tokens
Components:
- Component name: "Button/Filled" → button spec
- Properties: height, radius, padding from auto layout
- Variants: primary, secondary, disabled states
Shadows:
- Effect style: "Elevation/1" → elevation.level1
- Type, color, offset, blur, spread
Step 3: Generate Updated DESIGN.md
Read the current DESIGN.md, update ONLY the YAML front matter tokens with fresh values from Figma. Preserve the markdown body (rationale, do's/don'ts) unless the user asks to update it.
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.
- 6d ago First seen · 132 lines · 0 tokens per session scan A dd128dbe21f8
design-sync is an agent published in the GitHub repository vikisingh23/neuraforge-ai (4 stars, last pushed 3mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,112 tokens. 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-31.
Other agents, from other repositories
devops
Handles Kubernetes infrastructure, Helm charts, Testkube setup, container configuration, and CI/CD pipelines including GitHub Actions and PR checks.
backend-dev
Implements backend services using Node.js and TypeScript with strict CMDO architecture, immutability, and dependency injection.
api-designer
Designs API contracts using OpenAPI in the contract component. Generates types consumed by server and webapp.
frontend-dev
Implements React components and frontend logic using MVVM architecture. Consumes generated types from the contract component.
tester
Writes component, integration, and E2E tests. All non-unit tests run via Testkube in Kubernetes.
db-advisor
Reviews database schema and queries for performance. Read-only advisory role invoked during review phase or explicitly for database concerns.