rauta-ai 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.
- package/README.md +2 -2
- package/bin/rauta-ai.js +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ provision GPUs, and track AI spend. Same gateway as the Rauta MCP tools.
|
|
|
16
16
|
This package is a thin launcher: it downloads the static Go binary for your
|
|
17
17
|
platform (darwin/linux, arm64/amd64) once per version. It prefers
|
|
18
18
|
`rauta-<os>-<arch>` on [rauta.ai/cli](https://rauta.ai/cli/install.sh), then
|
|
19
|
-
falls back to `infra-arena-*` and/or
|
|
19
|
+
falls back to `infra-arena-*` and/or rauta.ai, caches it, and passes
|
|
20
20
|
through.
|
|
21
21
|
|
|
22
22
|
```
|
|
@@ -25,4 +25,4 @@ curl -fsSL https://rauta.ai/cli/install.sh | sh
|
|
|
25
25
|
|
|
26
26
|
Docs: <https://rauta.ai/docs> · Rauta Labs, Inc.
|
|
27
27
|
|
|
28
|
-
Legacy: `npx
|
|
28
|
+
Legacy: `npx rauta-ai` still works and prints a rename notice.
|
package/bin/rauta-ai.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
//
|
|
4
4
|
// Package name is `rauta-ai` until npm clears unscoped `rauta` (similarity
|
|
5
5
|
// filter vs ramda/auto/oauth). Prefer CDN artifacts named rauta-*; fall back
|
|
6
|
-
// to infra-arena-* on both rauta.ai and
|
|
6
|
+
// to infra-arena-* on both rauta.ai and rauta.ai during the interim
|
|
7
7
|
// rename window. This shim downloads once, caches it, and execs with stdio
|
|
8
8
|
// passed through.
|
|
9
9
|
'use strict';
|
|
@@ -16,7 +16,7 @@ const path = require('node:path');
|
|
|
16
16
|
|
|
17
17
|
const pkg = require('../package.json');
|
|
18
18
|
const PRIMARY_BASE = process.env.RAUTA_CLI_BASE || process.env.INFRA_ARENA_CLI_BASE || 'https://rauta.ai/cli';
|
|
19
|
-
const FALLBACK_BASE = 'https://
|
|
19
|
+
const FALLBACK_BASE = 'https://rauta.ai/cli';
|
|
20
20
|
|
|
21
21
|
function fail(msg) {
|
|
22
22
|
process.stderr.write(`rauta-ai: ${msg}\n`);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rauta-ai",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "CLI for Rauta (rauta.ai) — GPU infrastructure, compared in public. Interim package name while unscoped `rauta` awaits npm similarity clearance. Sign up, connect provider keys (BYOK), buy prepaid credits, provision GPUs, and track AI spend from your terminal.",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "CLI for Rauta (rauta.ai) — GPU infrastructure, compared in public. Canonical install: `npx rauta-ai`. Interim package name while unscoped `rauta` awaits npm similarity clearance. Sign up, connect provider keys (BYOK), buy prepaid credits, provision GPUs, and track AI spend from your terminal.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"rauta-ai": "bin/rauta-ai.js",
|
|
7
7
|
"rauta": "bin/rauta-ai.js"
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"homepage": "https://rauta.ai/docs",
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
|
-
"url": "
|
|
20
|
+
"url": "https://github.com/rauta-labs/rauta.git",
|
|
21
21
|
"directory": "cli"
|
|
22
22
|
},
|
|
23
23
|
"bugs": {
|