feat(sqs): add SQS ingress for queue-based message processing#2
Merged
Conversation
…essing Add SQS as a third trigger type alongside webhook and cron. Messages are routed to triggers via the `trigger` message attribute matching trigger ID. Features: - Poll-based consumer with long polling support - Region auto-inferred from queue URL - Rate limiting (default: 10 messages per 5 minutes) - Auto-parse JSON string bodies (API Gateway compatibility) - Hot-reload on config changes - Full UI support with config modal and status card Config example: ```yaml sqs: enabled: true queue_url: https://sqs.us-east-1.amazonaws.com/123456789/queue ``` Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Replace separate tunnel/SQS status cards with settings gear button - Create unified SettingsModal with tabbed interface for both configs - Fix tabs active state styling for dark mode (use correct data-state selector) - Remove tunnel/SQS polling from main refresh loop (fetch only when modal opens) - Default "enabled" checkbox to unchecked when no config exists Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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
MessageAttributes.triggermatching trigger IDChanges
SQS Ingress
src/lib/sqs/consumer.ts- SQS polling consumer with rate limitingprocessSqs()function to pipeline processorSqsSchemato config schema,type: 'sqs'for triggersUI Improvements
SettingsModalwith tabbed interface for Tunnel/SQS configTest plan
🤖 Generated with Claude Code