@orbit-tools/cli 0.9.2 → 0.11.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 +12 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# @orbit-tools/cli
|
|
2
2
|
|
|
3
|
-
npm proxy for the [Orbit](https://github.com/danieljhkim/orbit) CLI
|
|
3
|
+
npm binary proxy for the [Orbit](https://github.com/danieljhkim/orbit) CLI and
|
|
4
|
+
the supported Orbit plugins for Claude Code and Codex.
|
|
4
5
|
|
|
5
6
|
On install, downloads the matching prebuilt `orbit` binary from
|
|
6
7
|
[GitHub Releases](https://github.com/danieljhkim/orbit/releases), authenticates
|
|
7
8
|
the signed `orbit-checksums.txt` with the package-pinned release trust set,
|
|
8
9
|
verifies the archive SHA-256, and exposes it as the `orbit` command.
|
|
9
10
|
|
|
11
|
+
The Claude Code and Codex plugin manifests both launch this package as
|
|
12
|
+
`npx -y @orbit-tools/cli@latest mcp serve`. Their plugin managers install the
|
|
13
|
+
appropriate manifests, shared skills, and client-specific integration assets;
|
|
14
|
+
users do not need to copy files from this package or the Orbit repository.
|
|
15
|
+
Installing `@orbit-tools/cli` by itself provides the native CLI proxy, not the
|
|
16
|
+
agent plugin assets.
|
|
17
|
+
|
|
10
18
|
## Usage
|
|
11
19
|
|
|
12
20
|
```bash
|
|
@@ -14,7 +22,7 @@ verifies the archive SHA-256, and exposes it as the `orbit` command.
|
|
|
14
22
|
npm install -g @orbit-tools/cli
|
|
15
23
|
orbit --version
|
|
16
24
|
|
|
17
|
-
# One-shot via npx (used by the
|
|
25
|
+
# One-shot via npx (used by the Orbit Claude Code and Codex plugins)
|
|
18
26
|
npx -y @orbit-tools/cli mcp serve
|
|
19
27
|
```
|
|
20
28
|
|
|
@@ -41,3 +49,5 @@ Windows is not currently published. Use WSL or build from source.
|
|
|
41
49
|
## License
|
|
42
50
|
|
|
43
51
|
MIT.
|
|
52
|
+
|
|
53
|
+
<!-- ORB-10117 -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orbit-tools/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "npm proxy for the Orbit CLI. Downloads the matching native binary from GitHub Releases on install and forwards all invocations.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"orbit": "bin/orbit.js"
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"keywords": [
|
|
39
39
|
"orbit",
|
|
40
40
|
"mcp",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
41
|
+
"task-management",
|
|
42
|
+
"agent-workflows"
|
|
43
43
|
],
|
|
44
44
|
"config": {
|
|
45
45
|
"orbit": {
|