用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/josiahlandes/Casterly-Rock --skill self-update命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Slice 3D models, manage print presets, upload to printer, and monitor print jobs on Elegoo Centauri Carbon
Query Apple Calendar events via AppleScript on macOS. View today's events, upcoming schedule, or events on specific dates.
Send iMessages to contacts via AppleScript. Can send to phone numbers or Apple IDs.
基于 SOC 职业分类
正在显示 SKILL.md
| name | self-update |
| description | Check for updates and update Tyrion to the latest version |
Update Tyrion to the latest version from the git repository.
Check if updates are available without applying them:
./scripts/self-update.sh --check
Returns:
Pull the latest changes and rebuild:
./scripts/self-update.sh
This will:
Update and automatically restart the service:
./scripts/self-update.sh --restart
The restart is handled gracefully:
Force a pull even if already up to date:
./scripts/self-update.sh --force
Update from a specific branch:
./scripts/self-update.sh --branch develop
git stash popUpdate logs are written to:
~/.casterly/logs/update.log
Update when:
Always ask before restarting - the user might be in the middle of something.
User: "Are there any updates available?"
→ Run check_for_updates()
User: "Update yourself"
→ Run update_tyrion(restart=false), then ask if they want to restart
User: "Update and restart"
→ Run update_tyrion(restart=true)
User: "Something's broken, can you restart?"
→ Run restart_tyrion(confirm=true)