Host broker that watches your AI coding sessions (Claude Code, Codex, Mistral Vibe) and pushes live status to a physical LED ring / e-ink device over a documented wire protocol
Project description
nimbus-notify
A Python host broker that watches your AI coding-agent sessions — Claude Code, Codex, and Mistral Vibe — via lightweight hooks, and pushes their live status (running / waiting for you / needs approval / done / errored) to a physical display device over serial (USB-CDC) or Bluetooth LE, using a small documented binary protocol (nsn).
If you've got several agent sessions going in parallel across different terminals and projects, nimbus-notify gives you one glanceable place — an LED ring, an e-ink panel, whatever device you point it at — to see which ones are still working and which ones are waiting on you.
┌────────────┐ hooks ┌───────────────┐ nsn wire protocol ┌──────────┐
│ Claude Code│ ─────────▶ │ │ (serial or BLE) │ status │
│ Codex │ ─────────▶ │ nsnotify- │ ─────────────────────▶│ device │
│ Mistral │ ─────────▶ │ broker │ │(your own)│
│ Vibe │ │ │ │ │
└────────────┘ └───────────────┘ └──────────┘
New here? → QUICKSTART.md gets you from install to a reacting device in ~5 minutes (install ·
nimbus-notify install-hooks· connect · verify). The rest of this README is reference (services, bonding, transports, the protocol).
Status
Beta. The core broker, all three harness adapters, and both transports are
implemented and tested (python3 -m pytest). This is a fresh split out of a
private monorepo into its own package — see CHANGELOG.md.
Compatible devices
nimbus-notify speaks a documented, transport-agnostic wire protocol — see docs/protocol.md. Any device that implements the protocol's serial or BLE side can be driven by this broker; nothing here is tied to a specific piece of hardware. If you build (or already have) a microcontroller project with an LED strip, an e-ink panel, or any other status display, point it at this broker.
Install
pip install nimbus-notify
This installs three commands on your PATH:
nimbus-notify-broker— the daemon that maintains session state and talks to your device.led-report— the small CLI that harness hooks call to report events into the broker (fire-and-forget; never blocks your agent).nimbus-notify— setup helper:install-hookswiresled-reportinto your harness config (idempotent, preserves existing hooks);doctorchecks your setup.
If
pipitself errors before it reaches this package (e.g. a Python 3.14pyexpat/libexpatdylib mismatch on macOS), that's a broken host pip — useuv:uv tool install nimbus-notify. See QUICKSTART.md for the caveats.
To hack on it, install from source instead:
git clone https://github.com/ristllin/nimbus-notify.git
cd nimbus-notify
pip install -e .
Quickstart
- Install the package (above).
- Connect your device to this computer — over USB or Bluetooth. See Connecting your device below (it's one command).
- Wire up the harness(es) you use — see Harnesses below.
- Start the broker (if it isn't already up from step 2):
nimbus-notify-broker # or: --transport ble / --transport auto
- Start (or resume) an agent session in a wired-up harness. Its status should now be reported to the broker, and forwarded to your device.
If you use Claude Code, the fastest path is the bundled slash commands — see Claude Code plugin below.
Connecting your device
The broker talks to your status device one of two ways — you don't need both, pick whichever fits:
Option A — USB cable (simplest)
Plug the device into your computer with a USB cable and run:
nimbus-notify-broker --transport serial # or just: nimbus-notify-broker
The broker auto-detects the port. That's it — no pairing, no setup. Good for a
device that sits on your desk next to the machine. (To pin a specific port:
--transport serial --port /dev/cu.usbmodem101.)
Option B — Bluetooth, no cable (wireless)
If the device is powered from a wall plug / battery and you don't want a USB cable to your computer, use Bluetooth LE. There is nothing to pair in System Settings — macOS bonds on demand the first time the broker touches the device:
- Power on the device and make sure it's in Notifier mode and in radio range. (Notifier is the status-light mode; if the device is in Orchestrator mode, switch it from the device's knob menu or its web page.)
- Run the broker in the foreground, once:
nimbus-notify-broker --transport ble
- The first time, macOS completes a silent "Just Works" bond (no code to type, no dialog). Leave the broker running for a few seconds — the device's ring will start reflecting your sessions once a frame arrives.
Why foreground the first time? macOS only finishes the bond for a process in your normal login session, so don't background it (
nohup … &) for the first connect. After the bond is stored (on both the Mac and the device's flash) every later run is transparent and can be backgrounded or run as a service. Full detail + un-bonding: Bonding the BLE link.
Which do I have? If you flashed the firmware yourself over USB, the cable is
already there — use Option A. If the device is across the desk on its own power,
use Option B. --transport auto picks serial when a board is plugged in at
startup, else Bluetooth.
First time with a brand-new device? Getting the device onto your Wi-Fi, naming it, and choosing Notifier vs Orchestrator is a separate one-time setup done from the device itself (its setup Wi-Fi + a QR code), not from this broker — see the Nimbus First-time setup guide. For plain Notifier-over-Bluetooth you don't even need Wi-Fi — just Option B above.
Harnesses
nimbus-notify supports three AI coding harnesses today. Each harness reports
events (session start, a tool running, waiting on your approval, done,
errored, session end) by calling led-report <harness> <verb> from a hook.
The fastest way to wire any harness is the installer (idempotent, keeps your existing hooks, safe to re-run):
nimbus-notify install-hooks # all harnesses
nimbus-notify install-hooks --harness claude --dry-run # preview
The manual per-harness steps below are the fallback (and what the installer does).
Claude Code
nimbus-notify install-hooks --harness claude writes this for you. To do it by
hand, merge hooks/claude/settings.json's hooks
block into your ~/.claude/settings.json, preserving any hooks you already
have (append to each event's array rather than replacing it). It wires up
SessionStart, UserPromptSubmit, PreToolUse, Notification, Stop,
StopFailure, and SessionEnd. ⚠ The "needs you" ring uses the Notification
event — not PermissionRequest (a Codex event name that Claude Code never emits).
Codex
Merge hooks/codex/hooks.json into
~/.codex/hooks.json, then enable hooks and the notify bridge in
~/.codex/config.toml:
[features]
hooks = true
notify = ["led-report", "codex-notify"]
Mistral Vibe
Vibe has no native session start/stop hook, so the broker also runs a
background watcher over ~/.vibe/logs/session/ to detect new sessions and
infer human-in-the-loop waits (if a tool call starts but doesn't finish
within a timeout, that's treated as "awaiting approval").
Enable experimental hooks in ~/.vibe/config.toml:
enable_experimental_hooks = true
Then merge hooks/vibe/hooks.toml into
~/.vibe/hooks.toml (requires Vibe v2.15.0+ for before_tool /
after_tool / post_agent_turn).
Claude Code plugin
This repo is also a Claude Code plugin (.claude-plugin/plugin.json). If
you install it as a plugin, two slash commands become available:
/nsnotify-setup— installs the Python package, merges the Claude Code hooks automatically, checks whether the broker is running, and prints the manual steps for Codex/Vibe./nsnotify-status— shows current session states without needing to look at the device.
Transports
Pick a transport with --transport:
nimbus-notify-broker --transport serial # default
nimbus-notify-broker --transport ble
nimbus-notify-broker --transport auto # serial if a device is plugged in at
# startup, else BLE
- Serial auto-detects a likely USB-CDC port (Espressif native-USB VID
0x303A, or common USB-UART bridge chips), or pin one explicitly:nimbus-notify-broker --transport serial --port /dev/cu.usbmodem101. - BLE requires your device to be powered on, flashed with firmware that
advertises the nsn BLE service, and in range. Optionally pin a specific
device:
nimbus-notify-broker --transport ble --ble-address <address>(a CoreBluetooth UUID on macOS, a MAC address on Linux). Without--ble-address, the broker scans for the nsn service UUID.
Transport selection happens once at startup — there's no live failover between serial and BLE mid-session in this version.
Session eviction (--ttl)
A session that ends cleanly (/exit, Ctrl-D) frees its ring segment
instantly via the SessionEnd hook. A session that is hard-killed (closing
the terminal, kill, force-quit) never runs that hook, so the broker reaps it
after an idle timeout instead:
nimbus-notify-broker --ttl 120 # default: drop a silent benign session after 120 s
--ttl SECONDSsets the window for benign states (idle / running / done). Lower it for a snappier ring; raise it to keep quiet-but-alive sessions on the ring longer. Floored at 5 s.- Call-to-action states (awaiting approval / awaiting input / error) always
hold 900 s regardless of
--ttl, so a job that's blocked on you can't quietly disappear from the ring while it's still pending.
Bonding the BLE link (one time)
Recent Nimbus firmware secures the BLE link (bonded + encrypted, LE Secure Connections), so a device won't accept frames from an un-bonded computer — this stops anyone in radio range from painting your ring. Bonding is automatic (macOS "Just Works", no code to type) — but there are two things to know:
- Nimbus does not appear in System Settings → Bluetooth. That list only shows recognized device types (keyboards, mice, audio). A custom BLE peripheral is invisible there by design — don't look for it. Bonding happens on-demand when the broker first touches the device, not by picking it in a list.
- Do the first bond with the broker in the foreground. macOS only completes
a bond for a process running in your normal login session — a fully detached
process (e.g.
nohup … & disown) is too detached and the bond silently fails. So the first time, just runnimbus-notify-broker --transport blein a normal terminal and leave it up for a few seconds. Once bonded, the bond persists on both the device (flash) and your Mac, and every session after that is transparent — you can then run it backgrounded or as a service (below).
To un-bond: on the device, Connectivity → Forget paired devices (or the
FORGETBONDS console command); the Mac side clears on its own next connect.
The firmware also carries a dormant MITM/passkey mode (it shows a 6-digit code on its e-ink screen). It's off by default because macOS won't surface the passkey-entry dialog for a broker-triggered pairing of a custom peripheral, so that pairing can't complete without a companion app.
Running persistently
For day-to-day use you'll want the broker running in the background whenever you're coding, not started by hand each time — it's a long-lived listener the session hooks fire into, so if it isn't running your device just stops updating.
Recommended: --install-service
One command installs (and later removes) the auto-start service — a macOS launchd LaunchAgent or a Linux systemd user unit — that starts the broker at every login/reboot:
nimbus-notify-broker --install-service # enable auto-start
nimbus-notify-broker --uninstall-service # remove it
⚠ macOS + BLE: run nimbus-notify-broker --transport ble in the foreground
once first to complete the "Just Works" bond (a fully-detached process can't
— see Bonding the BLE link); serial needs no
bond. The service uses
--transport auto (serial if a board is plugged at boot, else BLE).
The rest of this section documents what --install-service writes, if you'd
rather manage it by hand.
macOS (launchd)
--install-service writes ~/Library/LaunchAgents/com.nimbus-notify.broker.plist
(equivalent to creating it yourself):
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key><string>com.nimbus-notify.broker</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/env</string>
<string>nimbus-notify-broker</string>
<string>--transport</string>
<string>auto</string>
</array>
<key>RunAtLoad</key><true/>
<key>KeepAlive</key><true/>
<key>StandardOutPath</key><string>/tmp/nimbus-notify-broker.log</string>
<key>StandardErrorPath</key><string>/tmp/nimbus-notify-broker.log</string>
</dict>
</plist>
Then:
launchctl load ~/Library/LaunchAgents/com.nimbus-notify.broker.plist
Linux (systemd, user service)
Create ~/.config/systemd/user/nimbus-notify-broker.service:
[Unit]
Description=nimbus-notify broker
[Service]
ExecStart=%h/.local/bin/nimbus-notify-broker --transport auto
Restart=on-failure
[Install]
WantedBy=default.target
Then:
systemctl --user daemon-reload
systemctl --user enable --now nimbus-notify-broker
Adjust ExecStart to wherever pip install -e . put the entry point
(check with which nimbus-notify-broker).
The nsn wire protocol
A short summary — full details in docs/protocol.md.
[SOF 0xAA] [LEN] [payload: LEN bytes] [CRC8-MAXIM]
The payload starts with magic byte 0x4E, then a sequence number, then up
to 16 fixed-size segment records (state, hue, animation, LED span) plus a
global brightness — enough for a device to render a full status frame from
a single self-contained packet, no persistent client-side state required.
The reference encoder/decoder is notify/broker/frame.py.
Repository layout
notify/
broker/ frame.py (wire codec), segments.py, server.py, session.py
cli/ led_report.py — the hook-facing CLI entry point
harness/ base.py + claude.py, codex.py, vibe.py adapters
transport/ serial_tx.py, ble_tx.py
state.py shared State/Anim enums + default styling
tests/ pytest suite for the above
hooks/ drop-in hook configs per harness
commands/ Claude Code plugin slash commands
docs/ protocol.md
Contributing
See CONTRIBUTING.md, including the versioning convention used for releases.
License
MIT — see LICENSE. Copyright (c) 2026 Roy Darnell.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nimbus_notify-1.3.1.tar.gz.
File metadata
- Download URL: nimbus_notify-1.3.1.tar.gz
- Upload date:
- Size: 63.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b982fdac2bb44d2e681e701c260116cc8fed90d462041813648c11e2d5a02f77
|
|
| MD5 |
4a2f548f66032d114a4f5aee424421a1
|
|
| BLAKE2b-256 |
78bd890fd0a9ef21870be3137bf5095b0f4e42ec97c6a3c1778110ce3ebd06a5
|
Provenance
The following attestation bundles were made for nimbus_notify-1.3.1.tar.gz:
Publisher:
publish.yml on ristllin/nimbus-notify
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nimbus_notify-1.3.1.tar.gz -
Subject digest:
b982fdac2bb44d2e681e701c260116cc8fed90d462041813648c11e2d5a02f77 - Sigstore transparency entry: 2171905316
- Sigstore integration time:
-
Permalink:
ristllin/nimbus-notify@b86ea513a027b168be6c696edce4fa81247cc242 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/ristllin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b86ea513a027b168be6c696edce4fa81247cc242 -
Trigger Event:
release
-
Statement type:
File details
Details for the file nimbus_notify-1.3.1-py3-none-any.whl.
File metadata
- Download URL: nimbus_notify-1.3.1-py3-none-any.whl
- Upload date:
- Size: 47.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd0455d788a68ff8316e000b6f514d0a41824781d35201c198522049d9fd0cd4
|
|
| MD5 |
b6dbf258118ede1835c53eae5354e8f5
|
|
| BLAKE2b-256 |
505888e604b5279748c75728ff8df3c278a345a1b2cb59cd8d43ebeb9848e66d
|
Provenance
The following attestation bundles were made for nimbus_notify-1.3.1-py3-none-any.whl:
Publisher:
publish.yml on ristllin/nimbus-notify
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nimbus_notify-1.3.1-py3-none-any.whl -
Subject digest:
cd0455d788a68ff8316e000b6f514d0a41824781d35201c198522049d9fd0cd4 - Sigstore transparency entry: 2171905323
- Sigstore integration time:
-
Permalink:
ristllin/nimbus-notify@b86ea513a027b168be6c696edce4fa81247cc242 -
Branch / Tag:
refs/tags/v1.3.1 - Owner: https://github.com/ristllin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b86ea513a027b168be6c696edce4fa81247cc242 -
Trigger Event:
release
-
Statement type: