jeremylongshore / juicebox-upgrade-migration
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/juicebox-upgrade-migration && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/3070" && unzip -o skill.zip -d .claude/skills/juicebox-upgrade-migration && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/juicebox-upgrade-migration/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Plan and execute Juicebox SDK upgrades. Use when upgrading SDK versions, migrating between API versions, or handling breaking changes. Trigger with phrases like "upgrade juicebox", "juicebox migration", "update juicebox SDK", "juicebox breaking changes".
0 views
0 installs
Skill Content
--- name: juicebox-upgrade-migration description: | Plan Juicebox SDK upgrades. Trigger: "upgrade juicebox", "juicebox migration". allowed-tools: Read, Write, Edit, Bash(npm:*) version: 1.0.0 license: MIT author: Jeremy Longshore <jeremy@intentsolutions.io> tags: [saas, recruiting, juicebox] compatible-with: claude-code --- # Juicebox Upgrade & Migration ## Check Version ```bash npm list @juicebox/sdk npm view @juicebox/sdk version ``` ## Upgrade ```bash git checkout -b upgrade/juicebox-sdk npm install @juicebox/sdk@latest npm test ``` ## Rollback ```bash npm install @juicebox/sdk@previous-version --save-exact ``` ## Resources - [Changelog](https://docs.juicebox.work/changelog) ## Next Steps See `juicebox-ci-integration`.