ワンクリックで
update-ghostclaw
Safely update GhostClaw to the latest version. Backs up, pulls, migrates, rebuilds, restarts, and verifies.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Safely update GhostClaw to the latest version. Backs up, pulls, migrates, rebuilds, restarts, and verifies.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Wire Gmail MCP server into the agent so it can read, search, and send emails. Optional — not core functionality.
Add Slack as a channel. Can replace WhatsApp entirely or run alongside it. Uses Socket Mode (no public URL needed).
Add Telegram as a channel. Can replace WhatsApp entirely or run alongside it. Also configurable as a control-only channel (triggers actions) or passive channel (receives notifications only).
Add Agent Swarm (Teams) support to Telegram. Each subagent gets its own bot identity in the group. Requires Telegram channel to be set up first (use /add-telegram). Triggers on "agent swarm", "agent teams telegram", "telegram swarm", "bot pool".
Add new capabilities or modify GhostClaw behavior. Use when user wants to add channels (Telegram, Slack, email input), change triggers, add integrations, modify the router, or make any other customizations. This is an interactive skill that asks questions to understand what the user wants.
Debug agent issues. Use when things aren't working, agent fails, authentication problems, or to understand how the system works. Covers logs, environment variables, sessions, and common issues.
| name | update-ghostclaw |
| description | Safely update GhostClaw to the latest version. Backs up, pulls, migrates, rebuilds, restarts, and verifies. |
Pulls the latest GhostClaw release, runs migrations, rebuilds, and restarts the service. Creates a backup tag before changing anything so the user can roll back.
Memory warning: Before proceeding, tell the user:
"⚠️ Heads up: updating will reset your active session. If you want to preserve recent conversation context, back up your memory files first:
groups/main/memory/— identity, state, and loggroups/main/CLAUDE.md— personalised soulThe update won't delete these files, but a fresh session after restart won't have the previous conversation in context."
Check that the working tree is clean:
git status --porcelain
If there's any output, stop and tell the user: "You have uncommitted changes. Commit or stash them first, then run /update-ghostclaw again."
Get the current version:
node -e "console.log(require('./package.json').version)"
Save this as OLD_VERSION.
Check for updates:
git fetch origin
git log HEAD..origin/main --oneline
If no new commits, tell the user: "GhostClaw is already up to date (vOLD_VERSION)." and stop.
Otherwise, show the user the list of incoming commits and how many there are. Ask: "These updates are available. Apply them?"
Create a backup tag so the user can roll back:
git tag "backup/pre-update-$(git rev-parse --short HEAD)-$(date +%s)"
Tell the user the tag name. Remind them they can roll back with:
git reset --hard <tag-name> && npm run build && launchctl kickstart -k gui/$(id -u)/com.ghostclaw
git merge origin/main
If there are merge conflicts, stop. Tell the user which files conflict and that they need to resolve manually. Do NOT force-resolve conflicts — this code runs bare metal with full system access.
npm install
This also runs the postinstall script which bootstraps agent-runner.
Get the new version:
node -e "console.log(require('./package.json').version)"
Save this as NEW_VERSION.
If NEW_VERSION differs from OLD_VERSION, run migrations:
npx tsx scripts/run-migrations.ts OLD_VERSION NEW_VERSION .
Report the migration results (how many ran, any failures).
If migrations fail, warn the user but continue — they may need to fix something manually.
If the upstream changed groups/main/CLAUDE.md.template or groups/global/CLAUDE.md.template, inform the user:
git diff HEAD~$(git log HEAD..origin/main --oneline | wc -l)..HEAD --name-only | grep 'CLAUDE.md.template'
If any templates changed, tell the user: "The CLAUDE.md template was updated upstream. Your personalised groups/main/CLAUDE.md is untouched — review the template changes if you want to incorporate any new sections."
npm run build
If the build fails, stop. Tell the user to check the error and fix it before restarting.
Run tests (non-blocking):
npm test
If tests fail, warn the user but don't block. They may have local customisations that diverge from upstream tests.
Clear all stored sessions so agents start fresh after restart (stale sessions from the previous version can cause auth or execution errors):
node -e "
const Database = require('better-sqlite3');
const db = new Database('store/messages.db');
const result = db.prepare('DELETE FROM sessions').run();
console.log('Cleared ' + result.changes + ' session(s)');
"
Report how many sessions were cleared.
Detect the platform and restart:
macOS (launchd):
launchctl kickstart -k gui/$(id -u)/com.ghostclaw
Linux (systemd):
systemctl --user restart ghostclaw
Fallback (nohup/other): Tell the user to restart manually.
To detect: check if launchctl list 2>/dev/null | grep com.ghostclaw finds something (macOS), otherwise check if systemctl --user is-active ghostclaw 2>/dev/null works (Linux).
Wait 3 seconds, then check the service is running:
macOS:
launchctl list | grep com.ghostclaw
Linux:
systemctl --user is-active ghostclaw
Report to the user:
If the service isn't running, tell the user to check logs/ghostclaw.error.log.
If something goes wrong after an update:
git reset --hard <backup-tag>
npm install
npm run build
# Then restart the service (launchctl/systemctl)
The backup tag is printed during step 2 and again in the final summary.