# Webhooks Projects at AI Tinkerers

> Canonical HTML: https://aitinkerers.org/technologies/webhooks
> Markdown URL: https://aitinkerers.org/technologies/webhooks.md
> Technology record last updated: 2026-09-18T14:19:48Z
> Generated: 2026-09-23T07:35:11Z

Webhooks are automated, real-time data pushes (HTTP POSTs) from a source application to a designated URL when a specific event occurs.

Webhooks flip the API communication model: instead of constantly polling an endpoint for updates, a service pushes data to your server immediately upon an event trigger. This is an efficient, event-driven pattern. For example, when a customer pays an invoice, Stripe sends a JSON payload via an HTTP POST request to your pre-configured `https://yourdomain.com/payment-handler` URL. The payload contains all relevant transaction data, allowing your system to instantly log the payment, update the user’s account status, and trigger a confirmation email, all without wasting resources on unnecessary API calls. It’s a crucial component for building responsive, integrated systems (CI/CD, payment processing, chat notifications) that demand low-latency data exchange.

- Official technology site: https://docs.github.com/en/developers/webhooks/about-webhooks
- Public AI Tinkerers demos and talks: 2
- Result page: 1 of 1

## Recent Public Talks and Demos

### [The IDE is Dead. Vulcan Ships Our Code Now.](https://london.aitinkerers.org/talks/rsvp_lcPJx56YCAU)

Vulcan is an autonomous AI dev system we built at a stealth startup. It orchestrates Claude Code agents on Mac Minis to execute parallelizable development plans, create PRs, and autonomously fix its own CI failures. We haven't opened an IDE in months. I'll walk through: the plan/phase architecture with dependency graphs for concurrent Claude instances, the worker daemon that spawns and manages Claude Code subprocesses, the self-healing CI loop (including BFS-based loop detection to stop infinite fixes), and how MCP tools let Claude manage its own PR lifecycle through our Django backend. Live demo: submitting a plan, workers claiming phases, CI breaking, and Vulcan fixing itself.

- Event context: AI Tinkerers London - 2nd March featuring AMA with Tom Occhino, CPO at Vercel — 2026-03-02 — London
- Public talk page: https://london.aitinkerers.org/talks/rsvp_lcPJx56YCAU

### [Post-Postman: Creative End-to-End API Testing with Generative AI](https://amsterdam.aitinkerers.org/talks/rsvp_lBLnWhgMApA)

How can we use GenAI to help developers build and debug API's faster. In this lightning talk we will show what we've been prototyping at Fiberplane; an HTTP debugging tool using GenAI for payload suggestions and code prompts, friendly and hostile personas, and third party webhooks in order to squash bugs way earlier in the development cycle. Your code reviewer will wonder what shadow team you’ve secretly hired.

- Event context: AI Tinkerers Amsterdam - September — 2024-09-25 — Amsterdam
- Public talk page: https://amsterdam.aitinkerers.org/talks/rsvp_lBLnWhgMApA

## Related Technologies

- [API Testing](https://aitinkerers.org/technologies/api-testing) ([Markdown](https://aitinkerers.org/technologies/api-testing.md)) — 3 public demos
- [Claude Code](https://aitinkerers.org/technologies/claude-code) ([Markdown](https://aitinkerers.org/technologies/claude-code.md)) — 216 public demos
- [Claude Code SDK](https://aitinkerers.org/technologies/claude-code-sdk) ([Markdown](https://aitinkerers.org/technologies/claude-code-sdk.md)) — 7 public demos
- [Django](https://aitinkerers.org/technologies/django) ([Markdown](https://aitinkerers.org/technologies/django.md)) — 16 public demos
- [Fiberplane](https://aitinkerers.org/technologies/fiberplane) ([Markdown](https://aitinkerers.org/technologies/fiberplane.md)) — 1 public demo
- [Generative AI](https://aitinkerers.org/technologies/generative-ai) ([Markdown](https://aitinkerers.org/technologies/generative-ai.md)) — 45 public demos
- [GitHub API](https://aitinkerers.org/technologies/github-api) ([Markdown](https://aitinkerers.org/technologies/github-api.md)) — 6 public demos
- [HTTP](https://aitinkerers.org/technologies/http) ([Markdown](https://aitinkerers.org/technologies/http.md)) — 14 public demos
- [Mac Mini hardware](https://aitinkerers.org/technologies/mac-mini-hardware) ([Markdown](https://aitinkerers.org/technologies/mac-mini-hardware.md)) — 1 public demo
- [MCP](https://aitinkerers.org/technologies/mcp) ([Markdown](https://aitinkerers.org/technologies/mcp.md)) — 129 public demos
- [PostgreSQL](https://aitinkerers.org/technologies/postgresql) ([Markdown](https://aitinkerers.org/technologies/postgresql.md)) — 106 public demos
- [PRs](https://aitinkerers.org/technologies/prs) ([Markdown](https://aitinkerers.org/technologies/prs.md)) — 1 public demo
- [Python/Typer](https://aitinkerers.org/technologies/python-typer) ([Markdown](https://aitinkerers.org/technologies/python-typer.md)) — 1 public demo
- [Rich](https://aitinkerers.org/technologies/rich) ([Markdown](https://aitinkerers.org/technologies/rich.md)) — 1 public demo
