@oomol-lab/oo-cli-linux-x64-gnu 0.0.0-development

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.
Files changed (3) hide show
  1. package/README.md +32 -0
  2. package/bin/oo +0 -0
  3. package/package.json +35 -0
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # oo
2
+
3
+ [English](./README.md) | [简体中文](./README-ZH_CN.md)
4
+
5
+ `oo` is OOMOL's command-line interface for working with OOMOL accounts,
6
+ packages, and cloud tasks from the terminal.
7
+
8
+ ## Overview
9
+
10
+ `oo` provides a terminal interface for common OOMOL workflows. It covers
11
+ account authentication, persisted CLI configuration, package discovery, package
12
+ inspection, cloud task execution, and shell completion generation.
13
+
14
+ ## Installation
15
+
16
+ ```bash
17
+ npm install -g @oomol-lab/oo-cli
18
+ # or
19
+ pnpm add -g @oomol-lab/oo-cli
20
+ # or
21
+ bun install -g @oomol-lab/oo-cli
22
+ oo --help
23
+ ```
24
+
25
+ ## Documentation
26
+
27
+ - [Command reference](./docs/commands.md)
28
+
29
+ ## Contributing
30
+
31
+ For contribution workflow and repository conventions, see
32
+ [CONTRIBUTING.md](./CONTRIBUTING.md).
package/bin/oo ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@oomol-lab/oo-cli-linux-x64-gnu",
3
+ "version": "0.0.0-development",
4
+ "private": false,
5
+ "description": "OOMOL's command-line interface for accounts, packages, and cloud tasks. (linux x64 glibc binary)",
6
+ "author": "BlackHole1 <bh@bugs.cc>",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/oomol-lab/oo-cli.git"
11
+ },
12
+ "keywords": [
13
+ "oomol",
14
+ "cli",
15
+ "cloud-task",
16
+ "package",
17
+ "terminal",
18
+ "bun"
19
+ ],
20
+ "files": [
21
+ "bin/oo"
22
+ ],
23
+ "os": [
24
+ "linux"
25
+ ],
26
+ "cpu": [
27
+ "x64"
28
+ ],
29
+ "libc": [
30
+ "glibc"
31
+ ],
32
+ "publishConfig": {
33
+ "access": "public"
34
+ }
35
+ }