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.
git clone --depth 1 https://github.com/doncheli/don-cheli-sddnpx agentmods add commands/doncheli/don-cheli-sdd/actualizarWrote 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/commands/doncheli/don-cheli-sdd/actualizar)<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.
<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>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.00012 | $0.01512 |
| Opus 5 | $0.00006 | $0.00756 |
| Sonnet 5 | $0.00002 | $0.00302 |
| Haiku 4.5 | $0.00001 | $0.00151 |
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) 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
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.
- 7d ago First seen · 201 lines · 12 tokens per session scan C c261f33c24ad
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.
Other commands, from other repositories
add-phase
Add phase to end of current milestone in roadmap.
insert-phase
Insert urgent work as decimal phase (e.g., 72.1) between existing phases.
remove-phase
Remove a future phase from roadmap and renumber subsequent phases.
research-phase
Research how to implement a phase (standalone — usually use /pbr:plan-phase instead).
reapply-patches
Reapply local modifications after a PBR update.
add-todo
Capture idea or task as todo from current conversation context.