monoai 0.4.0 → 0.4.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.
@@ -7,8 +7,7 @@ import ora from 'ora';
7
7
  const config = new Conf({ projectName: 'monoai' });
8
8
  // Production URLs (single source of truth)
9
9
  const BACKEND_URL = process.env.MONOAI_API_URL ||
10
- process.env.MONOAI_CONVEX_SITE_URL ||
11
- 'https://monoai-backend-653798811703.us-central1.run.app';
10
+ 'https://monoai-backend-production.up.railway.app';
12
11
  const WEB_URL = 'https://monoai.space';
13
12
  export const loginCommand = new Command('login')
14
13
  .description('Sign in to MonoAI')
@@ -358,8 +358,7 @@ export const pushCommand = new Command('push')
358
358
  const BACKEND_URL = process.env.MONOAI_API_URL ||
359
359
  process.env.MONOAI_BACKEND_URL ||
360
360
  config.get('api_url') ||
361
- config.get('convex_url') ||
362
- 'https://monoai-backend-653798811703.us-central1.run.app';
361
+ 'https://monoai-backend-production.up.railway.app';
363
362
  // 1. Git Metadata (Zero-HITL Intent)
364
363
  const { lastCommit, branch, changedScopes, changedFiles, commitMessages, deletedFiles } = await track('git metadata', async () => {
365
364
  const log = await git.log({ maxCount: 1 });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "monoai",
3
3
  "type": "module",
4
- "version": "0.4.0",
4
+ "version": "0.4.1",
5
5
  "description": "MonoAI CLI for syncing codebase history",
6
6
  "main": "dist/index.js",
7
7
  "bin": {