| name | hootsuite-upgrade-migration |
| description | Analyze, plan, and execute Hootsuite SDK upgrades with breaking change detection.
Use when upgrading Hootsuite SDK versions, detecting deprecations,
or migrating to new API versions.
Trigger with phrases like "upgrade hootsuite", "hootsuite migration",
"hootsuite breaking changes", "update hootsuite SDK", "analyze hootsuite version".
|
| allowed-tools | Read, Write, Edit, Bash(npm:*), Bash(git:*) |
| version | 1.5.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","hootsuite","social-media"] |
| compatibility | Designed for Claude Code |
Hootsuite Upgrade & Migration
Overview
Hootsuite REST API is versioned at /v1/. Monitor the developer changelog for deprecations and new endpoints.
Instructions
Step 1: Check Current API Usage
grep -r "platform.hootsuite.com" src/ --include="*.ts" --include="*.py"
Step 2: Migration Patterns
const response = await fetch('https://platform.hootsuite.com/v1/messages', ...);
const API_VERSION = process.env.HOOTSUITE_API_VERSION || 'v1';
const response = await fetch(`https://platform.hootsuite.com/${API_VERSION}/messages`, ...);
Step 3: Social Network Changes
When Hootsuite adds/removes social network support:
const SUPPORTED_NETWORKS = ['TWITTER', 'FACEBOOK', 'INSTAGRAM', 'LINKEDIN', 'PINTEREST', 'YOUTUBE', 'TIKTOK'] as const;
type SocialNetwork = typeof SUPPORTED_NETWORKS[number];
Resources