hootsuite-core-workflow-b

Featured

Execute Hootsuite secondary workflow: Core Workflow B. Use when implementing secondary use case, or complementing primary workflow. Trigger with phrases like "hootsuite secondary workflow", "secondary task with hootsuite".

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

Install

View on GitHub

Quality Score: 99/100

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

Skill Content

# Hootsuite Analytics & URL Shortening ## Overview Retrieve social media analytics and use Ow.ly URL shortening via the Hootsuite API. Track post performance, engagement metrics, and click-through rates. ## Prerequisites - Completed `hootsuite-install-auth` setup - Published posts with engagement data ## Instructions ### Step 1: Get Organization Analytics ```typescript import 'dotenv/config'; const TOKEN = process.env.HOOTSUITE_ACCESS_TOKEN!; const BASE = 'https://platform.hootsuite.com/v1'; async function getOrganization() { const response = await fetch(`${BASE}/me/organizations`, { headers: { 'Authorization': `Bearer ${TOKEN}` }, }); const { data } = await response.json(); return data[0]; // Primary organization } ``` ### Step 2: Shorten URLs with Ow.ly ```typescript async function shortenUrl(fullUrl: string) { const response = await fetch(`${BASE}/shorteners/owly`, { method: 'POST', headers: { 'Authorization': `Bearer ${TOKEN}`, 'Content-Type': 'application/json', }, body: JSON.stringify({ url: fullUrl }), }); const { data } = await response.json(); console.log(`${fullUrl} → ${data.shortUrl}`); return data; } // Shorten multiple URLs async function shortenBatch(urls: string[]) { return Promise.all(urls.map(url => shortenUrl(url))); } ``` ### Step 3: Retrieve Message Analytics ```typescript async function getMessageAnalytics(messageId: string) { const response = await fetch(`${BASE}/messages/${messageId}`, {...

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 Featured

hootsuite-core-workflow-a

Execute Hootsuite primary workflow: Core Workflow A. Use when implementing primary use case, building main features, or core integration tasks. Trigger with phrases like "hootsuite main workflow", "primary task with hootsuite".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hex-core-workflow-b

Execute Hex secondary workflow: Core Workflow B. Use when implementing secondary use case, or complementing primary workflow. Trigger with phrases like "hex secondary workflow", "secondary task with hex".

2,266 Updated today
jeremylongshore
AI & Automation Featured

grammarly-core-workflow-b

Execute Grammarly secondary workflow: Core Workflow B. Use when implementing secondary use case, or complementing primary workflow. Trigger with phrases like "grammarly secondary workflow", "secondary task with grammarly".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hootsuite-hello-world

Create a minimal working Hootsuite example. Use when starting a new Hootsuite integration, testing your setup, or learning basic Hootsuite API patterns. Trigger with phrases like "hootsuite hello world", "hootsuite example", "hootsuite quick start", "simple hootsuite code".

2,266 Updated today
jeremylongshore
AI & Automation Solid

hootsuite-performance-tuning

Optimize Hootsuite API performance with caching, batching, and connection pooling. Use when experiencing slow API responses, implementing caching strategies, or optimizing request throughput for Hootsuite integrations. Trigger with phrases like "hootsuite performance", "optimize hootsuite", "hootsuite latency", "hootsuite caching", "hootsuite slow", "hootsuite batch".

2,266 Updated today
jeremylongshore