fireqa-agent 0.1.1 → 0.1.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.
@@ -10,7 +10,10 @@ export async function loginWithOAuth(store) {
10
10
  body: JSON.stringify({ action: "create" }),
11
11
  });
12
12
  if (!createRes.ok) {
13
- console.error("인증 요청 생성에 실패했습니다.");
13
+ const body = await createRes.text().catch(() => "(응답 없음)");
14
+ console.error(`인증 요청 생성에 실패했습니다. (HTTP ${createRes.status})`);
15
+ console.error(`서버: ${config.server}`);
16
+ console.error(`응답: ${body}`);
14
17
  process.exit(1);
15
18
  }
16
19
  const { deviceCode } = (await createRes.json());
@@ -2,7 +2,7 @@ import fs from "fs";
2
2
  import path from "path";
3
3
  import os from "os";
4
4
  const DEFAULTS = {
5
- server: "https://fireqa.vercel.app",
5
+ server: "https://fire-qa.vercel.app",
6
6
  cliType: "claude",
7
7
  cli: "claude",
8
8
  pollingIntervalMs: 3000,
@@ -73,7 +73,6 @@ export async function startAgent(store) {
73
73
  console.log(`FireQA에 연결됨. 작업 대기 중... (${config.server})`);
74
74
  // 이전 실행에서 미전송된 출력 데이터 재전송 시도
75
75
  await api.flushPendingOutputs().catch(() => { });
76
- console.log("미전송 데이터 확인 완료");
77
76
  const cleanup = async () => {
78
77
  console.log("\n에이전트 종료 중...");
79
78
  await api.disconnect(connection.id).catch(() => { });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fireqa-agent",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "FireQA Agent CLI — connect your AI CLI (Claude Code, Codex, Gemini) to FireQA",
5
5
  "type": "module",
6
6
  "bin": {