VuerClient for connecting to Vuer servers and sending custom events (plugin:vuer@vuer)
View on GitHubskills/client/SKILL.md
February 1, 2026
Select agents to install to:
npx add-skill https://github.com/vuer-ai/vuer-skill/blob/main/skills/client/SKILL.md -a claude-code --skill clientInstallation paths:
.claude/skills/client/# VuerClient
## Basic Usage
```python
import asyncio
from vuer import VuerClient
from vuer.events import ClientEvent
class MyEvent(ClientEvent):
etype = "MY_EVENT"
async def main():
async with VuerClient(URI="ws://localhost:8012") as client:
client.send @ MyEvent(value={"data": 123}) # Fire-and-forget
await client.send(MyEvent(value="x")) # Awaitable
asyncio.run(main())
```
## Custom Events
```python
class SetPositionEvent(ClientEvent):
etype = "SET_POSITION"
value = [0, 0, 0] # Optional default
```
## Receiving
```python
event = await client.recv(timeout=5.0)
async for event in client:
print(event.etype, event.value)
```
## Server Handler
```python
@app.add_handler("MY_EVENT")
async def on_event(event, session: VuerSession):
session.upsert @ Box(key="box", position=event.value)
```