anycable-coder
Installation
SKILL.md
AnyCable Coder
Why AnyCable Over Action Cable
Action Cable provides "at-most once" delivery—messages can be lost on reconnection. For LLM streaming where every chunk matters, this is insufficient.
AnyCable provides:
- At-least once delivery - Messages are guaranteed to arrive
- Message ordering - Chunks arrive in correct sequence
- Automatic reconnection - With history recovery
- Action Cable Extended Protocol - Enhanced reliability on top of WebSockets
Installation
bundle add anycable-rails
bin/rails g anycable:setup