@askexenow/exe-os 0.8.30 → 0.8.31

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/dist/bin/cli.js CHANGED
@@ -5002,7 +5002,7 @@ async function runSetupWizard(opts = {}) {
5002
5002
  if (res.ok) {
5003
5003
  const data = await res.json();
5004
5004
  if (data.apiKey) {
5005
- cloudConfig = { apiKey: data.apiKey, endpoint: "https://sync.askexe.com" };
5005
+ cloudConfig = { apiKey: data.apiKey, endpoint: "https://askexe.com/cloud" };
5006
5006
  const { saveLicense: saveLicense3, mirrorLicenseKey: mirrorLicenseKey3 } = await Promise.resolve().then(() => (init_license(), license_exports));
5007
5007
  saveLicense3(data.apiKey);
5008
5008
  mirrorLicenseKey3(data.apiKey);
package/dist/bin/setup.js CHANGED
@@ -2474,7 +2474,7 @@ async function runSetupWizard(opts = {}) {
2474
2474
  if (res.ok) {
2475
2475
  const data = await res.json();
2476
2476
  if (data.apiKey) {
2477
- cloudConfig = { apiKey: data.apiKey, endpoint: "https://sync.askexe.com" };
2477
+ cloudConfig = { apiKey: data.apiKey, endpoint: "https://askexe.com/cloud" };
2478
2478
  const { saveLicense: saveLicense3, mirrorLicenseKey: mirrorLicenseKey3 } = await Promise.resolve().then(() => (init_license(), license_exports));
2479
2479
  saveLicense3(data.apiKey);
2480
2480
  mirrorLicenseKey3(data.apiKey);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askexenow/exe-os",
3
- "version": "0.8.30",
3
+ "version": "0.8.31",
4
4
  "description": "AI employee operating system — persistent memory, task management, and multi-agent coordination for Claude Code.",
5
5
  "license": "CC-BY-NC-4.0",
6
6
  "type": "module",
@@ -68,7 +68,7 @@ Use AskUserQuestion to ask for their Exe Cloud API key (exe_sk_...).
68
68
 
69
69
  Validate the key:
70
70
  ```bash
71
- curl -s "https://sync.askexe.com/auth/verify" \
71
+ curl -s "https://askexe.com/cloud/auth/verify" \
72
72
  -H "Authorization: Bearer USER_API_KEY" | cat
73
73
  ```
74
74