@oomol-lab/oo-cli-linux-x64-musl 0.5.10 → 0.5.11
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 +70 -77
- package/bin/oo +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,25 +1,56 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="./docs/assets/logo.png" alt="oo" width="120" />
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
<h1 align="center">oo</h1>
|
|
4
6
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
+
<p align="center">
|
|
8
|
+
Plug AI agents into OOMOL's hosted capabilities and your connected accounts.
|
|
9
|
+
</p>
|
|
7
10
|
|
|
8
|
-
|
|
11
|
+
<p align="center">
|
|
12
|
+
<a href="https://github.com/oomol-lab/oo-cli/releases/latest"><img src="https://img.shields.io/github/v/release/oomol-lab/oo-cli?display_name=tag" alt="Release" /></a>
|
|
13
|
+
<a href="https://github.com/oomol-lab/oo-cli/actions/workflows/publish.yaml"><img src="https://img.shields.io/github/actions/workflow/status/oomol-lab/oo-cli/publish.yaml?branch=main&label=Publish" alt="Publish" /></a>
|
|
14
|
+
<a href="./LICENSE"><img src="https://img.shields.io/github/license/oomol-lab/oo-cli" alt="License" /></a>
|
|
15
|
+
<a href="https://console.oomol.com/connections"><img src="https://img.shields.io/badge/console-oomol.com-blue" alt="Console" /></a>
|
|
16
|
+
</p>
|
|
9
17
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
18
|
+
<p align="center">
|
|
19
|
+
<a href="./README.md">English</a> · <a href="./README-ZH_CN.md">简体中文</a>
|
|
20
|
+
</p>
|
|
13
21
|
|
|
14
|
-
|
|
22
|
+
---
|
|
15
23
|
|
|
16
|
-
|
|
24
|
+
## What is oo?
|
|
17
25
|
|
|
18
|
-
|
|
26
|
+
`oo` is the CLI that lets AI agents on your machine discover, inspect, and call
|
|
27
|
+
OOMOL's hosted capabilities and the third-party services you've already
|
|
28
|
+
connected.
|
|
19
29
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
30
|
+
Two kinds of capabilities are reachable through `oo`:
|
|
31
|
+
|
|
32
|
+
- **Connected accounts** — third-party services you authorize once in the
|
|
33
|
+
[OOMOL Console][connections] (Gmail, Google Calendar, Google Drive, Notion,
|
|
34
|
+
Slack, GitHub, and more). Once a service is connected, your AI agent can act
|
|
35
|
+
on it through `oo` without re-authenticating.
|
|
36
|
+
- **Hosted capabilities** — managed AI pipelines such as OCR, translation,
|
|
37
|
+
transcription, text-to-speech, text-to-image, subtitling, and long-document
|
|
38
|
+
understanding.
|
|
39
|
+
|
|
40
|
+
You don't memorize commands. The bundled skills teach supported AI agents
|
|
41
|
+
when and how to route out-of-workspace work through `oo`.
|
|
42
|
+
|
|
43
|
+
## How it works
|
|
44
|
+
|
|
45
|
+
1. **Install `oo`** on this machine.
|
|
46
|
+
2. **Run `oo login`** to link this machine to your OOMOL account.
|
|
47
|
+
3. **Connect services** at <https://console.oomol.com/connections>, then ask
|
|
48
|
+
your AI agent — the bundled `oo` skill tells it when and how to call the
|
|
49
|
+
right capability.
|
|
50
|
+
|
|
51
|
+
## Install
|
|
52
|
+
|
|
53
|
+
macOS / Linux:
|
|
23
54
|
|
|
24
55
|
```bash
|
|
25
56
|
curl -fsSL https://cli.oomol.com/install.sh | bash
|
|
@@ -31,84 +62,46 @@ Windows PowerShell:
|
|
|
31
62
|
irm https://cli.oomol.com/install.ps1 | iex
|
|
32
63
|
```
|
|
33
64
|
|
|
34
|
-
Windows CMD
|
|
35
|
-
|
|
36
|
-
```bat
|
|
37
|
-
curl -fsSL https://cli.oomol.com/install.cmd -o install.cmd && install.cmd && del install.cmd
|
|
38
|
-
```
|
|
65
|
+
Other install scripts (`wget`, Windows CMD, etc.) are listed at
|
|
66
|
+
<https://oomol.com/cli/>.
|
|
39
67
|
|
|
40
|
-
## Quick
|
|
41
|
-
|
|
42
|
-
1. Log in:
|
|
68
|
+
## Quick start
|
|
43
69
|
|
|
44
70
|
```bash
|
|
45
71
|
oo login
|
|
46
72
|
```
|
|
47
73
|
|
|
48
|
-
|
|
74
|
+
Then talk to your AI agent in natural language — describe intent, not commands:
|
|
49
75
|
|
|
50
|
-
|
|
51
|
-
$oo generate a QR code for the string OOMOL
|
|
52
|
-
```
|
|
76
|
+
> /oo summarize my latest 5 Gmail messages.
|
|
53
77
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
On the first `oo` launch, bundled skills are installed automatically into each
|
|
57
|
-
supported local host that already exists:
|
|
58
|
-
|
|
59
|
-
- Codex: `${CODEX_HOME:-~/.codex}/skills/oo` and
|
|
60
|
-
`${CODEX_HOME:-~/.codex}/skills/oo-find-skills`
|
|
61
|
-
- Claude Code: `~/.claude/skills/oo` and `~/.claude/skills/oo-find-skills`
|
|
62
|
-
- Hermes: `${HERMES_HOME:-~/.hermes}/skills/oo` and
|
|
63
|
-
`${HERMES_HOME:-~/.hermes}/skills/oo-find-skills`
|
|
64
|
-
- CodeBuddy: `~/.codebuddy/skills/oo` and
|
|
65
|
-
`~/.codebuddy/skills/oo-find-skills`
|
|
66
|
-
- WorkBuddy: `~/.workbuddy/skills/oo` and
|
|
67
|
-
`~/.workbuddy/skills/oo-find-skills`
|
|
68
|
-
- Trae: `~/.trae/skills/oo` and `~/.trae/skills/oo-find-skills`
|
|
69
|
-
- Trae CN: `~/.trae-cn/skills/oo` and
|
|
70
|
-
`~/.trae-cn/skills/oo-find-skills`
|
|
71
|
-
- OpenClaw: `${OPENCLAW_HOME:-~/.openclaw}/skills/oo` and
|
|
72
|
-
`${OPENCLAW_HOME:-~/.openclaw}/skills/oo-find-skills`
|
|
73
|
-
- QoderWork: `~/.qoderwork/skills/oo` and
|
|
74
|
-
`~/.qoderwork/skills/oo-find-skills`
|
|
75
|
-
|
|
76
|
-
Then you can use them in any supported host. For example, in Codex:
|
|
77
|
-
|
|
78
|
-
```text
|
|
79
|
-
$oo generate a QR code for the string OOMOL
|
|
80
|
-
```
|
|
78
|
+
> /oo generate a QR code for https://oomol.com.
|
|
81
79
|
|
|
82
|
-
|
|
80
|
+
`/oo` is the prompt convention picked up by the bundled skill; the agent will
|
|
81
|
+
route the request through `oo` for you.
|
|
83
82
|
|
|
84
|
-
|
|
85
|
-
oo skills install
|
|
86
|
-
```
|
|
83
|
+
## Supported AI agents
|
|
87
84
|
|
|
88
|
-
|
|
85
|
+
On first launch, `oo` installs bundled skills into any of the following AI
|
|
86
|
+
agent hosts that already exist on this machine: Codex, Claude Code, Hermes,
|
|
87
|
+
CodeBuddy, WorkBuddy, Trae, Trae CN, OpenClaw, QoderWork, and DeepSeek TUI.
|
|
89
88
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
89
|
+
Bundled skills are kept in sync with each `oo` release. See the
|
|
90
|
+
[command reference](./docs/commands.md) for the exact skill targets and how to
|
|
91
|
+
manage them manually.
|
|
93
92
|
|
|
94
|
-
##
|
|
93
|
+
## Privacy
|
|
95
94
|
|
|
96
|
-
`oo` records privacy-constrained
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
device-level aggregation.
|
|
95
|
+
`oo` records privacy-constrained telemetry by default. Events do not include
|
|
96
|
+
free-form input text, paths, usernames, hostnames, IP addresses, real OOMOL
|
|
97
|
+
account ids, or account names. Telemetry controls and the full boundary are
|
|
98
|
+
documented in [PRIVACY.md](./PRIVACY.md).
|
|
101
99
|
|
|
102
|
-
|
|
103
|
-
`DO_NOT_TRACK=1`. Use `oo telemetry status` to inspect the effective state and
|
|
104
|
-
pending local event count. See [PRIVACY.md](./PRIVACY.md) for the full
|
|
105
|
-
telemetry boundary.
|
|
106
|
-
|
|
107
|
-
## Documentation
|
|
100
|
+
## Links
|
|
108
101
|
|
|
102
|
+
- [OOMOL Console — Connections](https://console.oomol.com/connections)
|
|
109
103
|
- [Command reference](./docs/commands.md)
|
|
104
|
+
- [Contributing](./CONTRIBUTING.md)
|
|
105
|
+
- [Privacy](./PRIVACY.md)
|
|
110
106
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
For contribution workflow and repository conventions, see
|
|
114
|
-
[CONTRIBUTING.md](./CONTRIBUTING.md).
|
|
107
|
+
[connections]: https://console.oomol.com/connections
|
package/bin/oo
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oomol-lab/oo-cli-linux-x64-musl",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "OOMOL's command-line interface for accounts, packages, and cloud tasks. (linux x64 musl binary)",
|
|
6
6
|
"author": "BlackHole1 <bh@bugs.cc>",
|