بنقرة واحدة
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.