@kurrent/kcap 0.6.15 → 0.6.17
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/bin/postinstall.js
CHANGED
|
@@ -33,10 +33,11 @@ const launcher = path.join(__dirname, "kcap.js");
|
|
|
33
33
|
// One entry per agent. Order is independent — each refresh is gated by
|
|
34
34
|
// its own marker.
|
|
35
35
|
const refreshes = [
|
|
36
|
-
["plugin", "install", "--skills",
|
|
37
|
-
["plugin", "install", "--codex",
|
|
38
|
-
["plugin", "install", "--cursor",
|
|
39
|
-
["plugin", "install",
|
|
36
|
+
["plugin", "install", "--skills", "--if-installed"],
|
|
37
|
+
["plugin", "install", "--codex", "--if-installed"],
|
|
38
|
+
["plugin", "install", "--cursor", "--if-installed"],
|
|
39
|
+
["plugin", "install", "--copilot", "--if-installed"],
|
|
40
|
+
["plugin", "install", "--if-installed"], // Claude
|
|
40
41
|
];
|
|
41
42
|
|
|
42
43
|
for (const argv of refreshes) {
|
package/kcap/hooks/hooks.json
CHANGED
|
@@ -39,7 +39,8 @@
|
|
|
39
39
|
{
|
|
40
40
|
"type": "command",
|
|
41
41
|
"command": "kcap hook --claude",
|
|
42
|
-
"timeout": 5
|
|
42
|
+
"timeout": 5,
|
|
43
|
+
"async": true
|
|
43
44
|
}
|
|
44
45
|
]
|
|
45
46
|
}
|
|
@@ -50,7 +51,8 @@
|
|
|
50
51
|
{
|
|
51
52
|
"type": "command",
|
|
52
53
|
"command": "kcap hook --claude",
|
|
53
|
-
"timeout": 5
|
|
54
|
+
"timeout": 5,
|
|
55
|
+
"async": true
|
|
54
56
|
}
|
|
55
57
|
]
|
|
56
58
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kurrent/kcap",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.17",
|
|
4
4
|
"description": "CLI companion for Kurrent Capacitor — records and visualizes Claude Code sessions",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"repository": {
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"postinstall": "node bin/postinstall.js"
|
|
15
15
|
},
|
|
16
16
|
"optionalDependencies": {
|
|
17
|
-
"@kurrent/kcap-darwin-arm64": "0.6.
|
|
18
|
-
"@kurrent/kcap-linux-x64": "0.6.
|
|
19
|
-
"@kurrent/kcap-linux-arm64": "0.6.
|
|
20
|
-
"@kurrent/kcap-linux-musl-x64": "0.6.
|
|
21
|
-
"@kurrent/kcap-linux-musl-arm64": "0.6.
|
|
22
|
-
"@kurrent/kcap-win-x64": "0.6.
|
|
17
|
+
"@kurrent/kcap-darwin-arm64": "0.6.17",
|
|
18
|
+
"@kurrent/kcap-linux-x64": "0.6.17",
|
|
19
|
+
"@kurrent/kcap-linux-arm64": "0.6.17",
|
|
20
|
+
"@kurrent/kcap-linux-musl-x64": "0.6.17",
|
|
21
|
+
"@kurrent/kcap-linux-musl-arm64": "0.6.17",
|
|
22
|
+
"@kurrent/kcap-win-x64": "0.6.17"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"bin/",
|