smithery/neversight

server

Vuer server configuration, decorators, event handlers, SSL/TLS for VR (plugin:vuer@vuer)

Installation

$ npx skills add smithery/neversight --skill server

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 1,254 B
  • docs SUMMARY.md 102 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Vuer Server

Configuration

app = Vuer(
    port=8012,              # WebSocket port
    static_root=".",        # Static files at /static/
    cors="*",               # CORS origins
    free_port=False,        # Auto-kill process on port
)

Environment variables: VUERPORT, VUERDOMAIN, VUERCORS, VUERSTATIC_ROOT

Decorators

# Main handler (start=True auto-starts)
@app.spawn(start=True)
async def main(session: VuerSession):
    session.set @ DefaultScene()
    await session.forever()

# Generator for streaming
@app.bind(start=True)
async def handler(session: VuerSession):
    while True:
        yield Frame(Update(...), frame_rate=60)

Event Handlers

@app.add_handler("CAMERA_MOVE")
async def on_camera(event: ClientEvent, session: VuerSession):
    print(event.value)

Events: CAMERAMOVE, HANDMOVE, CLICK, UPLOAD, OBJECT_MOVE

SSL for VR

VR requires wss://. Use ngrok:

ngrok http 8012
# Visit: https://vuer.ai?ws=wss://xxxx.ngrok.io

Or configure SSL:

app = Vuer(cert="/path/to/cert.pem", key="/path/to/key.pem")