design-verification

design-verification is a skill for OpenCode from cruzs85/opencode-multiagente-local-37-iterations. It costs 34 tokens per session (834 once invoked), scanned A, original, MIT.

A checklist for comparing implemented visual components with a defined user-interface design system.

In plain words
What is it for?
Use it after building visual parts of the Dinosaur Runner game, such as menus, screens, the game board, or score display.
Why use it?
It detects differences in colors, fonts, spacing, and visual effects before the interface is considered complete.

Skill for OpenCode

Written for OpenCode: installed under .opencode/.

Good fit Use it after building visual parts of the Dinosaur Runner game, such as menus, screens, the game board, or score display.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cruzs85/opencode-multiagente-local-37-iterations/design-verification
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.

Any agent
npx skills add cruzs85/opencode-multiagente-local-37-iterations --skill design-verification
Clone the repo
git clone --depth 1 https://github.com/cruzs85/opencode-multiagente-local-37-iterations

Made for: OpenCode.

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-verification

README.md
[![agentmods](https://agentmods.dev/badge/skills/cruzs85/opencode-multiagente-local-37-iterations/design-verification/github.svg)](https://agentmods.dev/skills/cruzs85/opencode-multiagente-local-37-iterations/design-verification)
Your own site
<a href="https://agentmods.dev/skills/cruzs85/opencode-multiagente-local-37-iterations/design-verification"><img src="https://agentmods.dev/badge/skills/cruzs85/opencode-multiagente-local-37-iterations/design-verification/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 design-verification

Your own site · 80×15
<a href="https://agentmods.dev/skills/cruzs85/opencode-multiagente-local-37-iterations/design-verification"><img src="https://agentmods.dev/badge/skills/cruzs85/opencode-multiagente-local-37-iterations/design-verification.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 834 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.00034 $0.00834
Opus 5 $0.00017 $0.00417
Sonnet 5 $0.00007 $0.00167
Haiku 4.5 $0.00003 $0.00083

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

Security

Grade A, and why

design-verification 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.

configuraciones/configuracion-16(agentes-ui-analyst)/.opencode/skills/design-verification/SKILL.md · 74 lines

How it starts

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

Design Verification — Dinosaur Runner

Objetivo

Verificar que los componentes HTML/SCSS implementados coincidan con las especificaciones visuales definidas en ui-design-system.

Cuándo usarla

Debe cargarla @verifier DESPUÉS de que code-writer complete un lote de componentes visuales (welcome-screen, game-board, game-over, menús, HUD).

Cómo usarla

Paso 1: Identificar los archivos SCSS modificados

Usar glob para encontrar los archivos .component.scss del lote actual.

Paso 2: Verificar uso de variables CSS (OBLIGATORIO)

Para cada archivo SCSS, verificar que NO contenga colores hex hardcodeados que DEBERÍAN ser variables del design system.

Excepciones permitidas (colores que pueden ser hardcodeados):

  • Colores dentro de Canvas 2D (ctx.fillStyle, ctx.strokeStyle) — el canvas usa shadowColor/shadowBlur
  • Gradientes específicos no definidos en el design system
  • Colores de animaciones keyframe

Regla: Si existe # seguido de 3 o 6 dígitos hex FUERA de un contexto Canvas 2D, debe ser una variable CSS var(--...).

Excepciones:

  • #000 y #fff o #ffffff (blanco y negro básicos)
  • Colores dentro de strings de canvas (ctx.fillStyle = '#39ff14')
  • Animaciones @keyframes

Paso 3: Verificar fuente tipográfica

Para cada archivo SCSS, verificar que:

  • font-family incluya 'Inter' o 'Press Start 2P' según el contexto
  • No use fuentes genéricas serif donde debería usar Inter

Paso 4: Verificar efectos neon (donde aplica)

Para componentes que tengan botones o elementos interactivos:

  • Deben usar box-shadow con colores neon o var(--neon-*)
  • Deben usar border: 1px solid con color neon

Paso 5: Verificar espaciado

  • Los márgenes/paddings deben usar var(--space-*) o valores consistentes con la escala (4, 8, 16, 24, 40, 64px)

Formato de reporte

🔍 VERIFICACIÓN DE DISEÑO
Archivos revisados: [lista]
CSS variables: ✅ Usa var(--neon-*) correctamente | ❌ Hex hardcodeado: [línea]
Fuentes: ✅ Inter/Press Start 2P | ❌ Fuente incorrecta: [detalle]
Neon effects: ✅ Presentes | ❌ Faltantes: [detalle]
Espaciado: ✅ Usa escala del design system | ❌ Inconsistencias: [detalle]

Read the full file on GitHub · 74 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. 12d ago First seen · 74 lines · 34 tokens per session scan A 7d63cb3216a3

Subscribe to this mod's changes

design-verification is a skill published in the GitHub repository cruzs85/opencode-multiagente-local-37-iterations (5 stars, last pushed 2mo ago), licensed MIT. It adds 34 tokens to every session and 834 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-31.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ultragoal with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 52 tokens

accessibility

Consolidated accessibility skill entrypoint for WCAG 2.2, ARIA Authoring Practices, cognitive accessibility, Section 508, EN 301 549, design intent verification, and the Accessibility Planner workflow.

microsoft/hve-core · 47 tokens

make-resume

A Chinese-language tool for creating editable HTML resumes that can be changed in a browser and printed to PDF. It uses available resume templates when they are installed and otherwise provides a simpler fallback.

Hisn00w/ASu-skills · 86 tokens