skills/fishjam/references/python-server-sdk/SKILL.md
Python server SDK for Fishjam — backends that create rooms, mint peer tokens, receive server notifications, and run voice agents. Use when writing a Python backend (FastAPI, Flask, Starlette, aiohttp) that talks to Fishjam, decorates a notification handler, decodes a Fishjam webhook, or builds an AI voice agent in Python. Trigger on: 'fishjam-server-sdk', 'pip install fishjam-server-sdk', 'from fishjam import', 'fishjam.FishjamClient', 'FishjamNotifier', 'on_server_notification', 'receive_binary', 'fishjam Agent', 'AgentSession', 'PeerOptions', 'RoomOptions', 'AgentOptions', 'AgentOutputOptions', 'OutgoingAudioTrackOptions', 'create_room', 'create_peer', 'create_agent', 'create_vapi_agent', 'create_livestream_streamer_token', 'create_moq_token', 'subscribe_peer', 'fastapi fishjam', 'flask fishjam', 'fishjam python', 'gemini fishjam python'. Python 3.10+. The REST client is synchronous; notifier and agent are async.
npx skillsauth add software-mansion-labs/react-native-skills fishjam-python-server-sdkInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
fishjam-server-sdk on PyPI; import fishjam. Server-side Python SDK for Fishjam.
Read
../platform/SKILL.mdfirst. It defines rooms, peers, tracks, the two-tier token model, and the WS-vs-webhook tradeoff that the Python SDK is built on.
The architecture differs from the JS SDK in one important way:
FishjamClient is synchronous. Methods like create_room, create_peer, delete_peer are plain def, not async def. Call them from sync routes or via run_in_executor from async contexts.FishjamNotifier is async (asyncio + websockets). Use @notifier.on_server_notification and await notifier.connect().Agent is async (async context manager — async with agent.connect() as session: ...).receive_binary(raw_bytes) is sync — call it directly inside an async route handler or a sync one.pip install fishjam-server-sdk
# or: uv add fishjam-server-sdk
# or: poetry add fishjam-server-sdk
import os
from fishjam import FishjamClient, PeerOptions
fishjam_client = FishjamClient(
fishjam_id=os.environ['FISHJAM_ID'],
management_token=os.environ['FISHJAM_MANAGEMENT_TOKEN'],
)
room = fishjam_client.create_room()
peer, peer_token = fishjam_client.create_peer(
room.id,
PeerOptions(metadata={'userId': 'user-123'}),
)
# ship `peer_token` to your client
| Component | What it does | Reference |
|---|---|---|
| FishjamClient (sync) | REST — rooms, peers, agents, livestream/MoQ tokens, subscribe modes. | client.md |
| FishjamNotifier (async) | Persistent WebSocket; one handler via decorator gets every event. | notifier.md |
| receive_binary(bytes) (sync) | Decode an HTTP webhook body to a typed event. | webhooks.md |
| Agent + AgentSession (async) | Server-side voice agent — async iter over incoming, await track.send_chunk(...). | agent.md |
| Task | Reference |
|---|---|
| Any REST method on FishjamClient | client.md |
| Background WS task receiving events | notifier.md |
| HTTP route receiving webhook payloads | webhooks.md |
| Build a voice agent in Python | agent.md |
| Wire Gemini Live to an agent | gemini-integration.md |
| FastAPI / Flask wiring patterns | fastapi.md |
| Issue livestream / MoQ tokens | livestream-and-moq.md |
| Use manual subscribe mode | selective-subscriptions.md |
match, structural typing, PEP 604 unions.FishjamClient is sync. Calling it from async def works (it's a quick HTTP round-trip) but if you're in a hot async path consider await asyncio.to_thread(fishjam_client.create_peer, ...).FishjamNotifier does NOT auto-reconnect. Its connect() coroutine runs until the WS closes. Wrap it in a supervisor loop.@notifier.on_server_notification only stores the last function you decorate. Multi-dispatch in your one handler via match on the message type.await result if inspect.isawaitable(result).receive_binary(await req.body()) is fine inside an async FastAPI route.async with agent.connect() as session: is the only entry point.| File | When to read |
|---|---|
| client.md | FishjamClient — every method, dataclass, error type. |
| notifier.md | FishjamNotifier, wait_ready, the decorator pattern, pattern-matching on event types. |
| webhooks.md | receive_binary, FastAPI / Flask receivers, security patterns. |
| agent.md | Agent, AgentSession, OutgoingAudioTrackOptions, receive() async iterator. |
| gemini-integration.md | fishjam.integrations.gemini, the GeminiIntegration singleton. |
| fastapi.md | FastAPI patterns (Depends-injected client, async webhook route, background notifier). |
| livestream-and-moq.md | create_livestream_streamer_token, create_livestream_viewer_token, create_moq_token. |
| selective-subscriptions.md | subscribe_peer / subscribe_tracks with subscribe_mode='manual' rooms. |
development
Use when the user mentions migrating deep links, switching away from Branch or AppsFlyer, replacing their deep linking SDK, setting up Detour deep linking for the first time, or asks how Branch/AppsFlyer concepts map to Detour. Covers the complete migration end to end - Detour Dashboard configuration, Universal Links and App Links setup, SDK swap with code examples, and analytics migration. Works across Android, iOS, React Native, and Flutter.
development
Complete onboarding guide for developers who are new to Detour, the open-source deferred deep linking SDK by Software Mansion. Use this skill whenever a user asks what Detour is, how to get started with Detour, how to set up deep linking with Detour, how to install the Detour SDK, how to configure the Detour dashboard, or how deferred deep linking works. Also use it when the user has no prior deep linking setup and wants to add deep links to their app. Covers everything from zero to production: account setup, dashboard configuration, Universal Links and App Links, platform SDK integration for React Native, iOS, Android, and Flutter, analytics, and architecture.
tools
React Native / Expo SDK for Fishjam — video/audio streaming on iOS and Android. Use when writing a React Native or Expo app that calls Fishjam, configures the Fishjam Expo plugin, sets up permissions, runs background streaming, integrates CallKit, or renders RTCView. Trigger on: '@fishjam-cloud/react-native-client', 'fishjam expo plugin', 'FishjamProvider mobile', 'useCameraPermissions', 'useMicrophonePermissions', 'useForegroundService', 'useCallKit', 'useCallKitEvent', 'useCallKitService', 'RTCView', 'RTCPIPView', 'ScreenCapturePickerView', 'startPIP', 'stopPIP', 'AudioDeviceType', 'useAudioOutput', '@fishjam-cloud/react-native-webrtc', 'fishjam react native', 'expo fishjam', 'fishjam ios', 'fishjam android', 'broadcast extension'. Re-exports @fishjam-cloud/react-client hooks plus mobile-only: permissions, foreground service, iOS broadcast extension, audio routing, CallKit, Expo config plugin.
tools
Browser-only React SDK for Fishjam — joining rooms, capturing camera/microphone/screen, displaying peers, and acting as a livestream streamer or viewer in a React web app. Use whenever the user is writing a React app in a browser that calls Fishjam APIs, sets up FishjamProvider, or uses any Fishjam React hook. Trigger on: '@fishjam-cloud/react-client', 'FishjamProvider', 'useConnection', 'useCamera', 'useMicrophone', 'useScreenShare', 'usePeers', 'useDataChannel', 'useVAD', 'useLivestreamStreamer', 'useLivestreamViewer', 'useCustomSource', 'useInitializeDevices', 'useUpdatePeerMetadata', 'useSandbox', 'PeerWithTracks', 'joinRoom', 'peerToken', 'fishjamId', 'fishjam react', '@fishjam-cloud/ts-client', 'FishjamClient ts-client'. Covers the provider, the full hook catalog, simulcast configuration, custom sources, data channels, VAD, livestream WHEP playback, device persistence, and reconnection. Briefly notes when to drop down to @fishjam-cloud/ts-client for non-React or worker contexts.