vgxness 1.0.2 → 1.0.3

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.
@@ -1,11 +1,11 @@
1
1
  export function createVgxnessMcpServerCommand(databasePath, source = 'flag') {
2
- return source === 'global-default' ? ['npm', 'run', 'cli', '--', 'mcp', 'start'] : ['npm', 'run', 'cli', '--', 'mcp', 'start', '--db', databasePath];
2
+ return source === 'global-default' ? ['vgxness', 'mcp', 'start'] : ['vgxness', 'mcp', 'start', '--db', databasePath];
3
3
  }
4
4
  export function createMcpClientSetupPreview(input) {
5
5
  const databasePathSource = input.databasePathSource ?? 'flag';
6
6
  const server = {
7
7
  name: 'vgxness',
8
- command: 'npm',
8
+ command: 'vgxness',
9
9
  args: createVgxnessMcpServerCommand(input.databasePath, databasePathSource).slice(1),
10
10
  };
11
11
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vgxness",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
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": {