vgxness 1.20.9 → 1.20.10
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.
|
@@ -133,7 +133,7 @@ export class CodeContextService {
|
|
|
133
133
|
workspaceRoot,
|
|
134
134
|
recommendedCommands: [
|
|
135
135
|
'codegraph init # optional: create/update CodeGraph index outside VGXNESS',
|
|
136
|
-
'graphify
|
|
136
|
+
'graphify update . --force --no-cluster # optional: create/update Graphify code graph outside VGXNESS',
|
|
137
137
|
],
|
|
138
138
|
safety: { ...codeContextSafety },
|
|
139
139
|
summary: '[read-only] Advisory plan only. VGXNESS does not install packages, initialize indexes, register external MCP servers, or write provider config.',
|
|
@@ -156,7 +156,7 @@ function providerLabel(provider) {
|
|
|
156
156
|
return provider === 'codegraph' ? 'CodeGraph' : 'Graphify';
|
|
157
157
|
}
|
|
158
158
|
function queryArgs(provider, mode, question) {
|
|
159
|
-
return provider === 'codegraph' ? [mode, question] : ['query',
|
|
159
|
+
return provider === 'codegraph' ? [mode, question] : ['query', question];
|
|
160
160
|
}
|
|
161
161
|
function firstNonEmpty(...values) {
|
|
162
162
|
return values.find((value) => value.trim().length > 0)?.trim() ?? '';
|
|
@@ -185,7 +185,7 @@ function runBoundedCommand(request) {
|
|
|
185
185
|
shell: false,
|
|
186
186
|
encoding: 'utf8',
|
|
187
187
|
timeout: request.timeoutMs,
|
|
188
|
-
maxBuffer:
|
|
188
|
+
maxBuffer: maxMaxBytes,
|
|
189
189
|
stdio: ['ignore', 'pipe', 'pipe'],
|
|
190
190
|
...(request.env === undefined ? {} : { env: request.env }),
|
|
191
191
|
};
|
|
@@ -18,7 +18,7 @@ export const graphifyProviderDefinition = {
|
|
|
18
18
|
reportRelativePath: join('graphify-out', 'GRAPH_REPORT.md'),
|
|
19
19
|
setupGuidance: [
|
|
20
20
|
'Install Graphify explicitly if desired: pipx install graphifyy',
|
|
21
|
-
'Generate graph output only after approval: graphify <workspace>',
|
|
21
|
+
'Generate graph output only after approval: graphify update <workspace> --force --no-cluster',
|
|
22
22
|
],
|
|
23
23
|
};
|
|
24
24
|
export const codeContextProviderDefinitions = [codegraphProviderDefinition, graphifyProviderDefinition];
|
|
@@ -51,7 +51,7 @@ export function runCodeContextCommand(command, parsed, environment) {
|
|
|
51
51
|
kind: 'code-context-setup-plan',
|
|
52
52
|
version: 1,
|
|
53
53
|
workspaceRoot,
|
|
54
|
-
recommendedCommands: ['codegraph init # optional: run manually outside VGXNESS', 'graphify
|
|
54
|
+
recommendedCommands: ['codegraph init # optional: run manually outside VGXNESS', 'graphify update . --force --no-cluster # optional: run manually outside VGXNESS'],
|
|
55
55
|
safety: { ...codeContextSafety },
|
|
56
56
|
summary: '[read-only] Advisory plan only. VGXNESS does not install packages, initialize indexes, register external MCP servers, or write provider config.',
|
|
57
57
|
};
|