一键导入
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.