@hummer98/cmux-team 3.0.0 → 3.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cmux-team",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Multi-agent development orchestration with Claude Code + cmux. Spawn, monitor, and integrate parallel sub-agents visually in terminal panes.",
5
5
  "author": {
6
6
  "name": "hummer98",
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.0.1] - 2026-03-29
4
+
5
+ ### Fixed
6
+ - postinstall で Claude Code plugin を自動インストール(手動実行の案内を廃止)
7
+ - `npm pkg fix` による bin パスと repository URL の正規化
8
+
3
9
  ## [3.0.0] - 2026-03-29
4
10
 
5
11
  ### Added
@@ -21,6 +21,14 @@ try {
21
21
  console.warn(` cd ${managerDir} && bun install`);
22
22
  }
23
23
 
24
- // インストール完了メッセージ
24
+ // Claude Code plugin をインストール
25
+ try {
26
+ execFileSync("which", ["claude"], { stdio: "ignore" });
27
+ console.log("cmux-team: Claude Code plugin をインストール中...");
28
+ execFileSync("claude", ["plugin", "add", "hummer98/cmux-team"], { stdio: "inherit" });
29
+ } catch {
30
+ console.warn("cmux-team: claude が見つかりません。手動で実行してください:");
31
+ console.warn(" claude plugin add hummer98/cmux-team");
32
+ }
33
+
25
34
  console.log("cmux-team: インストール完了");
26
- console.log(" Plugin としても使う場合: claude plugin add hummer98/cmux-team");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hummer98/cmux-team",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Multi-agent development orchestration with Claude Code + cmux. Spawn, monitor, and integrate parallel sub-agents visually in terminal panes.",
5
5
  "type": "module",
6
6
  "bin": {