devez-vibe 1.9.6 → 1.9.7
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/bin/dvz.exe +0 -0
- package/bridge/claude-agent-sdk-bridge.mjs +24 -1
- package/package.json +50 -50
package/bin/dvz.exe
CHANGED
|
Binary file
|
|
@@ -2802,7 +2802,18 @@ async function consumeMessage(session, message) {
|
|
|
2802
2802
|
}
|
|
2803
2803
|
await processStreamEvent(session, message);
|
|
2804
2804
|
} else if (message.type === "assistant") {
|
|
2805
|
-
if (session.turn && !message.parent_tool_use_id)
|
|
2805
|
+
if (session.turn && !message.parent_tool_use_id) {
|
|
2806
|
+
session.turn.assistantError = message.error || null;
|
|
2807
|
+
// 2.1.273's new error: the account itself is blocked until the user
|
|
2808
|
+
// verifies it, so no retry here can clear it.
|
|
2809
|
+
if (message.error === "verification_required") {
|
|
2810
|
+
notify("warning", {
|
|
2811
|
+
threadId: session.id,
|
|
2812
|
+
provider: "Claude",
|
|
2813
|
+
message: "Claude 계정 확인이 필요합니다. claude.ai에서 확인을 마친 뒤 다시 요청하세요.",
|
|
2814
|
+
});
|
|
2815
|
+
}
|
|
2816
|
+
}
|
|
2806
2817
|
processAssistant(session, message);
|
|
2807
2818
|
}
|
|
2808
2819
|
else if (message.type === "user") processUser(session, message);
|
|
@@ -4528,6 +4539,18 @@ async function runSelfTest() {
|
|
|
4528
4539
|
resumeAfterUsageLimit(limitSession, sleptWait, sleptWait.resetsAt + 31 * 60 * 1000);
|
|
4529
4540
|
if (limitSession.turn || retryInputs.length !== beforeSleep) throw new Error("Long sleep resumed unattended work");
|
|
4530
4541
|
beginTurn(limitSession);
|
|
4542
|
+
const beforeVerify = captured.length;
|
|
4543
|
+
await consumeMessage(limitSession, {
|
|
4544
|
+
type: "assistant", error: "verification_required", message: { content: [] },
|
|
4545
|
+
});
|
|
4546
|
+
const verifyWarning = captured.slice(beforeVerify).join("").trim().split("\n").filter(Boolean)
|
|
4547
|
+
.map((line) => JSON.parse(line))
|
|
4548
|
+
.find((event) => event.method === "warning" && event.params?.message?.includes("계정 확인"));
|
|
4549
|
+
if (!verifyWarning || limitSession.usageLimitWait) {
|
|
4550
|
+
throw new Error(`Verification required self-test failed: ${captured.slice(beforeVerify).join("")}`);
|
|
4551
|
+
}
|
|
4552
|
+
finishTurn(limitSession, null);
|
|
4553
|
+
beginTurn(limitSession);
|
|
4531
4554
|
await rejectLimit();
|
|
4532
4555
|
await consumeMessage(limitSession, failedResult);
|
|
4533
4556
|
const replacedWait = limitSession.usageLimitWait;
|
package/package.json
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "devez-vibe",
|
|
3
|
-
"version": "1.9.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "Stable terminal UI for Codex and Claude Agent SDK",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"codex",
|
|
8
|
-
"cli",
|
|
9
|
-
"tui",
|
|
10
|
-
"terminal",
|
|
11
|
-
"app-server",
|
|
12
|
-
"claude-agent-sdk"
|
|
13
|
-
],
|
|
14
|
-
"homepage": "https://github.com/MrHoje/Devez-vibe#readme",
|
|
15
|
-
"bugs": "https://github.com/MrHoje/Devez-vibe/issues",
|
|
16
|
-
"repository": {
|
|
17
|
-
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/MrHoje/Devez-vibe.git"
|
|
19
|
-
},
|
|
20
|
-
"license": "MIT",
|
|
21
|
-
"bin": {
|
|
22
|
-
"dvz": "bin/dvz.js"
|
|
23
|
-
},
|
|
24
|
-
"files": [
|
|
25
|
-
"bin/dvz.js",
|
|
26
|
-
"bin/dvz.exe",
|
|
27
|
-
"bridge/claude-agent-sdk-bridge.mjs",
|
|
28
|
-
"install-skills.mjs",
|
|
29
|
-
"prepare-search-deps.mjs",
|
|
30
|
-
"skills/luna-loop/",
|
|
31
|
-
"skills/insane-search/",
|
|
32
|
-
"README.md",
|
|
33
|
-
"LICENSE"
|
|
34
|
-
],
|
|
35
|
-
"os": [
|
|
36
|
-
"win32"
|
|
37
|
-
],
|
|
38
|
-
"cpu": [
|
|
39
|
-
"x64"
|
|
40
|
-
],
|
|
41
|
-
"engines": {
|
|
42
|
-
"node": ">=18"
|
|
43
|
-
},
|
|
44
|
-
"scripts": {
|
|
45
|
-
"postinstall": "node install-skills.mjs && node prepare-search-deps.mjs"
|
|
46
|
-
},
|
|
47
|
-
"dependencies": {
|
|
48
|
-
"@anthropic-ai/claude-agent-sdk": "0.3.
|
|
49
|
-
}
|
|
50
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "devez-vibe",
|
|
3
|
+
"version": "1.9.7",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Stable terminal UI for Codex and Claude Agent SDK",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"codex",
|
|
8
|
+
"cli",
|
|
9
|
+
"tui",
|
|
10
|
+
"terminal",
|
|
11
|
+
"app-server",
|
|
12
|
+
"claude-agent-sdk"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://github.com/MrHoje/Devez-vibe#readme",
|
|
15
|
+
"bugs": "https://github.com/MrHoje/Devez-vibe/issues",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/MrHoje/Devez-vibe.git"
|
|
19
|
+
},
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"bin": {
|
|
22
|
+
"dvz": "bin/dvz.js"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"bin/dvz.js",
|
|
26
|
+
"bin/dvz.exe",
|
|
27
|
+
"bridge/claude-agent-sdk-bridge.mjs",
|
|
28
|
+
"install-skills.mjs",
|
|
29
|
+
"prepare-search-deps.mjs",
|
|
30
|
+
"skills/luna-loop/",
|
|
31
|
+
"skills/insane-search/",
|
|
32
|
+
"README.md",
|
|
33
|
+
"LICENSE"
|
|
34
|
+
],
|
|
35
|
+
"os": [
|
|
36
|
+
"win32"
|
|
37
|
+
],
|
|
38
|
+
"cpu": [
|
|
39
|
+
"x64"
|
|
40
|
+
],
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=18"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"postinstall": "node install-skills.mjs && node prepare-search-deps.mjs"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@anthropic-ai/claude-agent-sdk": "0.3.273"
|
|
49
|
+
}
|
|
50
|
+
}
|