Start a background recording via the scribe CLI.
Start a background audio recording using the scribe CLI. Returns a session ID that /scribe:note will later process into a hive-mind meeting note.
/scribe:start
No arguments. If the scribe binary is not on $PATH, abort and instruct the user to build it.
which scribe
If the command returns nothing or errors, abort with:
The
scribeCLI is not on your PATH. Build and install it:
cd ~/Desktop/research/scribe
export CXXFLAGS="-I$(xcrun --show-sdk-path)/usr/include/c++/v1"
cargo install --path crates/cli
scribe record --background
The command prints a single line to stdout: the session ID (format YYYY-MM-DDTHH-MM-SS-xxxxxx). Capture it.
If the command exits non-zero, report the stderr to the user and stop.
Print exactly:
Recording started. Session:
<session_id>.To stop:
- Run
scribe stopin any terminal- Say "hey scribe stop" aloud
- Tell me "stop the recording" in this session
When the meeting ends, run
/scribe:noteto process.
If the user later says "stop the recording", "end the recording", "stop scribe", or similar, run:
scribe stop
This blocks until the artifact is finalized. On success, tell the user the session is ready and suggest they run /scribe:note next.