cosmios 0.2.1 → 0.2.2

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/dist/cli.js +1 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -5,7 +5,7 @@ import { createInterface } from 'node:readline';
5
5
  import { loadConfig, saveConfig, getConfigPath } from './config.js';
6
6
  import { connectRunner } from './api-client.js';
7
7
  import { CosmiosRunner } from './index.js';
8
- const DEFAULT_SERVER_URL = process.env.COSMIOS_SERVER_URL ?? 'https://app.cosmios.dev';
8
+ const DEFAULT_SERVER_URL = process.env.COSMIOS_SERVER_URL ?? 'https://www.cosmios.dev';
9
9
  // ANSI colors — degrade gracefully if TTY not supported
10
10
  const tty = process.stdout.isTTY;
11
11
  const c = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cosmios",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "COSMIOS Runner — agent CLI orchestration daemon",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",