fanout-cli 0.9.2 → 0.9.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fanout-cli",
3
- "version": "0.9.2",
3
+ "version": "0.9.4",
4
4
  "description": "Let Claude Code lead the other coding-agent CLIs you already pay for.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -22,8 +22,13 @@
22
22
  }
23
23
  },
24
24
  "files": [
25
+ ".claude-plugin",
26
+ ".mcp.json",
27
+ "bin",
28
+ "commands",
25
29
  "dist",
26
- "plugin",
30
+ "hooks",
31
+ "skills",
27
32
  "README.md",
28
33
  "LICENSE"
29
34
  ],
@@ -33,11 +38,6 @@
33
38
  "prepack": "node ../../scripts/bundle-cli.mjs",
34
39
  "prepublishOnly": "node ../../scripts/check-publish.mjs"
35
40
  },
36
- "dependencies": {
37
- "@modelcontextprotocol/sdk": "1.30.0",
38
- "ws": "8.21.3",
39
- "zod": "4.6.2"
40
- },
41
41
  "devDependencies": {
42
42
  "fanout-adapter-claude": "workspace:*",
43
43
  "fanout-adapter-codex": "workspace:*",
@@ -45,6 +45,9 @@
45
45
  "fanout-adapter-grok": "workspace:*",
46
46
  "fanout-core": "workspace:*",
47
47
  "fanout-daemon": "workspace:*",
48
- "fanout-mcp": "workspace:*"
48
+ "fanout-mcp": "workspace:*",
49
+ "@modelcontextprotocol/sdk": "1.30.0",
50
+ "ws": "8.21.3",
51
+ "zod": "4.6.2"
49
52
  }
50
53
  }
package/plugin/README.md DELETED
@@ -1,44 +0,0 @@
1
- # The Fanout plugin for Claude Code
2
-
3
- Claude Code becomes the lead: it plans a mission, fans it out to the other agent CLIs on your machine, watches them
4
- work in isolated git worktrees, and reviews every diff. Nothing merges without you.
5
-
6
- ## What you get
7
-
8
- | | |
9
- |---|---|
10
- | `/fanout <goal>` | Plan a mission, check it against the safety gate, launch it, and watch it |
11
- | `/fanout:crew` | Which CLIs are installed, signed in, and ready |
12
- | `/fanout:watch [mission]` | Subscribe to the live feed and review each run as it finishes |
13
- | The `fanout` skill | The lead's judgment: when to fan out, how to write a prompt an agent can follow, how to review what comes back |
14
- | Hooks | The crew at the start of a session; a warning if runs are still going when you stop |
15
- | Seven MCP tools | `seats`, `repo_overview`, `plan_check`, `launch`, `mission_status`, `run_diff`, `cancel_mission` |
16
-
17
- ## Installing
18
-
19
- The plugin runs `fanout mcp`, so the `fanout` command must be on your `PATH`.
20
-
21
- **From a clone**, while the package is not yet published:
22
-
23
- ```sh
24
- git clone https://github.com/elberacasa/fanout.git && cd fanout
25
- corepack enable && pnpm install
26
- pnpm --filter fanout-cli link --global # puts `fanout` on your PATH
27
- claude --plugin-dir "$PWD/plugin" # try it in one session
28
- ```
29
-
30
- Check it before you rely on it:
31
-
32
- ```sh
33
- fanout status # your crew
34
- claude plugin validate plugin
35
- ```
36
-
37
- ## What it will not do
38
-
39
- - **It will not merge.** It reads a run's diff from the workspace and hands you the decision. The merge gate, with
40
- review, your project's checks and proof that a fix fails on the old code, is the next milestone.
41
- - **It will not work around a usage limit.** A seat that is out of quota is out; the lead says so and uses another.
42
- - **It will not hand an agent your secrets.** Workspaces exclude ignored and deny-listed files, and a run gets an
43
- allowlisted environment only — never your shell's.
44
- - **It sends nothing anywhere.** The daemon listens on `127.0.0.1` with a token only you can read.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes