money-upgrade
Money Upgrade — Version Management
Upgrade the show-me-the-money skill suite to the latest version.
Language Selection
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.
Quick Update (Recommended)
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.
Manual Upgrade Process
Step 1: Check Current Version
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
Step 2: Check Latest Version
npm view @orrisai/show-me-the-money version
Step 3: Compare Versions
- If current == latest: "You're on the latest version (vX.X.X)."
- If current < latest: Proceed to upgrade.
Step 4: Backup Current Installation
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"
Step 5: Install Latest Version
npx @orrisai/show-me-the-money@latest install
Step 6: Verify Installation
- Check that all 12 skill directories exist in
~/.claude/skills/ - Read the new VERSION file
- Confirm the upgrade was successful
Step 7: Show Changelog
Display what's new in this version (from the GitHub releases page or CHANGELOG).
Rollback
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."
Cleanup
Remove old backups (keep last 3):
cd ~/.claude/skills-backup && ls -dt money-* | tail -n +4 | xargs rm -rf
More from iamzifei/show-me-the-money
money-strategy
Create comprehensive business strategy with premise deconstruction, business model stress test, pricing, go-to-market plan, and competitive positioning. Runs a 4-layer premise audit before strategy, then generates a full market research report with SWOT, 4P, 10-point business model validation, and constraint analysis. Use when the user has an idea and needs a strategic plan, competitive analysis, pricing strategy, GTM plan, or says 'business plan', 'strategy', 'pricing', 'go-to-market', or 'competitive analysis'.
8money-product
Build the actual product — from landing page to deployed MVP with payment integration, QA testing, and post-deploy canary monitoring. Handles code generation, deployment, database setup, authentication, Stripe/payment integration, systematic QA protocol, and production health scoring. Use when the user needs to build something, deploy a product, set up payments, create a landing page, or says 'build this', 'deploy', 'create MVP', 'set up payments', or 'ship it'.
8money-discover
Discover profitable business ideas from scratch. Analyzes market gaps, trending niches, user skills, and competitive landscapes with a competitive intelligence protocol including 4-filter benchmark stress test and Blue Ocean differentiation grid. Use when the user has no idea what to build, wants to explore opportunities, needs market research, competitive benchmarking, or says 'find me a business idea', 'what should I build', 'market research', 'find opportunities', or 'competitive analysis'.
8money
Main entry point for the Show Me The Money business automation suite. Routes to specialized skills for building and running a 24/7 automated business from scratch. Use when the user wants to start a business, automate operations, generate revenue, find product ideas, set up marketing, or run any business function autonomously. Also use when the user says 'show me the money', 'make money', 'start a business', 'automate my business', or 'build a company'.
8money-social
Social media management and community building automation. Creates content calendars, drafts posts, manages engagement, and builds audience across X/Twitter, LinkedIn, Reddit, Product Hunt, and other platforms. Use when the user needs social media strategy, content scheduling, community building, or says 'social media', 'tweet', 'LinkedIn post', 'Reddit', 'Product Hunt launch', or 'build audience'.
7money-outreach
Automated outreach and sales pipeline — cold email sequences, partnership outreach, lead generation, and prospect management. Use when the user needs cold email campaigns, sales sequences, lead generation, partnership outreach, B2B sales, or says 'cold email', 'outreach', 'lead gen', 'find prospects', 'sales sequence', or 'partnerships'.
7