ai-whisper 0.4.4 → 0.5.0
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 +1 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/bin/broker-daemon.js +7 -6
- package/dist/bin/companion-agent.js +485 -17
- package/dist/bin/relay-monitor.js +7 -6
- package/dist/bin/whisper.js +610 -56
- package/dist/commands/collab/mount.d.ts +3 -2
- package/dist/commands/collab/mount.d.ts.map +1 -1
- package/dist/commands/collab/reconnect.d.ts +5 -4
- package/dist/commands/collab/reconnect.d.ts.map +1 -1
- package/dist/commands/collab/status.d.ts.map +1 -1
- package/dist/commands/collab/tell.d.ts +3 -2
- package/dist/commands/collab/tell.d.ts.map +1 -1
- package/dist/commands/skill/install.d.ts +2 -1
- package/dist/commands/skill/install.d.ts.map +1 -1
- package/dist/commands/workflow/inspect.d.ts +2 -1
- package/dist/commands/workflow/inspect.d.ts.map +1 -1
- package/dist/commands/workflow/list.d.ts +2 -1
- package/dist/commands/workflow/list.d.ts.map +1 -1
- package/dist/commands/workflow/start.d.ts +15 -9
- package/dist/commands/workflow/start.d.ts.map +1 -1
- package/dist/create-cli.d.ts.map +1 -1
- package/dist/runtime/capture-handback-text.d.ts +21 -4
- package/dist/runtime/capture-handback-text.d.ts.map +1 -1
- package/dist/runtime/companion-agent-loop.d.ts.map +1 -1
- package/dist/runtime/dashboard-state.d.ts +2 -1
- package/dist/runtime/dashboard-state.d.ts.map +1 -1
- package/dist/runtime/dashboard-view.d.ts.map +1 -1
- package/dist/runtime/id-factory.d.ts +2 -1
- package/dist/runtime/id-factory.d.ts.map +1 -1
- package/dist/runtime/launcher.d.ts.map +1 -1
- package/dist/runtime/live-session.d.ts +8 -0
- package/dist/runtime/live-session.d.ts.map +1 -1
- package/dist/runtime/mount-session-main.d.ts +25 -2
- package/dist/runtime/mount-session-main.d.ts.map +1 -1
- package/dist/runtime/mounted-turn-owned-relay.d.ts +20 -10
- package/dist/runtime/mounted-turn-owned-relay.d.ts.map +1 -1
- package/dist/runtime/operator-inspect.d.ts +7 -6
- package/dist/runtime/operator-inspect.d.ts.map +1 -1
- package/dist/runtime/provider-submit-strategy.d.ts +2 -1
- package/dist/runtime/provider-submit-strategy.d.ts.map +1 -1
- package/dist/runtime/providers.d.ts +6 -5
- package/dist/runtime/providers.d.ts.map +1 -1
- package/dist/runtime/relay-service.d.ts +4 -4
- package/dist/runtime/relay-service.d.ts.map +1 -1
- package/dist/runtime/relay-view-state.d.ts +4 -3
- package/dist/runtime/relay-view-state.d.ts.map +1 -1
- package/dist/runtime/theme.d.ts +1 -0
- package/dist/runtime/theme.d.ts.map +1 -1
- package/dist/skills/ai-whisper-bugfix/SKILL.md +14 -5
- package/dist/skills/ai-whisper-code-review/SKILL.md +79 -0
- package/dist/skills/ai-whisper-ralph/SKILL.md +14 -5
- package/dist/skills/ai-whisper-sdd/SKILL.md +15 -5
- package/package.json +3 -2
- package/skills/ai-whisper-bugfix/SKILL.md +14 -5
- package/skills/ai-whisper-code-review/SKILL.md +79 -0
- package/skills/ai-whisper-ralph/SKILL.md +14 -5
- package/skills/ai-whisper-sdd/SKILL.md +15 -5
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ pnpm install
|
|
|
79
79
|
pnpm build
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
-
Install the bundled agent skills once (they let the agents verify, kick off, and report on workflows):
|
|
82
|
+
Install the bundled agent skills once (they let the agents verify, kick off, and report on workflows). This also installs `ai-whisper-code-review`, the skill workflow code-review handoffs use to evaluate agent-written code:
|
|
83
83
|
|
|
84
84
|
```bash
|
|
85
85
|
whisper skill install
|