reygent-code 1.0.1 → 1.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 CHANGED
@@ -1,8 +1,11 @@
1
1
  # Reygent
2
2
 
3
- ![Reygent Logo](https://raw.githubusercontent.com/andrewevans0102/reygent/master/README_IMAGES/ReygentLogo.png)
3
+ ![Reygent Logo](./README_IMAGES/ReygentLogo.png)
4
4
 
5
- ![CI](https://github.com/andrewevans0102/reygent/actions/workflows/main.yml/badge.svg?branch=master)
5
+ [![Build](https://github.com/andrewevans0102/reygent/actions/workflows/main.yml/badge.svg?branch=develop)](https://github.com/andrewevans0102/reygent/actions/workflows/main.yml)
6
+ [![npm](https://img.shields.io/npm/v/reygent-code)](https://www.npmjs.com/package/reygent-code)
7
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
8
+ [![Docs](https://github.com/andrewevans0102/reygent/actions/workflows/deploy-docs.yml/badge.svg)](https://github.com/andrewevans0102/reygent/actions/workflows/deploy-docs.yml)
6
9
 
7
10
  An AI-powered CLI that orchestrates multiple Claude agents to automate the software development lifecycle — from spec to shipped PR.
8
11
 
@@ -11,10 +14,18 @@ Reygent reads a spec (markdown file, Jira issue, or Linear issue), then runs the
11
14
  ## Prerequisites
12
15
 
13
16
  - **Node.js** 22+
14
- - **Claude CLI** (`claude`) installed and authenticated
17
+ - **AI Provider** one of:
18
+ - **Claude CLI** (`claude`) installed and authenticated (default, recommended)
19
+ - Direct via Anthropic API, or via Google Vertex AI Model Garden
20
+ - **Gemini CLI** (`gemini`) for Google Gemini models
21
+ - Direct via Google AI API, or via Google Vertex AI
22
+ - **Codex CLI** (`codex`) for GPT models
23
+ - **OpenRouter API key** for 200+ model access (API-only, limited tool support)
15
24
  - **GitHub CLI** (`gh`) installed and authenticated (for PR operations)
16
25
  - **Git** configured in your project
17
26
 
27
+ See the **[Providers Guide](./docs/providers.md)** for provider setup details, including **Google Vertex AI** configuration for Claude and Gemini.
28
+
18
29
  ## Install
19
30
 
20
31
  ```bash
@@ -246,9 +257,12 @@ See [Telemetry Guide](./docs/telemetry.md), [Chesstrace Internals](./docs/chesst
246
257
  git clone https://github.com/your-org/reygent.git
247
258
  cd reygent
248
259
  npm install
249
- npm run build # Compile to dist/
250
- npm run dev # Watch mode
251
- npm test # Run tests
260
+ npm run build # Compile to dist/
261
+ npm run dev # Watch mode
262
+ npm test # Run tests
263
+ npm run docs:dev # Start VitePress dev server
264
+ npm run docs:build # Build documentation site
265
+ npm run docs:preview # Preview built docs locally
252
266
  ```
253
267
 
254
268
  ## License