vigthoria-cli 1.8.0 → 1.8.2
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/dist/commands/chat.js +2 -2
- package/dist/utils/api.js +1 -1
- package/package.json +2 -3
package/dist/commands/chat.js
CHANGED
|
@@ -1606,7 +1606,7 @@ class ChatCommand {
|
|
|
1606
1606
|
clientSurface: 'cli',
|
|
1607
1607
|
localMachineCapable: true,
|
|
1608
1608
|
agentTimeoutMs: DEFAULT_V3_AGENT_TIMEOUT_MS,
|
|
1609
|
-
agentIdleTimeoutMs:
|
|
1609
|
+
agentIdleTimeoutMs: 0,
|
|
1610
1610
|
model: routingPolicy.selectedModel,
|
|
1611
1611
|
requestedModel: this.currentModel,
|
|
1612
1612
|
agentExecutionPolicy: routingPolicy,
|
|
@@ -1620,7 +1620,7 @@ class ChatCommand {
|
|
|
1620
1620
|
? Promise.race([
|
|
1621
1621
|
workflowPromise,
|
|
1622
1622
|
new Promise((_, reject) => {
|
|
1623
|
-
setTimeout(() => reject(new Error('V3_SAAS_SOFT_TIMEOUT')),
|
|
1623
|
+
setTimeout(() => reject(new Error('V3_SAAS_SOFT_TIMEOUT')), 3600000);
|
|
1624
1624
|
}),
|
|
1625
1625
|
])
|
|
1626
1626
|
: workflowPromise);
|
package/dist/utils/api.js
CHANGED
|
@@ -2732,7 +2732,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
|
|
2732
2732
|
&& context.localMachineCapable !== false;
|
|
2733
2733
|
const rescueEligibleSaaS = preferLocalV3
|
|
2734
2734
|
&& /(saas|dashboard|analytics|billing|team management|activity feed|login screen)/i.test(message);
|
|
2735
|
-
const timeoutMs = rescueEligibleSaaS ? Math.min(baseTimeoutMs,
|
|
2735
|
+
const timeoutMs = rescueEligibleSaaS ? Math.min(baseTimeoutMs, 3600000) : baseTimeoutMs;
|
|
2736
2736
|
const maxAttempts = preferLocalV3 ? 2 : 1;
|
|
2737
2737
|
let lastErrors = [];
|
|
2738
2738
|
for (let attempt = 1; attempt <= maxAttempts; attempt += 1) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vigthoria-cli",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"description": "Vigthoria Coder CLI - AI-powered terminal coding assistant",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -43,8 +43,7 @@
|
|
|
43
43
|
"test:repo:live": "npm run build && node scripts/test-live-repo-e2e.js",
|
|
44
44
|
"test:game:live": "npm run build && node scripts/test-live-game-push.js",
|
|
45
45
|
"proof:agent": "npm run build && node scripts/proof-agent-mode.js",
|
|
46
|
-
"test:fresh-install": "node scripts/test-fresh-install.js"
|
|
47
|
-
"prepublishOnly": "npm run build && node scripts/verify-package-hygiene.js && node scripts/test-fresh-install.js"
|
|
46
|
+
"test:fresh-install": "node scripts/test-fresh-install.js"
|
|
48
47
|
},
|
|
49
48
|
"keywords": [
|
|
50
49
|
"ai",
|