voicecc 1.2.9 → 1.2.11
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.
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
import { test, describe } from "node:test";
|
|
8
8
|
import { strict as assert } from "node:assert";
|
|
9
9
|
|
|
10
|
+
import type { McpServerStatus } from "@anthropic-ai/claude-agent-sdk";
|
|
10
11
|
import { mapSdkStatusToEntry } from "./mcp-servers.js";
|
|
11
12
|
|
|
12
13
|
// ============================================================================
|
|
@@ -19,7 +20,7 @@ describe("mapSdkStatusToEntry", () => {
|
|
|
19
20
|
name: "claude.ai Notion",
|
|
20
21
|
status: "connected",
|
|
21
22
|
scope: "claudeai",
|
|
22
|
-
config: { url: "https://mcp.notion.com/mcp" },
|
|
23
|
+
config: { url: "https://mcp.notion.com/mcp" } as McpServerStatus["config"],
|
|
23
24
|
});
|
|
24
25
|
|
|
25
26
|
assert.deepEqual(entry, {
|
|
@@ -36,7 +37,7 @@ describe("mapSdkStatusToEntry", () => {
|
|
|
36
37
|
name: "chrome-devtools",
|
|
37
38
|
status: "connected",
|
|
38
39
|
scope: "user",
|
|
39
|
-
config: { command: "npx", args: ["chrome-devtools-mcp@latest"] },
|
|
40
|
+
config: { command: "npx", args: ["chrome-devtools-mcp@latest"] } as McpServerStatus["config"],
|
|
40
41
|
});
|
|
41
42
|
|
|
42
43
|
assert.equal(entry.scope, "user");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "voicecc",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.11",
|
|
4
4
|
"description": "Voice Agent Platform running on Claude Code -- create and deploy conversational voice agents with ElevenLabs STT/TTS and VAD",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"linux"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@anthropic-ai/claude-agent-sdk": "^0.
|
|
39
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.78",
|
|
40
40
|
"@anthropic-ai/sdk": "^0.39.0",
|
|
41
41
|
"@hono/node-server": "^1.19.9",
|
|
42
42
|
"archiver": "^7.0.1",
|
|
@@ -138,6 +138,7 @@ async def get_or_create_session(session_key: str, agent_id: str | None = None) -
|
|
|
138
138
|
permission_mode="bypassPermissions",
|
|
139
139
|
include_partial_messages=True,
|
|
140
140
|
max_thinking_tokens=10000,
|
|
141
|
+
setting_sources=["user", "project", "local"],
|
|
141
142
|
)
|
|
142
143
|
|
|
143
144
|
client = ClaudeSDKClient(options=options)
|
|
@@ -315,6 +315,7 @@ async def _run_heartbeat_session(
|
|
|
315
315
|
permission_mode="bypassPermissions",
|
|
316
316
|
include_partial_messages=True,
|
|
317
317
|
max_thinking_tokens=0,
|
|
318
|
+
setting_sources=["user", "project", "local"],
|
|
318
319
|
)
|
|
319
320
|
client = ClaudeSDKClient(options=options)
|
|
320
321
|
await client.connect()
|