vibe-annotations-server 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/index.js +4 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -97,9 +97,12 @@ function main() {
97
97
  }
98
98
  }
99
99
 
100
+ // If no arguments provided, default to 'start'
101
+ const finalArgs = args.length === 0 ? ['start'] : args;
102
+
100
103
  // Run the actual command
101
104
  log('🚀 Starting server...', colors.cyan);
102
- runCommand(args);
105
+ runCommand(finalArgs);
103
106
  }
104
107
 
105
108
  // Handle Ctrl+C gracefully
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-annotations-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for Vibe Annotations - AI-powered localhost development feedback",
5
5
  "main": "index.js",
6
6
  "bin": {