@kurrent/kcap 0.7.6 → 0.7.8
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/README.md +2 -2
- package/bin/refresh.js +3 -1
- package/kcap/.claude-plugin/plugin.json +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @kurrent/kcap
|
|
2
2
|
|
|
3
|
-
CLI companion for [Kurrent Capacitor](https://github.com/kurrent-io/kcap-cli) — records and visualizes Claude Code
|
|
3
|
+
CLI companion for [Kurrent Capacitor](https://github.com/kurrent-io/kcap-cli) — records and visualizes coding-agent sessions across Claude Code, Codex CLI, Cursor, GitHub Copilot CLI, and Pi.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -14,7 +14,7 @@ npm install -g @kurrent/kcap
|
|
|
14
14
|
kcap setup
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
This walks you through: server URL, authentication, Claude Code
|
|
17
|
+
This walks you through: server URL, authentication, coding-agent integration (the Claude Code / Codex / Cursor / Copilot hooks and the Pi live-ingest extension, for whichever it detects), and verification.
|
|
18
18
|
|
|
19
19
|
## Commands
|
|
20
20
|
|
package/bin/refresh.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// Refreshes user-scope kcap agent installations so users pick up new or updated
|
|
2
|
-
// skills, Codex/Cursor/Copilot hook commands,
|
|
2
|
+
// skills, Codex/Cursor/Copilot hook commands, the Pi live-ingest extension, and
|
|
3
|
+
// Claude plugin registration.
|
|
3
4
|
//
|
|
4
5
|
// Shared by:
|
|
5
6
|
// - postinstall.js — runs after `npm install -g @kurrent/kcap` (incl. upgrades),
|
|
@@ -17,6 +18,7 @@ const REFRESHES = [
|
|
|
17
18
|
["plugin", "install", "--codex", "--if-installed"],
|
|
18
19
|
["plugin", "install", "--cursor", "--if-installed"],
|
|
19
20
|
["plugin", "install", "--copilot", "--if-installed"],
|
|
21
|
+
["plugin", "install", "--pi", "--if-installed"], // Pi extension (~/.pi/agent/extensions/kcap.ts)
|
|
20
22
|
["plugin", "install", "--if-installed"], // Claude
|
|
21
23
|
];
|
|
22
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kurrent/kcap",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.8",
|
|
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.7.
|
|
18
|
-
"@kurrent/kcap-linux-x64": "0.7.
|
|
19
|
-
"@kurrent/kcap-linux-arm64": "0.7.
|
|
20
|
-
"@kurrent/kcap-linux-musl-x64": "0.7.
|
|
21
|
-
"@kurrent/kcap-linux-musl-arm64": "0.7.
|
|
22
|
-
"@kurrent/kcap-win-x64": "0.7.
|
|
17
|
+
"@kurrent/kcap-darwin-arm64": "0.7.8",
|
|
18
|
+
"@kurrent/kcap-linux-x64": "0.7.8",
|
|
19
|
+
"@kurrent/kcap-linux-arm64": "0.7.8",
|
|
20
|
+
"@kurrent/kcap-linux-musl-x64": "0.7.8",
|
|
21
|
+
"@kurrent/kcap-linux-musl-arm64": "0.7.8",
|
|
22
|
+
"@kurrent/kcap-win-x64": "0.7.8"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"bin/",
|