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 +1 -1
- package/src/commands/login.js +1 -1
- package/src/commands/register.js +1 -1
- package/src/index.js +2 -3
package/package.json
CHANGED
package/src/commands/login.js
CHANGED
|
@@ -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 {
|
package/src/commands/register.js
CHANGED
|
@@ -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
|
-
|
|
207
|
-
|
|
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
|
}
|