vgxness 1.0.4 → 1.0.5

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.
@@ -74,7 +74,7 @@ function storeStatus(result) {
74
74
  status: 'blocked',
75
75
  path: '',
76
76
  blocker: result.error.message,
77
- recovery: 'Run `npm run cli -- doctor` and verify the configured local memory path is writable.',
77
+ recovery: 'Run `vgx doctor` and verify the configured local memory path is writable.',
78
78
  };
79
79
  }
80
80
  function mcpStatus(result, storeReadiness) {
@@ -178,17 +178,17 @@ function verificationSummary(environment, project, providers, agents, mcp) {
178
178
  }
179
179
  function nextAction(store, mcp, defaults, providers, project) {
180
180
  if (store.status !== 'ready') {
181
- return { command: 'npm run cli -- doctor', reason: `Local store is blocked: ${store.blocker ?? 'local store is unavailable'}` };
181
+ return { command: 'vgx doctor', reason: `Local store is blocked: ${store.blocker ?? 'local store is unavailable'}` };
182
182
  }
183
183
  if (defaults.status !== 'ready') {
184
184
  if (defaults.blocker?.startsWith('No project selected') === true) {
185
185
  return {
186
- command: 'npm run cli -- dashboard interactive --project <project>',
186
+ command: 'vgx dashboard interactive --project <project>',
187
187
  reason: defaults.nextAction ?? 'Select a project to verify project-scoped setup checks.',
188
188
  };
189
189
  }
190
190
  return {
191
- command: 'npm run cli -- agents seed --scope project',
191
+ command: 'vgx agents seed --scope project',
192
192
  reason: `Default context is blocked: ${defaults.blocker ?? 'default context is unavailable'}`,
193
193
  };
194
194
  }
@@ -201,8 +201,8 @@ function nextAction(store, mcp, defaults, providers, project) {
201
201
  reason: `Provider MCP status is not ready; review the Providers section for provider-specific preview/install guidance (${providerSummary}).`,
202
202
  };
203
203
  }
204
- return { command: 'npm run cli -- runs list', reason: 'Project setup is ready; continue with normal vgxness usage.' };
204
+ return { command: 'vgx runs list', reason: 'Project setup is ready; continue with normal vgxness usage.' };
205
205
  }
206
206
  function setupStatusCommand(project) {
207
- return project === undefined ? 'npm run cli -- setup status' : `npm run cli -- setup status --project ${project}`;
207
+ return project === undefined ? 'vgx setup status' : `vgx setup status --project ${project}`;
208
208
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vgxness",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "CLI and MCP control plane for guided AI-agent workflows, SDD, memory, and OpenCode setup.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "repository": {