hootsuite-upgrade-migration

Solid

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".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 97/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
59
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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 ```bash # List all Hootsuite API calls in your codebase grep -r "platform.hootsuite.com" src/ --include="*.ts" --include="*.py" ``` ### Step 2: Migration Patterns ```typescript // If Hootsuite introduces v2 endpoints: // BEFORE const response = await fetch('https://platform.hootsuite.com/v1/messages', ...); // AFTER 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: ```typescript const SUPPORTED_NETWORKS = ['TWITTER', 'FACEBOOK', 'INSTAGRAM', 'LINKEDIN', 'PINTEREST', 'YOUTUBE', 'TIKTOK'] as const; type SocialNetwork = typeof SUPPORTED_NETWORKS[number]; ``` ## Resources - [Hootsuite Developer Changelog](https://developer.hootsuite.com/changelog) - [API Guides](https://developer.hootsuite.com/docs/api-guides) ## Next Steps For CI, see `hootsuite-ci-integration`.

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

hex-upgrade-migration

Analyze, plan, and execute Hex SDK upgrades with breaking change detection. Use when upgrading Hex SDK versions, detecting deprecations, or migrating to new API versions. Trigger with phrases like "upgrade hex", "hex migration", "hex breaking changes", "update hex SDK", "analyze hex version".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-upgrade-migration

Upgrade @hubspot/api-client SDK versions and migrate between API versions. Use when upgrading the HubSpot Node.js SDK, migrating from v1/v2 to v3 APIs, or handling breaking changes in the HubSpot API client. Trigger with phrases like "upgrade hubspot", "hubspot SDK update", "hubspot breaking changes", "migrate hubspot API version", "hubspot v3 migration".

2,266 Updated today
jeremylongshore
AI & Automation Solid

hootsuite-cost-tuning

Optimize Hootsuite costs through tier selection, sampling, and usage monitoring. Use when analyzing Hootsuite billing, reducing API costs, or implementing usage monitoring and budget alerts. Trigger with phrases like "hootsuite cost", "hootsuite billing", "reduce hootsuite costs", "hootsuite pricing", "hootsuite expensive", "hootsuite budget".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hootsuite-install-auth

Install and configure Hootsuite SDK/CLI authentication. Use when setting up a new Hootsuite integration, configuring API keys, or initializing Hootsuite in your project. Trigger with phrases like "install hootsuite", "setup hootsuite", "hootsuite auth", "configure hootsuite API key".

2,266 Updated today
jeremylongshore
AI & Automation Featured

cohere-upgrade-migration

Migrate from Cohere API v1 to v2 and upgrade SDK versions. Use when upgrading cohere-ai SDK, migrating from CohereClient to CohereClientV2, or handling breaking changes between API versions. Trigger with phrases like "upgrade cohere", "cohere migration", "cohere v1 to v2", "update cohere SDK", "cohere breaking changes".

2,266 Updated today
jeremylongshore