replit-webhooks-events

Featured

Handle Replit deployment events, build Replit Extensions, and set up Agents & Automations. Use when integrating with Replit deployment lifecycle, building workspace extensions, or creating automated workflows with Replit Agent. Trigger with phrases like "replit webhook", "replit events", "replit extension", "replit automation", "replit notifications", "replit agent automation".

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

# Replit Webhooks & Events ## Overview Integrate with Replit's event ecosystem: deployment lifecycle hooks, Replit Extensions API for workspace customization, and Agents & Automations for scheduled tasks and chatbots. Also covers external webhook endpoints hosted on Replit. ## Prerequisites - Replit account with Deployments enabled (Core or Teams) - For Extensions: familiarity with React and TypeScript - For Automations: Replit Agent access ## Instructions ### Step 1: Deployment Lifecycle Monitoring Monitor deployment events by polling or building a status dashboard: ```typescript // src/deploy-monitor.ts — Track deployment health import express from 'express'; const app = express(); app.use(express.json()); // Health endpoint that deployment monitoring can ping app.get('/health', async (req, res) => { res.json({ status: 'healthy', environment: process.env.REPL_SLUG, region: process.env.REPLIT_DEPLOYMENT_REGION, deployedAt: process.env.REPLIT_DEPLOYMENT_TIMESTAMP || 'unknown', uptime: process.uptime(), }); }); // Post-deploy smoke test endpoint app.get('/api/readiness', async (req, res) => { const checks = { database: await checkDB(), storage: await checkStorage(), secrets: checkSecrets(), }; const allHealthy = Object.values(checks).every(Boolean); res.status(allHealthy ? 200 : 503).json({ ready: allHealthy, checks }); }); async function checkDB(): Promise<boolean> { try { const { Pool } = await import('pg'); con...

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

replit-observability

Monitor Replit deployments with health checks, uptime tracking, resource usage, and alerting. Use when setting up monitoring for Replit apps, building health dashboards, or configuring alerting for deployment health and performance. Trigger with phrases like "replit monitoring", "replit metrics", "replit observability", "monitor replit", "replit alerts", "replit uptime".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-ci-integration

Configure CI/CD for Replit with GitHub Actions, automated testing, and deploy-on-push. Use when setting up automated testing, GitHub integration for Replit, or continuous deployment pipelines that deploy to Replit. Trigger with phrases like "replit CI", "replit GitHub Actions", "replit automated deploy", "CI replit", "replit GitHub".

2,266 Updated today
jeremylongshore
AI & Automation Featured

retellai-webhooks-events

Retell AI webhooks events — AI voice agent and phone call automation. Use when working with Retell AI for voice agents, phone calls, or telephony. Trigger with phrases like "retell webhooks events", "retellai-webhooks-events", "voice agent".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-deploy-integration

Deploy Replit apps with Autoscale, Reserved VM, and Static deployment types. Use when deploying to production, configuring deployment settings, setting up custom domains, or managing deployment secrets and health checks. Trigger with phrases like "deploy replit", "replit deployment", "replit autoscale", "replit reserved VM", "replit static deploy", "replit custom domain".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-core-workflow-b

Manage Replit Teams, member permissions, deployment promotion, and bulk Repl admin. Use when managing team access, configuring deployment environments, auditing Repls, or administering organization settings. Trigger with phrases like "replit team management", "replit admin", "replit permissions", "replit bulk operations", "manage replit members".

2,266 Updated today
jeremylongshore