@0xmaxma/claude-gateway 2.0.1 → 2.0.3
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 +7 -0
- package/dist/agent/runner.js +1 -1
- package/dist/agent/runner.js.map +1 -1
- package/dist/cli/commands/doctor.d.ts +1 -1
- package/dist/cli/commands/doctor.d.ts.map +1 -1
- package/dist/cli/commands/doctor.js +40 -2
- package/dist/cli/commands/doctor.js.map +1 -1
- package/dist/cli/dependencies.d.ts +22 -0
- package/dist/cli/dependencies.d.ts.map +1 -0
- package/dist/cli/dependencies.js +105 -0
- package/dist/cli/dependencies.js.map +1 -0
- package/dist/cli/index.js +2 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/startup-diagnostics.d.ts +15 -0
- package/dist/cli/startup-diagnostics.d.ts.map +1 -0
- package/dist/cli/startup-diagnostics.js +266 -0
- package/dist/cli/startup-diagnostics.js.map +1 -0
- package/dist/orchestration/bridge.d.ts +1 -0
- package/dist/orchestration/bridge.d.ts.map +1 -1
- package/dist/orchestration/bridge.js +7 -0
- package/dist/orchestration/bridge.js.map +1 -1
- package/dist/orchestration/process-turn.js +1 -1
- package/dist/orchestration/process-turn.js.map +1 -1
- package/dist/orchestration/runtime.d.ts +1 -1
- package/dist/orchestration/runtime.d.ts.map +1 -1
- package/dist/orchestration/runtime.js +45 -15
- package/dist/orchestration/runtime.js.map +1 -1
- package/dist/orchestration/store.d.ts.map +1 -1
- package/dist/orchestration/store.js +31 -1
- package/dist/orchestration/store.js.map +1 -1
- package/dist/orchestration/task-questions.d.ts +23 -5
- package/dist/orchestration/task-questions.d.ts.map +1 -1
- package/dist/orchestration/task-questions.js +126 -54
- package/dist/orchestration/task-questions.js.map +1 -1
- package/dist/orchestration/tasks/service.d.ts +2 -0
- package/dist/orchestration/tasks/service.d.ts.map +1 -1
- package/dist/orchestration/tasks/service.js +4 -0
- package/dist/orchestration/tasks/service.js.map +1 -1
- package/dist/voice/errors.d.ts +1 -1
- package/dist/voice/errors.d.ts.map +1 -1
- package/dist/voice/errors.js +4 -1
- package/dist/voice/errors.js.map +1 -1
- package/dist/voice/line-audio.d.ts.map +1 -1
- package/dist/voice/line-audio.js +14 -1
- package/dist/voice/line-audio.js.map +1 -1
- package/dist/voice/providers/gemini.js +1 -1
- package/dist/voice/providers/gemini.js.map +1 -1
- package/dist/voice/session.d.ts.map +1 -1
- package/dist/voice/session.js +7 -1
- package/dist/voice/session.js.map +1 -1
- package/mcp/tools/tasks/module.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,3 +69,10 @@ Follow the [quickstart](https://0xmaxma.github.io/claude-gateway/guide/quickstar
|
|
|
69
69
|
| Source builds and contributions | [Development](https://0xmaxma.github.io/claude-gateway/reference/development.html) |
|
|
70
70
|
|
|
71
71
|
API documentation lives on the documentation website. [CLI command reference](https://0xmaxma.github.io/claude-gateway/reference/cli.html) is the generated command reference. To edit or preview this site, see [website development](website/README.md).
|
|
72
|
+
|
|
73
|
+
### Installation health
|
|
74
|
+
|
|
75
|
+
Run `claude-gateway doctor` to check startup and voice dependencies, even when the
|
|
76
|
+
server is down. Use `claude-gateway doctor fix` for supported local repairs and
|
|
77
|
+
installation of missing `ffmpeg`/`ffprobe`. Repair asks for confirmation and never
|
|
78
|
+
starts or restarts the gateway. See [diagnosis and repair](https://0xmaxma.github.io/claude-gateway/guide/troubleshooting.html#gateway-will-not-start-doctor-and-repair).
|
package/dist/agent/runner.js
CHANGED
|
@@ -404,7 +404,7 @@ class AgentRunner extends events_1.EventEmitter {
|
|
|
404
404
|
await runtime.flushHistory();
|
|
405
405
|
return task;
|
|
406
406
|
}
|
|
407
|
-
stopVoiceResponse(sessionId) { this.orchestration?.stopResponse(sessionId); }
|
|
407
|
+
stopVoiceResponse(sessionId) { this.orchestration?.stopResponse(sessionId, 'barge-in'); }
|
|
408
408
|
async sendOrchestratedApi(sessionId, chatId, message, opts, onText, onTool) {
|
|
409
409
|
const semantic = this.agentConfig.orchestration?.conversation?.semanticIntake === true;
|
|
410
410
|
if (!semantic && this.pendingApiSessions.has(sessionId))
|