Agent skill

juicebox-webhooks-events

Handle Juicebox webhooks and events. Trigger: "juicebox webhooks", "juicebox events".

Stars 1,803
Forks 241

Install this agent skill to your Project

npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/juicebox-pack/skills/juicebox-webhooks-events

SKILL.md

Juicebox Webhooks & Events

Webhook Setup

Configure at app.juicebox.ai > Settings > Webhooks.

Event Handling

typescript
app.post('/webhooks/juicebox', (req, res) => {
  const sig = req.headers['x-juicebox-signature'];
  if (!verifySignature(req.body, sig, WEBHOOK_SECRET)) return res.status(401).end();
  switch (req.body.type) {
    case 'outreach.replied': handleReply(req.body.data); break;
    case 'enrichment.complete': handleEnrichment(req.body.data); break;
  }
  res.status(200).send('OK');
});

Events

Event Use
outreach.replied Alert recruiter
enrichment.complete Update record
search.alert New candidate matches

Resources

Next Steps

See juicebox-performance-tuning.

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results