vibe-collab 0.4.0 → 0.6.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
 
@@ -151,6 +151,15 @@ export async function authCommand(action) {
151
151
  const data = readAuthData();
152
152
  deleteAuthData();
153
153
  if (data) {
154
+ try {
155
+ await fetch(`${PROXY_URL}/api/cli-token`, {
156
+ method: 'DELETE',
157
+ headers: { 'Authorization': `Bearer ${data.token}` },
158
+ });
159
+ }
160
+ catch {
161
+ // 서버 호출 실패해도 로컬 삭제는 완료
162
+ }
154
163
  console.log(chalk.green(`👋 @${data.user.login} 로그아웃 완료.`));
155
164
  }
156
165
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-collab",
3
- "version": "0.4.0",
3
+ "version": "0.6.0",
4
4
  "description": "누가 어떤 AI를 써도, 항상 한 팀처럼 작동하는 바이브 코딩 협업 도구",
5
5
  "type": "module",
6
6
  "bin": {