Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Control the Niri Wayland compositor on Linux via its IPC (`niri msg --json` / $NIRI_SOCKET). Use when you need to query Niri state (outputs/workspaces/windows/focused window) or perform actions (focus/move/close windows, switch workspaces, spawn commands, reload config) from an OpenClaw agent running on a Niri session.
Control the Niri Wayland compositor on Linux via its IPC (`niri msg --json` / $NIRI_SOCKET). Use when you need to query Niri state (outputs/workspaces/windows/focused window) or perform actions (focus/move/close windows, switch workspaces, spawn commands, reload config) from an OpenClaw agent running on a Niri session.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Use Niri IPC through the niri msg CLI (preferred) or by writing JSON requests to $NIRI_SOCKET. This skill assumes: You are on Linux with Niri running. $NIRI_SOCKET is set (usually true inside the Niri session).
Use the bundled helper script (wrapper around niri msg --json): ./skills/niri-ipc/scripts/niri.py version ./skills/niri-ipc/scripts/niri.py outputs ./skills/niri-ipc/scripts/niri.py workspaces ./skills/niri-ipc/scripts/niri.py windows ./skills/niri-ipc/scripts/niri.py focused-window
Use scripts/niri_ctl.py when you want to refer to windows by title/app_id substring instead of ids: # List windows (optionally filtered) ./skills/niri-ipc/scripts/niri_ctl.py list-windows --query firefox # Focus a window by substring match ./skills/niri-ipc/scripts/niri_ctl.py focus firefox # Close a matched window (focus then close) ./skills/niri-ipc/scripts/niri_ctl.py close firefox # Move a matched window to a workspace (by index or by name) ./skills/niri-ipc/scripts/niri_ctl.py move-to-workspace firefox 3 ./skills/niri-ipc/scripts/niri_ctl.py move-to-workspace firefox web # Focus a workspace by index or name ./skills/niri-ipc/scripts/niri_ctl.py focus-workspace 2 ./skills/niri-ipc/scripts/niri_ctl.py focus-workspace web
Use scripts/niri_socket.py to talk to $NIRI_SOCKET directly (newline-delimited JSON): # Send a simple request (JSON string) ./skills/niri-ipc/scripts/niri_socket.py raw '"FocusedWindow"' # Batch requests: one JSON request per line on stdin printf '%s\n' '"FocusedWindow"' '"Workspaces"' | ./skills/niri-ipc/scripts/niri_socket.py stdin # Event stream (prints JSON events until interrupted) ./skills/niri-ipc/scripts/niri_socket.py event-stream
Pass through Niri actions: # Focus workspace by index ./skills/niri-ipc/scripts/niri.py action focus-workspace 2 # Move focused window to workspace ./skills/niri-ipc/scripts/niri.py action move-window-to-workspace 3 # Focus a window by id ./skills/niri-ipc/scripts/niri.py action focus-window 123 # Close focused window ./skills/niri-ipc/scripts/niri.py action close-window # Reload niri config ./skills/niri-ipc/scripts/niri.py action load-config-file # Spawn (no shell) ./skills/niri-ipc/scripts/niri.py action spawn -- alacritty # Spawn through shell ./skills/niri-ipc/scripts/niri.py action spawn-sh -- 'notify-send hello'
Use niri msg output ... via the wrapper: ./skills/niri-ipc/scripts/niri.py output --help
If you donβt want the helper script, call Niri directly: niri msg --json windows niri msg --json action focus-workspace 2 Tip: if niri msg parsing errors happen after upgrades, restart the compositor (new niri msg against old compositor is a common mismatch).
For status bars/daemons: Niri can stream events. # Raw JSON event lines (runs until interrupted) ./skills/niri-ipc/scripts/niri.py event-stream # Just a few lines for a quick test ./skills/niri-ipc/scripts/niri.py event-stream --lines 5
If commands fail with βNIRI_SOCKET is not setβ: run inside your Niri session, or export the socket path. If you need the socket protocol details, read: ./skills/niri-ipc/references/ipc.md. If your goal is complex automation (pick the right window by title/app_id, etc.), first query windows, then act by window id.
Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.
Largest current source with strong distribution and engagement signals.