원클릭으로
redsub-update
Check plugin version updates and Claude Code compatibility.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Check plugin version updates and Claude Code compatibility.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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.