reygent-code 1.0.1 → 1.1.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 +16 -5
- package/dist/cli.js +685 -584
- package/dist/cli.js.map +1 -1
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Reygent
|
|
2
2
|
|
|
3
|
-

|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
@@ -11,10 +11,18 @@ Reygent reads a spec (markdown file, Jira issue, or Linear issue), then runs the
|
|
|
11
11
|
## Prerequisites
|
|
12
12
|
|
|
13
13
|
- **Node.js** 22+
|
|
14
|
-
- **
|
|
14
|
+
- **AI Provider** — one of:
|
|
15
|
+
- **Claude CLI** (`claude`) installed and authenticated (default, recommended)
|
|
16
|
+
- Direct via Anthropic API, or via Google Vertex AI Model Garden
|
|
17
|
+
- **Gemini CLI** (`gemini`) for Google Gemini models
|
|
18
|
+
- Direct via Google AI API, or via Google Vertex AI
|
|
19
|
+
- **Codex CLI** (`codex`) for GPT models
|
|
20
|
+
- **OpenRouter API key** for 200+ model access (API-only, limited tool support)
|
|
15
21
|
- **GitHub CLI** (`gh`) installed and authenticated (for PR operations)
|
|
16
22
|
- **Git** configured in your project
|
|
17
23
|
|
|
24
|
+
See the **[Providers Guide](./docs/providers.md)** for provider setup details, including **Google Vertex AI** configuration for Claude and Gemini.
|
|
25
|
+
|
|
18
26
|
## Install
|
|
19
27
|
|
|
20
28
|
```bash
|
|
@@ -246,9 +254,12 @@ See [Telemetry Guide](./docs/telemetry.md), [Chesstrace Internals](./docs/chesst
|
|
|
246
254
|
git clone https://github.com/your-org/reygent.git
|
|
247
255
|
cd reygent
|
|
248
256
|
npm install
|
|
249
|
-
npm run build
|
|
250
|
-
npm run dev
|
|
251
|
-
npm test
|
|
257
|
+
npm run build # Compile to dist/
|
|
258
|
+
npm run dev # Watch mode
|
|
259
|
+
npm test # Run tests
|
|
260
|
+
npm run docs:dev # Start VitePress dev server
|
|
261
|
+
npm run docs:build # Build documentation site
|
|
262
|
+
npm run docs:preview # Preview built docs locally
|
|
252
263
|
```
|
|
253
264
|
|
|
254
265
|
## License
|