ai-whisper 0.5.9 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/bin/broker-daemon.js +1 -1
- package/dist/bin/companion-agent.js +563 -34
- package/dist/bin/relay-monitor.js +1 -1
- package/dist/bin/whisper.js +729 -102
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -61,6 +61,8 @@ You pair any two of three agents — `claude`, `codex`, and `ezio`. ai-whisper d
|
|
|
61
61
|
- **An LLM evaluator with credentials** — workflows are gated by it and refuse to start without it. See [Evaluator configuration](docs/evaluator-configuration.md).
|
|
62
62
|
- **tmux** *(optional)* — only for `whisper collab start`, which auto-arranges both agents into panes. The mount flow below does not need it.
|
|
63
63
|
|
|
64
|
+
> **Platform support:** ai-whisper is terminal-native and Unix-oriented — it drives interactive PTY sessions, so it runs on **macOS and Linux**. It is **not supported natively on Windows**: `whisper collab mount` / `reconnect` require a Unix tty-backed shell and will exit with an error pointing here. On Windows, run ai-whisper inside **[WSL2](https://learn.microsoft.com/windows/wsl/install)** — install Node, your agent CLI, and ai-whisper inside the WSL2 distro and run the commands there, where everything works as-is.
|
|
65
|
+
|
|
64
66
|
## Safety & permissions
|
|
65
67
|
|
|
66
68
|
ai-whisper launches each agent in **full-autonomy mode** so the relay can drive it unattended — `claude --dangerously-skip-permissions` and `codex --dangerously-bypass-approvals-and-sandbox`. Inside the mounted workspace the agents read, write, and run commands without prompting. Point it at code you're willing to let two agents change autonomously, watch the run on the dashboard, and remember you are the final gatekeeper — review the result before you ship it. The deeper rationale is in [Concepts](docs/concepts.md).
|
|
@@ -4386,7 +4386,7 @@ function enforceOneActiveCollabPerWorkspace(db, options = {}) {
|
|
|
4386
4386
|
|
|
4387
4387
|
// ../broker/dist/storage/clipboard-capture-lease.js
|
|
4388
4388
|
var LEASE_ID = 1;
|
|
4389
|
-
var DEFAULT_LEASE_TTL_MS =
|
|
4389
|
+
var DEFAULT_LEASE_TTL_MS = 25e3;
|
|
4390
4390
|
function defaultIsPidAlive2(pid) {
|
|
4391
4391
|
try {
|
|
4392
4392
|
process.kill(pid, 0);
|