Agent skill

hootsuite-webhooks-events

Implement Hootsuite webhook signature validation and event handling. Use when setting up webhook endpoints, implementing signature verification, or handling Hootsuite event notifications securely. Trigger with phrases like "hootsuite webhook", "hootsuite events", "hootsuite webhook signature", "handle hootsuite events", "hootsuite notifications". '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill hootsuite-webhooks-events --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.5.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(curl:*)
Requires: Designed for Claude Code
Path: plugins/saas-packs/hootsuite-pack/skills/hootsuite-webhooks-events/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Hootsuite Webhooks & Events ## Overview Hootsuite provides webhook notifications for social stream events when building Hootsuite App Directory integrations. For API-only integrations, you poll for message state changes or implement your own scheduling system with callbacks. ## Instructions ### Step 1: Poll for Message Status Changes ```typescript // Since Hootsuite REST API doesn't push webhooks for message status, // poll for changes to scheduled messages async function pollMessageStatus(messageId: string, intervalMs = 30000) { const check = async () => { const response = await fetch(`https://platform.hootsuite.com/v1/messages/${messageId}`, { headers: { 'Authorization': `Bearer ${await getStoredToken()}` }, }); const { data } = await response.json(); if (data.state === 'SENT') { console.log(`Message ${messageId} sent at ${data.sentAt}`); return data; } else if (data.state === 'FAILED' || data.state === 'REJECTED') { console.error(`Message ${messageId} failed: ${data.state}`); return data; } console.log(`Message ${messageId}: ${data.state}, checking again...`); await new Promise(r => setTimeout(r, intervalMs)); return check(); }; return check(); } ``` ### Step 2: Build Custom S

What's inside
Steps it walks through
  1. Overview
  2. Instructions
  3. Step 1: Poll for Message Status Changes
  4. Step 2: Build Custom Scheduling Webhook
  5. Step 3: Hootsuite App Directory Webhooks
  6. Resources
  7. Next Steps
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the hootsuite-webhooks-events skill do?

Implement Hootsuite webhook signature validation and event handling. Use when setting up webhook endpoints, implementing signature verification, or handling Hootsuite event notifications securely. Trigger with phrases like "hootsuite webhook", "hootsuite events", "hootsuite webhook signature", "handle hootsuite events", "hootsuite notifications". '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill hootsuite-webhooks-events --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going