websockets

Installation
SKILL.md

WebSocket Reference

Protocol Basics

WebSocket upgrades an HTTP connection to a persistent, full-duplex channel over a single TCP connection.

Handshake: Client sends an HTTP Upgrade request; server responds with 101 Switching Protocols.

GET /chat HTTP/1.1
Host: server.example.com
Upgrade: websocket
Connection: Upgrade
Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
Sec-WebSocket-Version: 13

Frame opcodes:

  • 0x0 continuation frame
Related skills

More from 1mangesh1/dev-skills-collection

Installs
1
GitHub Stars
3
First Seen
Apr 14, 2026