@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.
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +6 -0
- package/bin/postinstall.js +10 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/bin/postinstall.js
CHANGED
|
@@ -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.
|
|
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": {
|