From sip
Provides SIP protocol fundamentals for VoIP apps, including message structure, methods, call flows, best practices, pitfalls, and RFC 3261 references.
npx claudepluginhub thebushidocollective/han --plugin sipThis skill is limited to using the following tools:
Master the Session Initiation Protocol (SIP) for building VoIP applications, understanding SIP messages, methods, and call flows essential for real-time communications.
Parses SDP messages and negotiates codecs, media capabilities for SIP/VoIP RTP sessions using TypeScript examples.
Provides JavaScript SDK examples for Telnyx SIP: manage access IP ranges, configure trunking connections and outbound voice profiles for PBX systems.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Share bugs, ideas, or general feedback.
Master the Session Initiation Protocol (SIP) for building VoIP applications, understanding SIP messages, methods, and call flows essential for real-time communications.
SIP is an application-layer signaling protocol defined in RFC 3261 for creating, modifying, and terminating sessions with one or more participants.
INVITE sip:bob@biloxi.com SIP/2.0
Via: SIP/2.0/UDP pc33.atlanta.com;branch=z9hG4bK776asdhds
Max-Forwards: 70
To: Bob <sip:bob@biloxi.com>
From: Alice <sip:alice@atlanta.com>;tag=1928301774
Call-ID: a84b4c76e66710@pc33.atlanta.com
CSeq: 314159 INVITE
Contact: <sip:alice@pc33.atlanta.com>
Content-Type: application/sdp
Content-Length: 142
Use sip-protocol-fundamentals when building VoIP applications with SIP signaling.