From hootsuite-pack
Optimizes Hootsuite costs via plan tier selection, API minimization with caching/batching, usage audits, and call tracking. For billing analysis and budget alerts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hootsuite-pack:hootsuite-cost-tuningThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
| Plan | Price | Profiles | Users | API Access |
| Plan | Price | Profiles | Users | API Access |
|---|---|---|---|---|
| Professional | $99/mo | 10 | 1 | REST API |
| Team | $249/mo | 20 | 3 | REST API |
| Business | $739/mo | 35 | 5+ | Full API + webhooks |
| Enterprise | Custom | 50+ | Unlimited | Full API + SCIM |
// Cache profile lists (don't refetch every request)
// Batch schedule posts (one session, many messages)
// Use bulk endpoints where available
// Audit actual profile usage
async function auditUsage() {
const profiles = await getCachedProfiles();
console.log(`Active profiles: ${profiles.length}`);
console.log(`Networks: ${[...new Set(profiles.map(p => p.type))].join(', ')}`);
// If using < 10 profiles, Professional plan may suffice
}
let apiCallCount = 0;
const originalFetch = fetch;
globalThis.fetch = async (...args) => {
if (String(args[0]).includes('hootsuite.com')) apiCallCount++;
return originalFetch(...args);
};
// Log periodically
setInterval(() => { console.log(`Hootsuite API calls: ${apiCallCount}`); apiCallCount = 0; }, 3600000);
For architecture, see hootsuite-reference-architecture.
10plugins reuse this skill
First indexed Jul 10, 2026
Showing the 6 earliest of 10 plugins
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin hootsuite-packExecutes Hootsuite production deployment checklist covering authentication, API integration, error handling, and monitoring. Use when deploying Hootsuite integrations to production or preparing for go-live.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.