vigthoria-cli 1.10.36 → 1.10.47
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/agent-session-menu.d.ts +19 -0
- package/dist/commands/agent-session-menu.js +155 -0
- package/dist/commands/auth.js +68 -51
- package/dist/commands/bridge.js +19 -12
- package/dist/commands/cancel.js +22 -15
- package/dist/commands/chat.d.ts +0 -22
- package/dist/commands/chat.js +402 -1084
- package/dist/commands/config.js +73 -33
- package/dist/commands/deploy.js +123 -83
- package/dist/commands/device.js +61 -21
- package/dist/commands/edit.js +39 -32
- package/dist/commands/explain.js +25 -18
- package/dist/commands/generate.js +44 -37
- package/dist/commands/hub.js +102 -95
- package/dist/commands/index.js +46 -41
- package/dist/commands/legion.js +186 -146
- package/dist/commands/review.js +36 -29
- package/dist/commands/security.js +12 -5
- package/dist/commands/wallet.js +35 -28
- package/dist/commands/workflow.js +20 -13
- package/dist/utils/brain-hub-client.d.ts +32 -0
- package/dist/utils/brain-hub-client.js +52 -0
- package/dist/utils/bridge-client.js +52 -11
- package/dist/utils/codebase-indexer.d.ts +59 -0
- package/dist/utils/codebase-indexer.js +351 -0
- package/dist/utils/context-ranker.js +21 -15
- package/dist/utils/files.js +42 -5
- package/dist/utils/logger.js +50 -42
- package/dist/utils/persona.js +8 -3
- package/dist/utils/post-write-validator.js +29 -22
- package/dist/utils/project-memory.js +23 -16
- package/dist/utils/task-display.js +20 -13
- package/dist/utils/workspace-brain-service.d.ts +43 -0
- package/dist/utils/workspace-brain-service.js +158 -0
- package/dist/utils/workspace-cache.js +26 -18
- package/dist/utils/workspace-stream.js +63 -21
- package/package.json +3 -6
- package/scripts/release/validate-no-go-gates.sh +1 -1
- package/dist/commands/fork.d.ts +0 -17
- package/dist/commands/fork.js +0 -164
- package/dist/commands/history.d.ts +0 -17
- package/dist/commands/history.js +0 -113
- package/dist/commands/preview.d.ts +0 -55
- package/dist/commands/preview.js +0 -467
- package/dist/commands/replay.d.ts +0 -18
- package/dist/commands/replay.js +0 -156
- package/dist/commands/repo.d.ts +0 -97
- package/dist/commands/repo.js +0 -773
- package/dist/commands/update.d.ts +0 -9
- package/dist/commands/update.js +0 -201
- package/dist/index.d.ts +0 -21
- package/dist/index.js +0 -1823
- package/dist/utils/api.d.ts +0 -572
- package/dist/utils/api.js +0 -6548
- package/dist/utils/cli-state.d.ts +0 -54
- package/dist/utils/cli-state.js +0 -185
- package/dist/utils/config.d.ts +0 -85
- package/dist/utils/config.js +0 -267
- package/dist/utils/session.d.ts +0 -118
- package/dist/utils/session.js +0 -423
- package/dist/utils/tools.d.ts +0 -274
- package/dist/utils/tools.js +0 -3502
package/dist/commands/chat.d.ts
CHANGED
|
@@ -61,10 +61,6 @@ export declare class ChatCommand {
|
|
|
61
61
|
private isLegacyAgentFallbackAllowed;
|
|
62
62
|
private resolveAgentExecutionPolicy;
|
|
63
63
|
private getMessagesForModel;
|
|
64
|
-
private normalizeClientV3ToolPath;
|
|
65
|
-
private resolveClientV3ToolPath;
|
|
66
|
-
private normalizeClientV3ToolArgs;
|
|
67
|
-
private executeClientV3Tool;
|
|
68
64
|
private getActivePersonaMode;
|
|
69
65
|
private buildActivePersonaOverlay;
|
|
70
66
|
private isDiagnosticPrompt;
|
|
@@ -73,9 +69,6 @@ export declare class ChatCommand {
|
|
|
73
69
|
* question — these should use analysis_only workflow, not full_autonomy.
|
|
74
70
|
*/
|
|
75
71
|
private isAnalysisLookupPrompt;
|
|
76
|
-
private isImplementationPrompt;
|
|
77
|
-
private getWindowsPromptPathRoots;
|
|
78
|
-
private findPromptDirectoryByName;
|
|
79
72
|
private extractExplicitLocalPath;
|
|
80
73
|
private isUnscopedPromptPathOverrideAllowed;
|
|
81
74
|
private isPathWithinRoot;
|
|
@@ -97,7 +90,6 @@ export declare class ChatCommand {
|
|
|
97
90
|
*/
|
|
98
91
|
private isRepoGroundedPrompt;
|
|
99
92
|
private inferAgentTaskType;
|
|
100
|
-
private bindPromptWorkspace;
|
|
101
93
|
private buildTaskShapingInstructions;
|
|
102
94
|
private buildExecutionPrompt;
|
|
103
95
|
private isProjectBrainRuntimeDisabled;
|
|
@@ -108,9 +100,6 @@ export declare class ChatCommand {
|
|
|
108
100
|
private v3ToolCallCount;
|
|
109
101
|
private v3LastActivity;
|
|
110
102
|
private v3StreamingStarted;
|
|
111
|
-
private v3StreamedTextBuffer;
|
|
112
|
-
private v3LiveToolEvidence;
|
|
113
|
-
private v3PendingToolCalls;
|
|
114
103
|
/**
|
|
115
104
|
* Strip server-internal path prefixes from tool output strings.
|
|
116
105
|
* Prevents exposing paths like /var/www/V3-Code-Agent/... to end users.
|
|
@@ -121,13 +110,6 @@ export declare class ChatCommand {
|
|
|
121
110
|
private isRawV3StreamPayload;
|
|
122
111
|
private consumeV3StreamPayload;
|
|
123
112
|
private writeV3StreamText;
|
|
124
|
-
private isGenericV3AgentContent;
|
|
125
|
-
private hasAlreadyStreamedV3Content;
|
|
126
|
-
private isThinV3Summary;
|
|
127
|
-
private shouldPrintV3FinalContent;
|
|
128
|
-
private rememberV3ToolEvidence;
|
|
129
|
-
private buildUserFacingV3RunReport;
|
|
130
|
-
private printV3UserReport;
|
|
131
113
|
private updateV3AgentSpinner;
|
|
132
114
|
private updateOperatorSpinner;
|
|
133
115
|
constructor(config: Config, logger: Logger);
|
|
@@ -163,9 +145,6 @@ export declare class ChatCommand {
|
|
|
163
145
|
private runOperatorDirectAnswer;
|
|
164
146
|
private runSimplePrompt;
|
|
165
147
|
private runAgentTurn;
|
|
166
|
-
private localAgentIterationCount;
|
|
167
|
-
private buildLocalAgentChatOptions;
|
|
168
|
-
private printChatModelPreflight;
|
|
169
148
|
private runLocalAgentLoop;
|
|
170
149
|
private primeBypassedTargetFileContext;
|
|
171
150
|
private tryDirectSingleFileFlow;
|
|
@@ -243,7 +222,6 @@ export declare class ChatCommand {
|
|
|
243
222
|
private buildLocalAnalysisFallback;
|
|
244
223
|
private tryDeterministicSingleFileRewrite;
|
|
245
224
|
private extractExactTextRequirement;
|
|
246
|
-
private tryLocalToolFallback;
|
|
247
225
|
private executeToolCalls;
|
|
248
226
|
private formatToolResult;
|
|
249
227
|
private truncateText;
|