rauta-ai 0.5.148 → 0.5.154
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 +30 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,11 +9,36 @@ npx rauta-ai
|
|
|
9
9
|
|
|
10
10
|
The package installs both `rauta` and `rauta-ai`. Use `rauta` after installation.
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
Rauta opens its account and control panel without requiring a coding client.
|
|
13
|
+
Set up your account and choose the clients you want to connect:
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
npx rauta-ai init --clients pi,codex,grok
|
|
17
|
+
# Account only; install a coding client later:
|
|
18
|
+
npx rauta-ai init --clients none
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Claude Code, Codex, Grok Build and Pi keep independent configurations. Refresh
|
|
22
|
+
Pi's Rauta catalogue with `rauta-ai pi refresh`. Client status distinguishes
|
|
23
|
+
configuration from an installed, usable client.
|
|
24
|
+
|
|
25
|
+
For Claude Code, launch a scoped Rauta session:
|
|
26
|
+
|
|
27
|
+
```sh
|
|
28
|
+
npx rauta-ai claude
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
With a supported existing Anthropic Messages-compatible gateway, the native
|
|
32
|
+
model picker combines its models with Rauta's. Selecting a model routes that
|
|
33
|
+
request to its destination; credentials stay bound to that destination. Ordinary
|
|
34
|
+
Claude settings remain unchanged. Selecting Rauta sends the included conversation
|
|
35
|
+
history to Rauta. Native Bedrock/Vertex/Foundry modes and unverified managed,
|
|
36
|
+
credential-helper or custom-certificate setups require a separate integration.
|
|
37
|
+
|
|
38
|
+
Existing-gateway usage stays local unless you explicitly launch with
|
|
39
|
+
`rauta-ai claude --share-usage`. Reporting includes tokens, not prompts or private
|
|
40
|
+
model names. Unknown costs remain unknown. No failed model request silently
|
|
41
|
+
switches to another provider; choose another model explicitly.
|
|
17
42
|
|
|
18
43
|
This package is a thin launcher: it downloads the static Go binary for your
|
|
19
44
|
platform (darwin/linux, arm64/amd64) once per version. It prefers
|
|
@@ -26,5 +51,3 @@ curl -fsSL https://rauta.ai/cli/install.sh | sh
|
|
|
26
51
|
```
|
|
27
52
|
|
|
28
53
|
Docs: <https://rauta.ai/docs> · Rauta Labs, Inc.
|
|
29
|
-
|
|
30
|
-
Legacy: `npx rauta-ai` still works and prints a rename notice.
|
package/package.json
CHANGED