exodus-cli 0.1.0
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 +57 -0
- package/dist/index.js +42163 -0
- package/package.json +41 -0
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# exodus-cli
|
|
2
|
+
|
|
3
|
+
A CLI for the exodus ecosystem: launch the Exodus desktop app, check for CLI
|
|
4
|
+
updates, and browse/install [Agent Skills](https://skills.sh) from the
|
|
5
|
+
terminal — either interactively or as scriptable JSON-emitting commands.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
**Requires [Bun](https://bun.sh) `>=1.3.0`** on `PATH` — this CLI is built on
|
|
10
|
+
Bun and its compiled bundle runs under the Bun runtime, not plain Node.js.
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm install -g exodus-cli
|
|
14
|
+
# or, without installing:
|
|
15
|
+
bunx exodus-cli --help
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Prefer not to install Bun? Download a standalone binary for your platform
|
|
19
|
+
from the [latest GitHub release](https://github.com/exodus-ai-org/exodus-cli/releases/latest)
|
|
20
|
+
instead — no Bun or Node required.
|
|
21
|
+
|
|
22
|
+
## Commands
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
exodus open # launch the Exodus desktop app
|
|
26
|
+
exodus update [--check] # check for a newer exodus-cli version
|
|
27
|
+
exodus skills # interactive TUI: browse, view audits, install/uninstall
|
|
28
|
+
exodus skills search <query> [--json]
|
|
29
|
+
exodus skills install <id> [--json] # e.g. vercel-labs/skills/find-skills
|
|
30
|
+
exodus skills list [--json]
|
|
31
|
+
exodus skills uninstall <slug> [--json]
|
|
32
|
+
exodus --help
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Skills install into `~/.exodus/skills/<slug>/`, the same directory
|
|
36
|
+
`universal-client` (the Exodus desktop app) reads — a skill installed via
|
|
37
|
+
this CLI is immediately usable there too.
|
|
38
|
+
|
|
39
|
+
## Development
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
bun install
|
|
43
|
+
bun run index.ts --help # run from source
|
|
44
|
+
bun test # run the test suite
|
|
45
|
+
bun run typecheck
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
See `docs/superpowers/specs/2026-09-18-exodus-cli-design.md` and
|
|
49
|
+
`docs/superpowers/plans/2026-09-18-exodus-cli-implementation.md` for the
|
|
50
|
+
full design and implementation history.
|
|
51
|
+
|
|
52
|
+
## Release
|
|
53
|
+
|
|
54
|
+
Pushing to `main` triggers `.github/workflows/release.yml`, which runs
|
|
55
|
+
`semantic-release`: it determines the next version from conventional
|
|
56
|
+
commits, publishes to npm, compiles cross-platform binaries (`bun build
|
|
57
|
+
--compile`), and attaches them to a GitHub Release.
|