smithery/neversight

nchan-expert

Expert guidance for Nchan, a scalable pub/sub server for Nginx.

Installation

$ npx skills add smithery/neversight --skill nchan-expert

Summary

  • Expert guidance for Nchan, a scalable pub/sub server for Nginx.
  • Use this skill when you need to configure Nchan endpoints (publisher/subscriber), set up horizontal scaling with Redis, implement security patterns (authorization, X-Accel-Redirect), or troubleshoot Nchan performance and metrics.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,626 B
  • docs SUMMARY.md 313 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Nchan Expert

Overview

This skill provides procedural knowledge for configuring, optimizing, and securing Nchan, the high-performance pub/sub module for Nginx. It is based on the core Nchan documentation.

Core Capabilities

1. Endpoint Configuration

Map Nginx locations to pub/sub endpoints.

  • Publishers: Use nchan_publisher to create endpoints that accept messages via HTTP POST or Websockets.
  • Subscribers: Use nchan_subscriber to support Websocket, EventSource (SSE), Long-Polling, and more.
  • PubSub: Use nchan_pubsub for locations that act as both.

2. Scalability & Storage

Configure local memory storage and Redis for horizontal scaling.

  • Redis Modes: Implement Distributed (shared), Backup (persistence), or Nostore (broadcast) modes.
  • Redis Cluster: Set up high availability and sharding.
  • See [references/storage.md](references/storage.md) for implementation details.

3. Security & Access Control

Secure channels using standardized patterns:

  • Authorization: Use nchanauthorizerequest to delegate auth to an upstream application.
  • Internal Redirects: Implement X-Accel-Redirect to hide internal channel IDs.
  • ACLs: Apply standard Nginx allow/deny directives for publisher endpoints.
  • See [references/security.md](references/security.md) for patterns.

4. Advanced Messaging Features

  • Multiplexing: Subscribe to up to 255 channels over a single connection.
  • Channel Groups: Use nchanchannelgroup for accounting and namespace isolation.
  • Upstream Hooks: Use nchanpublisherupstream_request to mutate messages before publication.

5. Monitoring & Introspection

  • Stub Status: Monitor real-time metrics via nchanstubstatus.
  • Channel Events: Track channel lifecycle events for debugging.
  • Variables: Utilize Nchan-specific variables like $nchanchannelid and $nchansubscribercount.
  • See [references/variables.md](references/variables.md) for the full reference.

6. Testing & Validation

  • Verify Handshakes: Use curl with --http1.1 and a valid 16-byte Sec-WebSocket-Key.
  • Troubleshoot: Resolve issues with HTTP/2 negotiation and strict proxy key enforcement (e.g., Cloudflare/Render).
  • See [references/testing.md](references/testing.md) for commands and troubleshooting steps.

7. Containerization

  • Compile Module: Use multi-stage builds to compile Nchan for Nginx Alpine.
  • Harden Security: Run as a non-root user and implement container healthchecks.
  • See [references/docker.md](references/docker.md) for the Dockerfile pattern and configuration.

Resources

  • [references/directives.md](references/directives.md): Comprehensive list of configuration directives.
  • [references/variables.md](references/variables.md): Nchan-specific Nginx variables.
  • [references/security.md](references/security.md): Security and authorization patterns.
  • [references/storage.md](references/storage.md): Memory and Redis storage configuration.
  • [references/testing.md](references/testing.md): Minimal testing patterns with curl (stats, pub/sub, wss) and handshake troubleshooting.
  • [references/docker.md](references/docker.md): Docker containerization and multi-stage build patterns.