@kurrent/kcap 0.7.5 → 0.7.7

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 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 sessions.
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 plugin installation, and verification.
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, and Claude plugin registration.
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
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "kcap",
3
- "version": "0.7.5",
3
+ "version": "0.7.7",
4
4
  "description": "Records and visualizes Claude Code sessions via kcap CLI hooks"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kurrent/kcap",
3
- "version": "0.7.5",
3
+ "version": "0.7.7",
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.5",
18
- "@kurrent/kcap-linux-x64": "0.7.5",
19
- "@kurrent/kcap-linux-arm64": "0.7.5",
20
- "@kurrent/kcap-linux-musl-x64": "0.7.5",
21
- "@kurrent/kcap-linux-musl-arm64": "0.7.5",
22
- "@kurrent/kcap-win-x64": "0.7.5"
17
+ "@kurrent/kcap-darwin-arm64": "0.7.7",
18
+ "@kurrent/kcap-linux-x64": "0.7.7",
19
+ "@kurrent/kcap-linux-arm64": "0.7.7",
20
+ "@kurrent/kcap-linux-musl-x64": "0.7.7",
21
+ "@kurrent/kcap-linux-musl-arm64": "0.7.7",
22
+ "@kurrent/kcap-win-x64": "0.7.7"
23
23
  },
24
24
  "files": [
25
25
  "bin/",