@dotobokuri/fleet-cli 1.0.0 → 1.0.1

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 (2) hide show
  1. package/README.md +23 -1
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  This package is part of the [**fleet-harness**](https://github.com/sbluemin/fleet-harness) monorepo.
4
4
 
5
- See the main repository for documentation, usage, and contribution guidelines:
5
+ ## Installation
6
+
7
+ `fleet-cli` ships the `fleet` executable and must be installed **globally**:
8
+
9
+ ```bash
10
+ npm install -g @dotobokuri/fleet-cli
11
+ ```
12
+
13
+ Or with your preferred package manager:
14
+
15
+ ```bash
16
+ pnpm add -g @dotobokuri/fleet-cli
17
+ # or
18
+ yarn global add @dotobokuri/fleet-cli
19
+ ```
20
+
21
+ After installation, run `fleet` from any directory.
22
+
23
+ > Do not install this package as a local project dependency — it is a CLI tool intended for global use only.
24
+
25
+ ## Documentation
26
+
27
+ See the main repository for full documentation, usage, and contribution guidelines:
6
28
 
7
29
  **https://github.com/sbluemin/fleet-harness**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotobokuri/fleet-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Fleet CLI — a multi-LLM orchestration kit that operates Claude Code and Codex CLI through a single unified interface.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,6 +12,7 @@
12
12
  "url": "https://github.com/sbluemin/fleet-harness/issues"
13
13
  },
14
14
  "type": "module",
15
+ "preferGlobal": true,
15
16
  "bin": {
16
17
  "fleet": "./bin/fleet"
17
18
  },
@@ -26,7 +27,8 @@
26
27
  },
27
28
  "dependencies": {
28
29
  "@clack/prompts": "1.4.0",
29
- "@dotobokuri/fleet-wiki-ui": "1.0.0",
30
+ "@dotobokuri/fleet-wiki-ui": "1.0.1",
31
+ "@xterm/headless": "^5.5.0",
30
32
  "node-pty": "^1.0.0"
31
33
  },
32
34
  "devDependencies": {