arqzero 2.1.0-beta.2 → 2.1.0-beta.3
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 +9 -5
- package/dist/arqzero.mjs +102 -100
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
<p>
|
|
10
10
|
<a href="https://www.npmjs.com/package/arqzero"><img src="https://img.shields.io/npm/v/arqzero?style=flat-square&color=00D4AA&label=npm" alt="npm" /></a>
|
|
11
|
-
<a href="https://github.com/LuciferDono/ArqZero/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-
|
|
11
|
+
<a href="https://github.com/LuciferDono/ArqZero/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-Proprietary%20EULA-blue?style=flat-square" alt="license" /></a>
|
|
12
12
|
<a href="https://nodejs.org"><img src="https://img.shields.io/badge/node-%3E%3D18.19-green?style=flat-square" alt="node" /></a>
|
|
13
13
|
<a href="https://github.com/LuciferDono/ArqZero/stargazers"><img src="https://img.shields.io/github/stars/LuciferDono/ArqZero?style=flat-square&color=FFD700" alt="stars" /></a>
|
|
14
14
|
<a href="https://github.com/LuciferDono/ArqZero/issues"><img src="https://img.shields.io/github/issues/LuciferDono/ArqZero?style=flat-square" alt="issues" /></a>
|
|
@@ -25,15 +25,17 @@
|
|
|
25
25
|
## Install
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
npm i -g arqzero
|
|
28
|
+
npm i -g arqzero@beta
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
+
ArqZero is in public beta. The `@beta` tag tracks the current pre-release; once stable, `npm i -g arqzero` will pull the same version.
|
|
32
|
+
|
|
31
33
|
<details>
|
|
32
34
|
<summary><strong>Other methods</strong></summary>
|
|
33
35
|
|
|
34
36
|
```bash
|
|
35
37
|
# npx (no install)
|
|
36
|
-
npx arqzero
|
|
38
|
+
npx arqzero@beta
|
|
37
39
|
|
|
38
40
|
# From source
|
|
39
41
|
git clone https://github.com/LuciferDono/ArqZero.git
|
|
@@ -43,10 +45,12 @@ cd ArqZero && npm install && npm run dev
|
|
|
43
45
|
</details>
|
|
44
46
|
|
|
45
47
|
```bash
|
|
46
|
-
arqzero
|
|
47
|
-
arqzero # Start
|
|
48
|
+
arqzero login # Sign in (browser flow, no API key needed)
|
|
49
|
+
arqzero # Start a session
|
|
48
50
|
```
|
|
49
51
|
|
|
52
|
+
Prefer your own LLM key? Run `arqzero configure` after install and pick OpenAI, Anthropic, OpenRouter, Fireworks (BYOK), or any OpenAI-compatible endpoint.
|
|
53
|
+
|
|
50
54
|
---
|
|
51
55
|
|
|
52
56
|
## Features
|