vibe-collab 0.3.0 → 0.5.0

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/README.md CHANGED
@@ -121,7 +121,6 @@ AI 요청은 **https://vibeorchestratorserver.vercel.app** 을 통해 처리됩
121
121
  - `/api/ai/complete` — JWT 인증 후 Anthropic API 호출
122
122
  - `/api/auth/cli-token` — GitHub OAuth 후 CLI 토큰 발급
123
123
 
124
- 직접 운영하고 싶다면 `VIBE_API_URL` 환경변수로 서버 주소를 교체할 수 있습니다.
125
124
 
126
125
  ---
127
126
 
package/dist/ai/client.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * 모두 없으면 AI 기능 비활성화 (graceful degradation)
5
5
  */
6
6
  import { readAuthData } from '../cli/commands/auth.js';
7
- const VIBE_PROXY_URL = process.env.VIBE_API_URL ?? 'https://vibeorchestratorserver.vercel.app';
7
+ const VIBE_PROXY_URL = 'https://vibeorchestratorserver.vercel.app';
8
8
  const MODELS = {
9
9
  anthropic: {
10
10
  smart: 'claude-sonnet-4-6',
@@ -5,7 +5,7 @@ import path from 'path';
5
5
  import { execSync } from 'child_process';
6
6
  import chalk from 'chalk';
7
7
  const AUTH_FILE = path.join(os.homedir(), '.vibe', 'auth.json');
8
- const PROXY_URL = process.env.VIBE_API_URL ?? 'https://vibeorchestratorserver.vercel.app';
8
+ const PROXY_URL = 'https://vibeorchestratorserver.vercel.app';
9
9
  const CALLBACK_PORT = 7777;
10
10
  /* ── token helpers ─────────────────────────────────────────────── */
11
11
  export function readAuthData() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-collab",
3
- "version": "0.3.0",
3
+ "version": "0.5.0",
4
4
  "description": "누가 어떤 AI를 써도, 항상 한 팀처럼 작동하는 바이브 코딩 협업 도구",
5
5
  "type": "module",
6
6
  "bin": {