osai-agent 4.2.34 → 4.2.36

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osai-agent",
3
- "version": "4.2.34",
3
+ "version": "4.2.36",
4
4
  "type": "module",
5
5
  "description": "OS AI Agent - YOUR AI AGENT",
6
6
  "main": "src/index.js",
@@ -38,7 +38,7 @@ export const login = async ({ server: serverOverride } = {}) => {
38
38
  const platform = process.platform;
39
39
  let openCmd;
40
40
  if (platform === 'darwin') openCmd = 'open';
41
- else if (platform === 'win32') openCmd = 'start';
41
+ else if (platform === 'win32') openCmd = 'start ""';
42
42
  else openCmd = 'xdg-open';
43
43
 
44
44
  try {
@@ -38,7 +38,7 @@ export const register = async ({ server: serverOverride } = {}) => {
38
38
  const platform = process.platform;
39
39
  let openCmd;
40
40
  if (platform === 'darwin') openCmd = 'open';
41
- else if (platform === 'win32') openCmd = 'start';
41
+ else if (platform === 'win32') openCmd = 'start ""';
42
42
  else openCmd = 'xdg-open';
43
43
 
44
44
  try {
package/src/index.js CHANGED
@@ -203,9 +203,8 @@ switch (cmd) {
203
203
  console.log(' skills Manage skills');
204
204
  console.log(' mcp Manage MCP servers');
205
205
  console.log(' stop-subagent Stop a running subagent');
206
- console.log(' pro Activate a pro access code');
207
- console.log(' usage stats Show admin usage statistics (--days 7, --json)');
208
- console.log(' account delete Permanently delete your account and all data');
206
+ console.log(' pro Activate a pro access code');
207
+ console.log(' account delete Permanently delete your account and all data');
209
208
  console.log();
210
209
  process.exit(cmd ? 1 : 0);
211
210
  }