@oriro/orirocli 0.1.0 → 0.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 +18 -0
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -19,8 +19,26 @@ Your language, your machine, no paid keys required.
|
|
|
19
19
|
- **Channels** — drive ORIRO from Telegram/Discord/WhatsApp with your own bot.
|
|
20
20
|
|
|
21
21
|
## Install
|
|
22
|
+
|
|
23
|
+
Run it instantly — no install, works on any OS with Node ≥ 20:
|
|
24
|
+
```bash
|
|
25
|
+
npx @oriro/orirocli
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or install the `oriro` command globally:
|
|
22
29
|
```bash
|
|
23
30
|
npm i -g @oriro/orirocli # then: oriro
|
|
24
31
|
```
|
|
25
32
|
|
|
33
|
+
Both paths reach the same first-run setup. `npx` and `npm i -g` are the supported install channels — they work on every OS with Node ≥ 20, no build step.
|
|
34
|
+
|
|
35
|
+
<details>
|
|
36
|
+
<summary>From source (contributors)</summary>
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
git clone https://github.com/oriro-ai/cli && cd cli
|
|
40
|
+
npm install && npm run build # then: node dist/cli.js
|
|
41
|
+
```
|
|
42
|
+
</details>
|
|
43
|
+
|
|
26
44
|
> Built on [Pi](https://github.com/earendil-works/pi) (MIT). See `ATTRIBUTION.md` for full provenance.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oriro/orirocli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "ORIRO — a free, on-device-friendly terminal AI agent. Built on the Pi agent harness (used as a library).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
"dev": "tsx src/cli.ts",
|
|
23
23
|
"build": "tsup",
|
|
24
24
|
"typecheck": "tsc --noEmit",
|
|
25
|
-
"prepare": "npm run build",
|
|
26
25
|
"smoke": "npm run build && node scripts/smoke.mjs",
|
|
27
26
|
"prepublishOnly": "npm run build && node scripts/smoke.mjs && node scripts/prepublish-check.mjs",
|
|
28
27
|
"start": "node dist/cli.js"
|