AI SummaryThis booster helps developers inspect and retry failed events in a dead-letter queue, enabling quick diagnosis and recovery of processing failures in event-driven systems.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "Inspect Dead-Letter Queue" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (12 files) mkdir -p .claude/skills/commands && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/SKILL.md "https://raw.githubusercontent.com/alexnodeland/reflex/main/.claude/commands/dlq.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/api-test.md "https://raw.githubusercontent.com/alexnodeland/reflex/main/.claude/commands/api-test.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/check.md "https://raw.githubusercontent.com/alexnodeland/reflex/main/.claude/commands/check.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/fix.md "https://raw.githubusercontent.com/alexnodeland/reflex/main/.claude/commands/fix.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/health.md "https://raw.githubusercontent.com/alexnodeland/reflex/main/.claude/commands/health.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/new-agent.md "https://raw.githubusercontent.com/alexnodeland/reflex/main/.claude/commands/new-agent.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/new-event.md "https://raw.githubusercontent.com/alexnodeland/reflex/main/.claude/commands/new-event.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/new-filter.md "https://raw.githubusercontent.com/alexnodeland/reflex/main/.claude/commands/new-filter.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/new-trigger.md "https://raw.githubusercontent.com/alexnodeland/reflex/main/.claude/commands/new-trigger.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/replay.md "https://raw.githubusercontent.com/alexnodeland/reflex/main/.claude/commands/replay.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/test.md "https://raw.githubusercontent.com/alexnodeland/reflex/main/.claude/commands/test.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/trace.md "https://raw.githubusercontent.com/alexnodeland/reflex/main/.claude/commands/trace.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Inspect dead-letter queue for failed events
Inspect Dead-Letter Queue
View failed events in the dead-letter queue.
Using API
curl http://localhost:8000/events/dlq?limit=100 `
Response Format
`json { "count": 5, "events": [ { "id": "event-uuid", "type": "ws.message", "source": "ws:client-123", "timestamp": "2024-01-15T10:30:00Z", "status": "failed", "error": "Processing timeout", "retry_count": 3, "last_retry": "2024-01-15T10:35:00Z" } ] } `
Get the event ID from the DLQ list
curl -X POST http://localhost:8000/events/dlq/{event-id}/retry ` Or use the /replay command for detailed replay.
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster