Open
Conversation
This was referenced Mar 16, 2026
Two-tier event adapter for platform-native webhooks, cron schedules, and optional external automation forwarding. Tier 1 (platform-native): - Webhook ingestion with GitHub + generic parsers - HMAC signature validation and per-source auth - Event buffer with DLQ and drain worker - Cron scheduler with timezone support - Source CRUD with lifecycle management Tier 2 (external automation): - Outbound webhook forwarding with circuit breaker - Platform subscriptions with fan-out (20-concurrent limit) - Trigger callback endpoint Admin & observability: - Server-rendered admin panel (4 views, XSS-safe) - Activity log with pagination, filtering, replay - Health endpoint with 10 aggregate metrics 13 work packages, ~14,000 lines, ~420 tests across unit/integration/E2E. Known TODOs: - WP10: POST /trigger bearer token validation is placeholder - WP10/WP11: Pipeline ownership checks need pipelines table Implements kitty-spec 018. Supersedes backlog #9 and #24. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
ae338a0 to
8a7d114
Compare
Add gitignore exceptions and WP01-WP04 task stub files for kitty-specs/011-inngest-migration so the governance REF-001 check passes. Follows the same pattern as specs 005, 006, 007, 008, 009. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Entire-Checkpoint: fd7d2e1083a4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Complete implementation of kitty-spec 018 — External Event Adapter. Two-tier architecture for platform-native webhooks, cron schedules, and optional external automation forwarding.
Stats
Architecture
Integration points
src/index.ts— mounts router at/v1/eventssrc/db/client.ts— registers event-adapter schema in Drizzle ORMKnown TODOs
POST /triggerbearer token validation is a placeholder (uses raw token as tenant_id)Supersedes backlog #9 and #24.
Test plan
npm run buildpasses (TypeScript compilation)npx vitest run tests/event-adapter/— all ~420 tests pass🤖 Generated with Claude Code