2 "name": "commonroom-recorder",
02393b5Agent interface: inbox/ for chat interjections + AGENT.md instructionsJeremy Magland 3 "version": "0.4.0",
200df8aRecord commonroom audio and chat from the command lineJeremy Magland 4 "description": "CLI bot that joins a commonroom room and records every participant's audio (and the chat) to disk for transcription",
5 "type": "module",
6 "bin": {
7 "commonroom-recorder": "dist/cli.js"
8 },
10 "dist",
11 "README.md"
12 ],
14 "build": "tsc -b",
200df8aRecord commonroom audio and chat from the command lineJeremy Magland 16 "record": "node dist/cli.js",
cbaa294Add transcribe subcommand: merged speaker-attributed transcriptJeremy Magland 17 "test:loopback": "node dist/test/loopback.js",
cb7827aLive transcription and explicit record/transcribe subcommandsJeremy Magland 18 "test:transcribe": "node dist/test/transcribe-test.js",
19 "test:live": "node dist/test/live-loopback.js"
21 "engines": {
22 "node": ">=22"
23 },
24 "dependencies": {
25 "@noble/secp256k1": "^3.1.0",
26 "@roamhq/wrtc": "^0.10.0"
27 },
28 "devDependencies": {
29 "@types/node": "^26.1.1",
30 "typescript": "^7.0.2"
31 }
32}