con un clic
redsub-update
Check plugin version updates and Claude Code compatibility.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Check plugin version updates and Claude Code compatibility.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Enforced release pipeline. Save → Validate → Review → Version → Merge → Tag → Push.
Initial plugin setup. Register plugins, permissions, create CLAUDE.md.
Diagnose and auto-repair plugin integrity.
Collaborative design through Socratic dialogue. Turn rough ideas into validated designs.
Deployment workflow for dev/prod environments.
Execute implementation plan task-by-task with subagent dispatch and 2-stage review.
| name | redsub-update |
| description | Check plugin version updates and Claude Code compatibility. |
Execute the core update script that handles all internal operations (version check, git pull, cache creation, installed_plugins.json update) in a single call:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/update-core.sh" "${CLAUDE_PLUGIN_ROOT}"
Parse the JSON output. The result has this structure:
{
"status": "up_to_date | updated | error",
"old_version": "X.X.X",
"new_version": "X.X.X",
"template_changed": true,
"template_old": "X.X.X",
"template_new": "X.X.X",
"message": ""
}
status = "error": report the message and stop.status = "up_to_date": report "Up to date (vX.X.X)" and stop.status = "updated": proceed to step 3.If template_changed is false, skip to step 4.
Use AskUserQuestion:
If user chooses "Update", run the merge script:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/merge-template.sh" "${CLAUDE_PLUGIN_ROOT}" merge
Parse the JSON output and report the result.
Updated: vOLD → vNEW
Restart the session to apply changes.