@orbit-tools/cli 0.14.0 → 0.16.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.
Files changed (3) hide show
  1. package/LICENSE +23 -0
  2. package/README.md +2 -10
  3. package/package.json +3 -2
package/LICENSE ADDED
@@ -0,0 +1,23 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Orbit contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ Prii
package/README.md CHANGED
@@ -1,20 +1,12 @@
1
1
  # @orbit-tools/cli
2
2
 
3
- npm binary proxy for the [Orbit](https://github.com/danieljhkim/orbit) CLI and
4
- the supported Orbit plugins for Claude Code, Codex, and Cursor.
3
+ npm binary proxy for the [Orbit](https://github.com/danieljhkim/orbit) CLI.
5
4
 
6
5
  On install, downloads the matching prebuilt `orbit` binary from
7
6
  [GitHub Releases](https://github.com/danieljhkim/orbit/releases), authenticates
8
7
  the signed `orbit-checksums.txt` with the package-pinned release trust set,
9
8
  verifies the archive SHA-256, and exposes it as the `orbit` command.
10
9
 
11
- The Claude Code, Codex, and Cursor Agent Plugin manifests all launch this
12
- package as `npx -y @orbit-tools/cli@latest mcp serve`. Their plugin managers
13
- install the appropriate manifests, shared skills, and client-specific
14
- integration assets; users do not need to copy files from this package or the
15
- Orbit repository. Installing `@orbit-tools/cli` by itself provides the native
16
- CLI proxy, not the agent plugin assets.
17
-
18
10
  ## Usage
19
11
 
20
12
  ```bash
@@ -22,7 +14,7 @@ CLI proxy, not the agent plugin assets.
22
14
  npm install -g @orbit-tools/cli
23
15
  orbit --version
24
16
 
25
- # One-shot via npx (used by the Orbit Claude Code, Codex, and Cursor plugins)
17
+ # One-shot via npx
26
18
  npx -y @orbit-tools/cli mcp serve
27
19
  ```
28
20
 
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@orbit-tools/cli",
3
- "version": "0.14.0",
3
+ "version": "0.16.0",
4
+ "mcpName": "io.github.danieljhkim/orbit",
4
5
  "description": "npm proxy for the Orbit CLI. Downloads the matching native binary from GitHub Releases on install and forwards all invocations.",
5
6
  "bin": {
6
7
  "orbit": "bin/orbit.js"
@@ -30,7 +31,7 @@
30
31
  "repository": {
31
32
  "type": "git",
32
33
  "url": "git+https://github.com/danieljhkim/orbit.git",
33
- "directory": "plugin/npm"
34
+ "directory": "npm"
34
35
  },
35
36
  "homepage": "https://github.com/danieljhkim/orbit",
36
37
  "bugs": "https://github.com/danieljhkim/orbit/issues",