Agent Skills
› davepoon/buildwithclaude
› gsd:update
gsd:update
GitHub检测GSD最新版本,若可用则提示用户并执行更新。流程涵盖版本对比、变更日志展示、清理警告确认、安装执行及缓存清除,最后提醒重启服务。
Trigger Scenarios
用户要求更新GSD
检查GSD是否有新版本
Install
npx skills add davepoon/buildwithclaude --skill gsd:update -g -y
SKILL.md
Frontmatter
{
"name": "gsd:update",
"description": "Update GSD to latest version with changelog display",
"allowed-tools": [
"Bash",
"AskUserQuestion"
]
}
Routes to the update workflow which handles:
- Version detection (local vs global installation)
- npm version checking
- Changelog fetching and display
- User confirmation with clean install warning
- Update execution and cache clearing
- Restart reminder
<execution_context> @${CLAUDE_PLUGIN_ROOT}/workflows/update.md </execution_context>
The workflow handles all logic including:
- Installed version detection (local/global)
- Latest version checking via npm
- Version comparison
- Changelog fetching and extraction
- Clean install warning display
- User confirmation
- Update execution
- Cache clearing
Version History
- 502fc01 Current 2026-07-05 15:15


