New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@zeke/obsx

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zeke/obsx

A CLI for OBS

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
1
Created
Source

obsx

A CLI for OBS.

Install

Run without installing:

npx @zeke/obsx <command>

Install globally:

npm install -g @zeke/obsx
obsx <command>

Usage

This CLI connects to OBS via the built-in obs-websocket server (protocol v5).

  • OBS: OBS 28+ (or obs-websocket 5.x installed)
  • WebSocket server: enabled in OBS
  • Default URL: ws://localhost:4455
  • Authentication: none by default

In OBS, look for Tools -> WebSocket Server Settings (or similar) and set the port to 4455.

Connection config is optional; by default it uses ws://localhost:4455 with no password.

To override, set environment variables:

  • OBSX_URL (default: ws://localhost:4455)
  • OBSX_PASSWORD (optional)

Add a webcam source to the current scene:

obsx add-webcam

Or without installing:

npx obsx add-webcam

Interactive mode (hit enter to accept defaults):

obsx add-webcam --interactive

Add image sources for all images in the current directory (skips ones already in the scene):

obsx add-images

Use a specific directory:

obsx add-images --dir "$PWD"

yolo

Use natural language to control OBS. This sends your prompt to Claude along with the current state of your OBS instance, and executes the generated commands.

Requires the ANTHROPIC_API_KEY environment variable.

obsx yolo "start recording"
obsx yolo "switch to the BRB scene"
obsx yolo "hide the webcam"
obsx yolo "add a color source called 'Red Background' to the current scene"
obsx yolo "mute the mic"
obsx yolo "set the transition to fade and make it 500ms"
obsx yolo "move the webcam to the bottom right corner"
obsx yolo "take a screenshot of the current scene"
obsx yolo "create a new scene called Interview with two color sources side by side"

Development

Run locally from the repo without publishing:

npm run dev -- <command>

For example:

npm run dev -- add-webcam
npm run dev -- add-webcam --device iphone
npm run dev -- add-images

FAQs

Package last updated on 11 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts