enu: Skill for Claude Code

.claude/skills/sync-web/SKILL.md

sync-web is a skill for Claude Code from dbareagimeno/enu. It costs 89 tokens per session (1,076 once invoked), scanned A, original, Apache-2.0.

A workflow for keeping a documentation website aligned with its API specification. The API specification is the source of truth, while the website presents it in more task-focused language.

In plain words
What is it for?
Use it after changing API definitions or when a drift check fails, to run the detector and update the affected documentation pages.
Why use it?
It helps find and correct differences between documented API signatures and the pages users read.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is dbareagimeno/enu's own configuration. It tells Claude Code how to work on enu itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything enu configures →

Reuse

Borrowing it

Nothing to install: this file belongs to dbareagimeno/enu. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/dbareagimeno/enu/develop/.claude/skills/sync-web/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dbareagimeno/enu

Made for: Claude Code.

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 sync-web

README.md
[![agentmods](https://agentmods.dev/badge/skills/dbareagimeno/enu/sync-web.svg)](https://agentmods.dev/skills/dbareagimeno/enu/sync-web)
Your own site
<a href="https://agentmods.dev/skills/dbareagimeno/enu/sync-web"><img src="https://agentmods.dev/badge/skills/dbareagimeno/enu/sync-web.svg" alt="Measured on agentmods" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,076 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.00089 $0.01076
Opus 5 $0.00044 $0.00538
Sonnet 5 $0.00018 $0.00215
Haiku 4.5 $0.00009 $0.00108

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

Security

Grade A, and why

sync-web 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.

.claude/skills/sync-web/SKILL.md · 66 lines

How it starts

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

Sincronizar la web con la espec

La web (web/src/content/docs/referencia/) es una presentación derivada de docs/contracts/api.md: orientada a tareas, con prosa pedagógica y ejemplos verificados. La deriva mecánica (firmas, marcadores ⏸/[W], inventario) la detecta un script determinista; esta skill es la parte editorial que el script no puede hacer: redactar y verificar.

Protocolo

  1. Corre el detector: node web/scripts/check-drift.mjs (o npm run check:drift desde web/). Cada discrepancia trae fichero:línea y qué dice cada lado. --inventario vuelca el índice derivado de api.md en JSON.

  2. Decide la dirección del arreglo. docs/contracts/api.md manda siempre (web/README.md lo declara). Si al mirar una discrepancia concluyes que la espec está mal, eso no se arregla editando la web ni la espec a la ligera: es un candidato a hallazgo → /hallazgo. Todo lo demás se arregla en la web.

  3. Aplica las correcciones respetando las convenciones de las páginas:

    • Las firmas viven en fences sin etiqueta (las etiquetadas lua/sh son ejemplos y el detector las ignora). Texto de la firma idéntico al de api.md, espacios aparte; los métodos de un handle van indentados bajo la función que lo devuelve (nu.task.every(ms, fn) -> Timer + Timer:stop()).
    • Marcadores ⏸/[W]: en el heading que nombra la función (## nu.fs.read ⏸ [W]`; un heading de módulo como `## `nu.json [W]` cubre sus funciones), o inline en la línea de la firma cuando el heading agrupa sin nombrar ("Manipulación", "Mensajes"). Un heading que nombra a X no contagia marcadores a los métodos listados debajo: estos los llevan inline.
    • Comentarios de cola con -- (el detector los recorta antes de comparar).
    • convenciones.md y cli.md no declaran API: el detector las excluye.
  4. Función o namespace nuevo en api.md: sección nueva en la página del namespace (o página nueva en referencia/ + entrada en el sidebar de web/astro.config.mjs), imitando el tono de las existentes: qué es, la fence de firma, prosa del porqué y un ejemplo.

Read the full file on GitHub · 66 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 · 66 lines · 89 tokens per session scan A 73b2189a9d14

Subscribe to this mod's changes

sync-web is a skill published in the GitHub repository dbareagimeno/enu (2 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 89 tokens to every session and 1,076 once invoked, about $0.0004 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

codex-claude-worker

Translate natural-language user requests into bounded Claude Code worker tasks while Codex or ChatGPT remains the supervisor. Use when the user gives an ordinary prompt and wants Codex to clarify scope, choose a safe work boundary, generate a worker prompt, approve or defer worker execution, read run summaries and…

zhuzai-2007/claude-code-mcp-harness · 86 tokens

source-research

Research open-source libraries with evidence-backed answers and GitHub permalinks. Use when the user asks about library internals, needs implementation details with source code references, wants to understand why something was changed, or needs authoritative answers backed by actual code. Excels at navigating large…

aretw0/agents-lab · 71 tokens

provider-model-discovery

Descobre e seleciona modelos de providers LLM de forma report-only: inventário read-only de modelos, docs oficiais, quota/billing/rate gates e shortlist para canary protegido. Use antes de adicionar providers, escolher modelos ou migrar monitores/roteamento.

aretw0/agents-lab · 60 tokens

control-plane-continuity

Use when a Pi session needs to continue local-safe work with low operator friction: discover focus, interview only for missing constraints, prepare bounded slices, use workers only behind gates, checkpoint, and stop on real risk.

aretw0/agents-lab · 49 tokens

pi-dev-workflow

Como configurar o workflow de desenvolvimento de extensões e pacotes pi. Use quando o usuário estiver desenvolvendo extensões em um monorepo, precisar alternar entre código local e pacotes publicados, ou tiver conflitos de carregamento de pacotes.

aretw0/agents-lab · 55 tokens

control-plane-ops

Operar o control-plane local-first do agents-lab com board canônico, long-runs bounded, handoff/checkpoint, rollout/rollback e espelhos externos sem perder governança.

aretw0/agents-lab · 43 tokens