Technical & DevelopmentIntermediate
gstack-upgrade
Self-Updater: upgrade gstack to latest version
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/garrytan/gstack --skill gstack-upgradenpx skills add https://github.com/garrytan/gstack --skill gstack-upgradeOr paste this URL into your assistant to install:
Overview
What This Skill Does
Self-Updater: upgrade gstack to latest version
Application
When to use this Skill
- Integrating gstack upgrade into your development workflow.
- Following best practices for self-updater: upgrade gstack to latest version.
- Automating repetitive tasks with AI-assisted tooling.
- Building production-grade applications with proper standards.
- Debugging and troubleshooting common implementation issues.
Documentation
Show Skills.md file
When to invoke this skill
Detects global vs vendored install, runs the upgrade, and shows what's new. Use when asked to "upgrade gstack", "update gstack", or "get latest version".
Voice triggers (speech-to-text aliases): "upgrade the tools", "update the tools", "gee stack upgrade", "g stack upgrade".
/gstack-upgrade
Upgrade gstack to the latest version and show what's new.
Inline upgrade flow
This section is referenced by all skill preambles when they detect UPGRADE_AVAILABLE.
Step 1: Ask the user (or auto-upgrade)
First, check if auto-upgrade is enabled:
_AUTO=""
[ "${GSTACK_AUTO_UPGRADE:-}" = "1" ] && _AUTO="true"
[ -z "$_AUTO" ] && _AUTO=$(~/.claude/skills/gstack/bin/gstack-config get auto_upgrade 2>/dev/null || true)
echo "AUTO_UPGRADE=$_AUTO"
Lines 1 - 29 of 270
Recommendations