Audit a Penpot design for design-system / token GOVERNANCE issues (distinct from accessibility): hardcoded colors where a token exists, off-grid spacing, orphan/unresolved/unused tokens, duplicated values, and detached parts that should be component instances. Produces a severity report and suggests semantic-token swaps. Triggers: 'audit tokens', 'find hardcoded colors', 'token governance', 'check design system consistency', 'find off-grid spacing', 'detect raw values', 'are we using tokens correctly'.
Audit a Penpot design for design-system / token GOVERNANCE issues (distinct from accessibility): hardcoded colors where a token exists, off-grid spacing, orphan/unresolved/unused tokens, duplicated values, and detached parts that should be component instances. Produces a severity report and suggests semantic-token swaps. Triggers: 'audit tokens', 'find hardcoded colors', 'token governance', 'check design system consistency', 'find off-grid spacing', 'detect raw values', 'are we using tokens correctly'.
penpot-audit-tokens enforces token governance — a concern separate from accessibility. Every
mutation goes through execute_code; validate visually with export_shape; read structure with
penpotUtils.shapeStructure (full tool surface: shared/penpot-mcp-tool-reference.md). It collects
every fill/stroke/spacing/radius value, compares
against the active token system (penpotUtils.tokenOverview()), and reports hardcoded values, off-grid
spacing, orphan/unresolved tokens, and duplicates — each with a suggested semantic-token swap.
2. The One Rule That Matters Most
Suggest, and only auto-swap exact equalities. The single safe auto-fix is replacing a raw value
that is exactly equal to an existing token's resolved value with that token. Everything else
(near-matches, off-grid rounding, new tokens) is a suggestion for review.
3. Penpot MCP Tool Reference
Full surface: shared/penpot-mcp-tool-reference.md. Key calls: execute_code with
penpotUtils.analyzeDescendants (collect values) and penpotUtils.tokenOverview() /
findTokenByName (the token system to compare against).
4. Plugin API Essentials
Read raw values from shape.fills/shape.strokes (hex), shape.borderRadius*, flex rowGap/columnGap/*Padding, layout margins.
A shape's applied tokens are in shape.tokens ({ property: tokenName }). A property with a raw value but no entry there is "hardcoded".
Token resolved values via token.resolvedValue. Use exact token type strings from shared/tokens-schema.json.
Comparisons are read-only; the only mutation (exact-equality swap) uses shape.applyToken — #2 in shared/plugin-api-gotchas.md: async, chunked, verify in a later call.
Verify unfamiliar signatures with penpot_api_info before relying on them.
5. Token-Aware Brief Contract
Context — scope (page/selection/library), the active token system.
Objective — single: "audit token governance of X".
Inputs — target shapes, the 4px grid, the active token sets.
Acceptance Criteria — all raw values reported; off-grid spacing listed; orphan/unused tokens found; each finding has a suggested token + confidence.
Act as a design-system governance engineer.
6. Mandatory Workflow
Phase 0 — Inspection.high_level_overview; collect usage with scripts/collectStyleUsage.js and the token system with tokenOverview() (references/01-inspection.md).
Phase 1 — Hardcoded values.scripts/detectHardcodedValues.js (references/02-hardcoded-value-detection.md) — raw fills/strokes vs tokens; mark exact-equal vs near-match.
Phase 3 — Report.scripts/generateTokenReport.js (references/04-report-generation.md). ✋ Checkpoint: present findings; offer to auto-apply ONLY the exact-equality swaps (Apply-with-review), route the rest (new tokens, rounding) to penpot-foundations.
7. Critical Rules
Governance ≠ accessibility — keep scope to tokens/system consistency.
Only exact-equality raw→token swaps are auto-applicable (safe set).
Off-grid spacing → suggest nearest 4px token; never silently round.
New tokens are proposed, not created here (hand off to penpot-foundations).
Every finding: severity + impact + suggested token + confidence.
The final report must ALSO be emitted as a JSON object per shared/report-schemas/token-governance-report.schema.json (findings carry exactMatch — only exact-equality swaps are safe-set) and mirrored to the run ledger.
9. Modes & Policies
Default suggest. The only auto-fix (per shared/modes-and-policies.md safe set) is the exact-equality
swap, and only with explicit opt-in at the checkpoint. Geometry, new tokens, detach: never auto.
10. State Management
Ledger under RUN_ID: phase, findings:[...], autoSwapped:[...], sampled.
11. User Checkpoints
After phase
Artifacts
Ask
3 Report
governance report
Auto-apply exact swaps? Route the rest to foundations?
12. Naming Conventions
shared/naming-conventions.md + shared/tokens-schema.json (dot-notation, real type strings).
13. Anti-Rationalization Table
Excuse
Why it's wrong
Countermeasure (halt)
"This raw hex is basically the token."
"Basically" ≠ exact; silent swaps corrupt intent.
Auto-swap ONLY on exact equality; otherwise suggest with confidence.
"I'll just create the missing token and swap."
New tokens are a foundations decision.
Propose the token; route creation to penpot-foundations.
"Round 18px to 16px automatically."
Off-grid rounding can shift layout.
Suggest the nearest 4px token; require review.
"Skip orphan/unused token check."
Orphans are silent debt.
Run the full grid/orphan pass.
"It's a small file, eyeball it."
Misses systematic raw usage.
Walk the tree programmatically; report counts.
14. Helper Code Snippets
// Is a property hardcoded? (raw value present, no token bound)functionisHardcoded(shape, prop){
const hasRaw = prop === 'fill' ? (shape.fills||[]).length>0 : shape[prop] != null;
const bound = shape.tokens && shape.tokens[prop];
return hasRaw && !bound;
}
return { ok: true };