From money-upgrade
Upgrades show-me-the-money Claude skills suite to latest version via npx CLI or manual bash steps including version checks, backups, installation, verification, changelog display, rollback, and cleanup.
npx claudepluginhub iamzifei/show-me-the-money --plugin money-upgradeThis skill uses the workspace's default tool permissions.
Upgrade the show-me-the-money skill suite to the latest version.
Applies Acme Corporation brand guidelines including colors, fonts, layouts, and messaging to generated PowerPoint, Excel, and PDF documents.
Builds DCF models with sensitivity analysis, Monte Carlo simulations, and scenario planning for investment valuation and risk assessment.
Calculates profitability (ROE, margins), liquidity (current ratio), leverage, efficiency, and valuation (P/E, EV/EBITDA) ratios from financial statements in CSV, JSON, text, or Excel for investment analysis.
Share bugs, ideas, or general feedback.
Upgrade the show-me-the-money skill suite to the latest version.
If the user's message contains a [Language: ...] tag, use that language for all output. Otherwise, ask the user to choose before proceeding:
π Choose your language / ιζ©θ―θ¨:
- π¬π§ English
- π¨π³ δΈζ
Default to English if the user doesn't specify. All subsequent output must be in the chosen language.
The fastest way to update is the built-in CLI command. It checks for a new version, downloads it, and re-installs all skills in one step:
npx @orrisai/show-me-the-money update
If you prefer more control, follow the manual steps below.
Read the VERSION file from the installed skill directory:
cat ~/.claude/skills/money/../../VERSION 2>/dev/null || echo "Unknown"
Or check via CLI:
npx @orrisai/show-me-the-money version
npm view @orrisai/show-me-the-money version
BACKUP_DIR=~/.claude/skills-backup/money-$(date +%Y%m%d-%H%M%S)
mkdir -p "$BACKUP_DIR"
for dir in money money-discover money-strategy money-product money-content money-outreach money-social money-seo money-ads money-ops money-finance money-upgrade; do
[ -d ~/.claude/skills/$dir ] && cp -r ~/.claude/skills/$dir "$BACKUP_DIR/"
done
echo "Backup saved to $BACKUP_DIR"
npx @orrisai/show-me-the-money@latest install
~/.claude/skills/Display what's new in this version (from the GitHub releases page or CHANGELOG).
If the upgrade fails or causes issues:
# Find the latest backup
ls -la ~/.claude/skills-backup/
# Restore from backup
BACKUP_DIR=~/.claude/skills-backup/money-XXXXXXXX-XXXXXX
for dir in "$BACKUP_DIR"/*/; do
dir_name=$(basename "$dir")
rm -rf ~/.claude/skills/$dir_name
cp -r "$dir" ~/.claude/skills/$dir_name
done
echo "Rolled back to backup version."
Remove old backups (keep last 3):
cd ~/.claude/skills-backup && ls -dt money-* | tail -n +4 | xargs rm -rf