Forge realtime
Skill is-bo/fullstack-forge-skill/.github/skills/forge-realtime
Inspect WebSocket, SSE, subscription, and presence flows for authorization, lifecycle, ordering, abuse, and recovery. Activate automatically for websockets, sse, subscriptions, live presence, or collaborative state when that concern is relevant to a software-engineering request.From its SKILL.md
npx -y skills add is-bo/fullstack-forge-skill --skill forge-realtimeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
4.4 KB, 819 tokens by cl100k_base, as published. Nobody here has run it
forge-realtime: Realtime communication
Purpose
Inspect WebSocket, SSE, subscription, and presence flows for authorization, lifecycle, ordering, abuse, and recovery.
This is an agent playbook, not a claim of standalone analyzer coverage. Apply
fullstack-forge/references/shared/module-contract.md
for common applicability, evidence, command-safety, mutation, verification, and completion rules.
Never hide failed checks or claim that an operation ran when it did not.
Automatic activation signals
Activate when a request or direct repository evidence involves realtime communication, when
the user explicitly names forge-realtime, or when discovery proves an applicable boundary.
- WebSockets, SSE, subscriptions, live presence, or collaborative state
When not to activate
- Request-response applications with no persistent or pushed channel
Automated support
Relevant discovery inputs are:
- connection handlers
- channel and subscription policies
- client reconnection code
Available deterministic support, where present:
- Use
inspect-routesfor its bounded evidence when present; treat unavailable runtime evidence asNOT_VERIFIED. - Use
inspect-authorizationfor its bounded evidence when present; treat unavailable runtime evidence asNOT_VERIFIED.
Agent inspection procedure
- Inventory WebSocket and SSE endpoints and subscriptions; verify authentication at connect and authorization per channel or topic.
- Trace tenant and user separation of channels, presence, and broadcast fan-out.
- Exercise reconnection: missed-message recovery, ordering, duplicates, and state resynchronization after a gap.
- Check backpressure and slow-consumer handling, message-size limits, and rate limits per connection.
- Verify authentication refresh on long-lived connections, and cleanup of subscriptions, timers, and server resources on disconnect.
Manual inspection requirements:
- Observe network interruption and multi-device behavior
- Review gateway limits and load-balancer timeouts
Stack-specific guidance:
- Enforce authorization server-side for each resource, not just at connection time
Evidence to collect
For formal findings, also follow fullstack-forge/references/PROTOCOL.md. Record the module's
inspected boundary, relevant tests, direct observations, and unavailable evidence.
Primary standards used as criteria, not proof of compliance:
- RFC 6455
- OWASP WebSocket Security Cheat Sheet
Common production failures
- Authenticate handshakes and authorize every subscribe, publish, and resource action
- Inspect token expiry, revocation, origin, message schema and size, rate limits, backpressure, heartbeats, cleanup, and connection caps
- Check ordering, deduplication, cursor/resume, reconnect storms, stale presence, tenant namespaces, and sensitive errors
Missing-control checks
For every applicable criterion below, attach direct evidence or record a reasoned
NOT_APPLICABLE, NOT_VERIFIED, or BLOCKED status. The list is a routing checklist, not
evidence by itself.
- WebSocket authorization
- SSE authorization
- Reconnection
- Ordering
- Duplicate messages
- Presence
- Backpressure
- Resource cleanup
- Tenant-separated channels
- Rate limits
- Offline recovery
- Authentication refresh
- Subscription cleanup
- Fan-out
- Message size
Commands and tools
- Run
forge realtime audit --jsonorfullstack-forge realtime audit --jsonwhen an explicit audit is requested and the CLI is installed. Normal feature work does not require it. - Use the deterministic support named above only for its documented bounded evidence.
Safe fixes
- Add message bounds, schema validation, and cleanup
- Namespace channels and add bounded reconnect jitter
Approval-required changes
- Changing delivery guarantees, channel authorization, or gateway topology
Verification
- Test expired, revoked, unauthorized, duplicate, out-of-order, and oversized messages
- Disconnect abruptly and confirm cleanup and resume semantics
Completion contract
Apply the shared module contract and the module-specific limitations below.
Known limitations
- Gateway and network behavior require runtime load evidence
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.