The dog that barked when messages arrived. A modern CLI communication tool for software engineers.
Project description
biff
Team communication for engineers who never leave the terminal.
Named after the Berkeley dog whose 1980 mail notification program was part of the same BSD family as talk, wall, finger, who, and mesg. Biff resurrects the Unix communication vocabulary as MCP-native slash commands inside Claude Code.
Platforms: macOS, Linux
Quick Start
curl -fsSL https://raw.githubusercontent.com/punt-labs/biff/6ce60b3/install.sh | sh
Restart Claude Code twice. Type /who to see your team.
Manual install (if you already have uv)
uv tool install punt-biff
biff install
biff doctor
Verify before running
curl -fsSL https://raw.githubusercontent.com/punt-labs/biff/6ce60b3/install.sh -o install.sh
shasum -a 256 install.sh
cat install.sh
sh install.sh
Features
- MCP-native --- runs inside Claude Code as slash commands, no separate app
- BSD vocabulary ---
/who,/write,/talk,/wall--- commands engineers already know - NATS relay --- cross-machine presence and messaging over encrypted connections
- Agent-first --- agents show up in
/whoalongside humans, coordinate via/planand/write - Status bar --- live unread count, wall broadcasts, talk messages --- wraps your existing status line
- Zero config --- installs in one command, activates per-repo with
/biff y
What It Looks Like
See who's online
> /who
▶ NAME TTY IDLE S HOST DIR PLAN
@kai tty1 0:03 + m2-mb-air /Users/kai/code/myapp refactoring auth module
@eric tty2 1:22 + m2-mb-air /Users/eric/code/myapp reviewing PR #47
@priya tty1 0:00 + priya-mbp /Users/priya/code/myapp writing integration tests
S is message status: + means accepting messages, - means do not disturb.
Send a message
> /write @kai "auth module looks good, just one nit on the error handling"
Message sent to @kai.
Check your inbox
> /read
▶ FROM DATE MESSAGE
kai Sat Feb 15 14:01 hey, ready for review?
eric Sat Feb 15 13:45 pushed the fix for the flaky test
priya Sat Feb 15 12:30 can you look at the migration script?
More examples: /finger, /plan, /last, /wall, /talk, /mesg
Check what someone is working on
> /finger @kai
▶ Login: kai Messages: on
On since Sat Feb 15 14:01 (UTC) on tty1, idle 0:03
Host: m2-mb-air Dir: /Users/kai/code/myapp
Plan:
refactoring auth module
Set your status
> /plan "debugging the websocket reconnect logic"
Plan: debugging the websocket reconnect logic
Bead IDs auto-expand:
> /plan biff-ka4
Plan: biff-ka4: post-checkout hook: update plan from branch
Session history
> /last
▶ NAME TTY HOST LOGIN LOGOUT DURATION
@kai tty3 m2-mb-air Sat Feb 22 14:01 still logged in -
@kai tty2 m2-mb-air Sat Feb 22 11:30 Sat Feb 22 13:58 2:28
@eric tty1 m2-mb-air Sat Feb 22 09:15 Sat Feb 22 12:45 3:30
Broadcast to the team
> /wall "release freeze --- do not push to main" 2h
Wall posted (2h): release freeze --- do not push to main
Every teammate's status bar shows WALL: release freeze in bold red. Expires automatically.
Talk in real time
> /talk @kai "can you review PR #42?"
Talk session started with @kai. Replies appear on the status bar.
Incoming messages show on your status bar automatically. Reply with /write, close with /talk end.
Go do-not-disturb
> /mesg n
is n
Your status bar shows (n) instead of the unread count. Messages still accumulate --- /mesg y or /read reveals them.
Commands
| Command | Origin | Purpose |
|---|---|---|
/write @user "text" |
BSD write |
Send a message |
/read |
BSD from |
Check your inbox |
/finger @user |
BSD finger |
Check what someone is working on |
/who |
BSD who |
List active sessions |
/last |
BSD last |
Show session login/logout history |
/plan "text" |
BSD .plan |
Set your status |
/tty "name" |
BSD tty |
Name the current session |
/talk @user "msg" |
BSD talk |
Start a real-time conversation |
/wall "text" |
BSD wall |
Broadcast to the team |
/mesg y | /mesg n |
BSD mesg |
Control message reception |
Setup
Biff requires a git repo and a GitHub identity. Your username and display name are resolved automatically from gh auth --- no manual configuration needed.
Create a .biff file
Commit a .biff file in your repo root (TOML format):
[team]
members = ["kai", "eric", "priya"]
[relay]
url = "tls://connect.ngs.global"
Biff ships with a shared demo relay so your team can start immediately. When you're ready for your own relay, see relay configuration.
biff install registers the MCP server, installs slash commands, and enables the plugin. biff enable activates biff in the current repo and deploys git hooks. Run biff doctor to verify everything is wired up. See Installing for the full guide.
Status Bar
Biff appends to your existing Claude Code status line --- it never replaces it:
Line 1: your-existing-status | kai:tty1(3)
Line 2: ▶ WALL: release freeze until 5pm
Three states: kai:tty1(0) when caught up, kai:tty1(3) (bold yellow) with unreads, kai:tty1(n) when messages are off. Line 2 shows active /talk messages (bold yellow), wall broadcasts (bold red), or an idle marker.
Agents Welcome
Because biff speaks MCP, it does not distinguish between human and agent sessions. An autonomous coding agent can /plan what it's working on, /write a human when it needs a decision, and show up in /who alongside everyone else.
Biff coordinates hybrid teams across two planes:
- Logical plane (cross-machine):
/planshows the task each agent is working on./whoshows all plans across all machines. This prevents duplicate work. - Physical plane (same-machine):
/whoshows host and directory per session. When two agents share the same machine and directory, they coordinate via/writeand create git worktrees to work in isolation.
See Agent Workflow for patterns and examples.
Vision
Biff is built on a simple thesis: the terminal is the new center of gravity for software engineering, and the communication tools haven't caught up. Slack was built for the open-office, always-online workplace. Biff is built for the deep-focus, AI-accelerated one.
Every command implies intent. There are no channels to monitor, no threads to catch up on, no emoji reactions to parse. Communication is pull-based: you decide when to engage.
Roadmap
Shipped
- Presence:
/who,/finger,/plan,/tty,/last - Messaging:
/write,/read,/mesg - Broadcast:
/wallwith duration-based expiry - Real-time:
/talkwith NATS instant wake-up and status bar display - NATS relay for cross-machine communication
- Per-project activation (
/biff y) with lazy connection management - Status bar with live unread count, wall, and talk display
- Workflow hooks: plan auto-expand, session lifecycle, git integration
Next
| Phase | What Ships |
|---|---|
| Security | E2E encryption (NaCl/libsodium), GitHub identity and auth, per-repo NATS credentials |
| Real-time | /pair for session sharing with explicit consent |
| Hosted relay | Managed service with admin controls, audit logs, team isolation |
Documentation
Installing | Agent Workflow | Claude Setup | FAQ | Troubleshooting
Design Log | Installer Design | Changelog | Contributing
Development
uv sync --extra dev # Install dependencies
uv run ruff check . # Lint
uv run ruff format . # Format
uv run mypy src/ tests/ # Type check
uv run pytest # Test (unit + integration)
uv run pytest -m nats # NATS tests (requires local nats-server)
uv run pytest -m hosted # Hosted NATS tests (see CONTRIBUTING.md)
License
MIT
Project details
Release history Release notifications | RSS feed
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 punt_biff-0.11.2.tar.gz.
File metadata
- Download URL: punt_biff-0.11.2.tar.gz
- Upload date:
- Size: 75.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94844008b1903fab59d61cff0f008baa9bb557f9c51f1399e972ee6954fa8648
|
|
| MD5 |
ed1df2462a54c0c0092b85c51bf839c8
|
|
| BLAKE2b-256 |
940a57d4ff1fdb5389ef8fb9814eedd8dc61f7b6679cd40184e2a96db5a50e8e
|
Provenance
The following attestation bundles were made for punt_biff-0.11.2.tar.gz:
Publisher:
release.yml on punt-labs/biff
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
punt_biff-0.11.2.tar.gz -
Subject digest:
94844008b1903fab59d61cff0f008baa9bb557f9c51f1399e972ee6954fa8648 - Sigstore transparency entry: 995267652
- Sigstore integration time:
-
Permalink:
punt-labs/biff@97c90cc343af89f691ee13fe6fa86736417ebce3 -
Branch / Tag:
refs/tags/v0.11.2 - Owner: https://github.com/punt-labs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@97c90cc343af89f691ee13fe6fa86736417ebce3 -
Trigger Event:
push
-
Statement type:
File details
Details for the file punt_biff-0.11.2-py3-none-any.whl.
File metadata
- Download URL: punt_biff-0.11.2-py3-none-any.whl
- Upload date:
- Size: 94.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01b4b8162b1cc3196de7b8f08e0343d06be58377f49f0e4ea8543ab6a77486e5
|
|
| MD5 |
0fdf37dddeb0d8852cb9cc00575a7f93
|
|
| BLAKE2b-256 |
a05d105155a2830d6503c07bfa1cba9c45d11595abe47b9b5219c622437ee729
|
Provenance
The following attestation bundles were made for punt_biff-0.11.2-py3-none-any.whl:
Publisher:
release.yml on punt-labs/biff
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
punt_biff-0.11.2-py3-none-any.whl -
Subject digest:
01b4b8162b1cc3196de7b8f08e0343d06be58377f49f0e4ea8543ab6a77486e5 - Sigstore transparency entry: 995267707
- Sigstore integration time:
-
Permalink:
punt-labs/biff@97c90cc343af89f691ee13fe6fa86736417ebce3 -
Branch / Tag:
refs/tags/v0.11.2 - Owner: https://github.com/punt-labs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@97c90cc343af89f691ee13fe6fa86736417ebce3 -
Trigger Event:
push
-
Statement type: