fireqa-agent 0.1.0 → 0.1.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.
- package/README.md +44 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# fireqa-agent
|
|
2
|
+
|
|
3
|
+
FireQA Agent CLI — connect your AI CLI (Claude Code, Codex, Gemini) to FireQA.
|
|
4
|
+
|
|
5
|
+
## Requirements
|
|
6
|
+
|
|
7
|
+
- Node.js 18+
|
|
8
|
+
- One of: [Claude Code](https://docs.anthropic.com/claude-code), [Codex CLI](https://github.com/openai/codex), or [Gemini CLI](https://github.com/google-gemini/gemini-cli)
|
|
9
|
+
|
|
10
|
+
## Quick Start
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
# 1. Install and log in to your AI CLI (no API key needed)
|
|
14
|
+
npm install -g @anthropic-ai/claude-code
|
|
15
|
+
claude auth login
|
|
16
|
+
|
|
17
|
+
# 2. Log in to FireQA
|
|
18
|
+
npx fireqa-agent login
|
|
19
|
+
|
|
20
|
+
# 3. Start the agent
|
|
21
|
+
npx fireqa-agent start
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Supported CLIs
|
|
25
|
+
|
|
26
|
+
| CLI | Install | Login | Start |
|
|
27
|
+
|-----|---------|-------|-------|
|
|
28
|
+
| Claude Code | `npm install -g @anthropic-ai/claude-code` | `claude auth login` | `npx fireqa-agent start` |
|
|
29
|
+
| Codex CLI | `npm install -g @openai/codex` | `codex login` | `npx fireqa-agent start --cli-type codex` |
|
|
30
|
+
| Gemini CLI | `npm install -g @google/gemini-cli` | `gemini auth` | `npx fireqa-agent start --cli-type gemini` |
|
|
31
|
+
|
|
32
|
+
## Commands
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
fireqa-agent login # Authenticate with FireQA (opens browser)
|
|
36
|
+
fireqa-agent start # Start agent (default: Claude Code)
|
|
37
|
+
fireqa-agent start --cli-type codex # Start with Codex CLI
|
|
38
|
+
fireqa-agent start --cli-type gemini # Start with Gemini CLI
|
|
39
|
+
fireqa-agent config # Show current configuration
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## How It Works
|
|
43
|
+
|
|
44
|
+
The agent polls FireQA for pending tasks, runs them locally using your AI CLI, and reports results back — no API key required. Your own CLI account is used.
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fireqa-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "FireQA Agent CLI — connect your AI CLI (Claude Code, Codex, Gemini) to FireQA",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"fireqa-agent": "
|
|
7
|
+
"fireqa-agent": "dist/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|