actualizar

actualizar is a command for Claude Code from doncheli/don-cheli-sdd. It costs 12 tokens per session (1,512 once invoked), scanned C, original, Apache-2.0.

An updater that checks whether a locally installed Don Cheli framework has a newer version available in its repository.

In plain words
What is it for?
Use it to check for updates, view changes between versions, and apply an update when one is available.
Why use it?
It avoids manually checking versions and reviewing the changes between the installed and available releases.

Command for Claude Code

Written for Claude Code: Claude Code plugin machinery. Also seen: mentions Claude Code.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is cd "$TEMP" && bash scripts/instalar.sh --global.

Part of the don-cheli-sdd plugin — 28 skills, 115 commands, 1 agent shipped together

Good fit Use it to check for updates, view changes between versions, and apply an update when one is available.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/doncheli/don-cheli-sdd
agentmods
npx agentmods add commands/doncheli/don-cheli-sdd/actualizar

Made for: Claude Code.

Or install don-cheli-sdd, the plugin that ships this one along with the rest of its 28 skills, 115 commands, 1 agent.

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 actualizar

README.md
[![agentmods](https://agentmods.dev/badge/commands/doncheli/don-cheli-sdd/actualizar/github.svg)](https://agentmods.dev/commands/doncheli/don-cheli-sdd/actualizar)
Your own site
<a href="https://agentmods.dev/commands/doncheli/don-cheli-sdd/actualizar"><img src="https://agentmods.dev/badge/commands/doncheli/don-cheli-sdd/actualizar/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 actualizar

Your own site · 80×15
<a href="https://agentmods.dev/commands/doncheli/don-cheli-sdd/actualizar"><img src="https://agentmods.dev/badge/commands/doncheli/don-cheli-sdd/actualizar.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 12 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,512 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.00012 $0.01512
Opus 5 $0.00006 $0.00756
Sonnet 5 $0.00002 $0.00302
Haiku 4.5 $0.00001 $0.00151

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

Security

Grade C, and why

actualizar scanned grade C with 2 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 7d 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf "$TEMP"

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

VERSION_REMOTA=$(curl -s https://raw.githubusercontent.com/doncheli/don-cheli-sdd/main/VERSION)
scripts/.claude/commands/dc/actualizar.md · 201 lines

How it starts

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

/dc:actualizar

Objetivo

Verificar si hay actualizaciones disponibles en el repositorio de Don Cheli y ofrecer aplicarlas.

Uso

/dc:actualizar
/dc:actualizar --verificar    # Solo verificar, no aplicar
/dc:actualizar --forzar       # Aplicar sin confirmar

Proceso

1. Detectar instalación

# Verificar dónde está instalado
GLOBAL="$HOME/.claude/don-cheli"
LOCAL="./.claude/don-cheli"

if [ -f "$GLOBAL/VERSION" ]; then
  INSTALACION="$GLOBAL"
elif [ -f "$LOCAL/VERSION" ]; then
  INSTALACION="$LOCAL"
else
  echo "Don Cheli no está instalado"
  exit 1
fi

VERSION_LOCAL=$(cat "$INSTALACION/VERSION")

2. Verificar versión remota

VERSION_REMOTA=$(curl -s https://raw.githubusercontent.com/doncheli/don-cheli-sdd/main/VERSION)

3. Comparar

=== Verificación de Actualización ===

Versión instalada: 1.6.0
Versión disponible: 1.7.0

Estado: ⚠️ Actualización disponible

4. Mostrar cambios

Obtener el changelog entre versiones:

# Mostrar commits entre versiones
curl -s "https://api.github.com/repos/doncheli/don-cheli-sdd/compare/v${VERSION_LOCAL}...v${VERSION_REMOTA}" \
  | jq '.commits[].commit.message'

5. Preguntar al usuario

¿Deseas actualizar Don Cheli de v1.6.0 a v1.7.0? (s/n)

6. Aplicar actualización

# Clonar versión nueva en temporal
TEMP=$(mktemp -d)
git clone --depth 1 https://github.com/doncheli/don-cheli-sdd.git "$TEMP"

# Ejecutar instalador
cd "$TEMP" && bash scripts/instalar.sh --global

# Limpiar
rm -rf "$TEMP"

Output

=== Actualización Completada ===

✅ Don Cheli actualizado: v1.6.0 → v1.7.0

Cambios aplicados:
- 3 habilidades nuevas
- 2 comandos nuevos
- 5 archivos actualizados

Reinicia Claude Code para aplicar los cambios.

Verificación de Anthropic Skills 2.0

Además de actualizar el framework, este comando verifica la conformidad con el estándar Anthropic Agent Skills.

Proceso de verificación

1. FETCH — Obtener spec y template desde el repo oficial
   ├── https://github.com/anthropics/skills/blob/main/spec/agent-skills-spec.md
   ├── https://github.com/anthropics/skills/blob/main/template/SKILL.md
   └── https://agentskills.io/specification (spec completa)

2. COMPARE — Comparar con el formato actual del framework
   ├── Campos requeridos en frontmatter (name, description)
   ├── Campos nuevos agregados al spec
   ├── Convenciones de naming (lowercase, hyphens, max 64 chars)
   ├── Estructura de directorios (skill-name/SKILL.md)
   └── Features nuevas (hooks, allowed-tools, model, effort, etc.)

3. AUDIT — Validar archivos del framework
   ├── Comandos en comandos/especdev/*.md → frontmatter válido
   ├── Comandos en comandos/razonar/*.md → frontmatter válido
   ├── Skills en .agent/skills/*/SKILL.md → conformidad Anthropic
   ├── Habilidades en habilidades/*/HABILIDAD.md → formato extendido
   └── Naming conventions en todos los archivos

4. REPORT — Generar reporte de conformidad

Read the full file on GitHub · 201 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. 7d ago First seen · 201 lines · 12 tokens per session scan C c261f33c24ad

Subscribe to this mod's changes

actualizar is a command published in the GitHub repository doncheli/don-cheli-sdd (57 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 12 tokens to every session and 1,512 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.