infer-upgrade

Installation
SKILL.md

Infer Upgrade

Updates all three Infer components to their latest versions.

Step 1: Check current vs latest

Run these commands to detect what's installed and what's available:

# Latest versions on npm
echo "SDK_LATEST=$(npm view @inferevents/sdk version 2>/dev/null || echo 'not-published')"
echo "MCP_LATEST=$(npm view @inferevents/mcp version 2>/dev/null || echo 'not-published')"

# Installed SDK in current project
echo "SDK_INSTALLED=$(node -e "try{console.log(require('@inferevents/sdk/package.json').version)}catch{console.log('not-installed')}" 2>/dev/null || echo 'not-installed')"

# Check if MCP config exists
echo "MCP_CONFIG=$(cat ~/.infer/config.json 2>/dev/null | head -1 || echo 'no-config')"
Related skills
Installs
19
First Seen
Mar 31, 2026