@kurrent/kapacitor 0.1.19 → 0.1.23

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/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@kurrent/kapacitor",
3
- "version": "0.1.19",
3
+ "version": "0.1.23",
4
4
  "description": "CLI companion for Kurrent Capacitor — records and visualizes Claude Code sessions",
5
5
  "license": "UNLICENSED",
6
6
  "bin": {
7
7
  "kapacitor": "bin/kapacitor.js"
8
8
  },
9
9
  "optionalDependencies": {
10
- "@kurrent/kapacitor-darwin-arm64": "0.1.19",
11
- "@kurrent/kapacitor-linux-x64": "0.1.19",
12
- "@kurrent/kapacitor-linux-arm64": "0.1.19",
13
- "@kurrent/kapacitor-linux-musl-x64": "0.1.19",
14
- "@kurrent/kapacitor-linux-musl-arm64": "0.1.19",
15
- "@kurrent/kapacitor-win-x64": "0.1.19"
10
+ "@kurrent/kapacitor-darwin-arm64": "0.1.23",
11
+ "@kurrent/kapacitor-linux-x64": "0.1.23",
12
+ "@kurrent/kapacitor-linux-arm64": "0.1.23",
13
+ "@kurrent/kapacitor-linux-musl-x64": "0.1.23",
14
+ "@kurrent/kapacitor-linux-musl-arm64": "0.1.23",
15
+ "@kurrent/kapacitor-win-x64": "0.1.23"
16
16
  },
17
17
  "files": [
18
18
  "bin/",
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "kapacitor",
3
- "version": "0.1.19",
3
+ "version": "0.1.23",
4
4
  "description": "Records and visualizes Claude Code sessions via kapacitor CLI hooks"
5
5
  }
package/plugin/README.md CHANGED
@@ -35,6 +35,8 @@ Each hook pipes its JSON payload through the `kapacitor` CLI, which enriches it
35
35
  - `/kapacitor:session-recap` — Retrieve a structured summary of a session (user prompts, assistant responses, plans, file changes)
36
36
  - `/kapacitor:session-errors` — Extract tool call errors from a session for post-session review and pattern detection
37
37
  - `/kapacitor:validate-plan` — Verify that all planned items were completed
38
+ - `/kapacitor:session-disable` — Stop recording and delete all server data for the current session
39
+ - `/kapacitor:session-hide` — Hide the current session (owner-only visibility)
38
40
 
39
41
  ## Prerequisites
40
42
 
@@ -108,4 +110,8 @@ plugin/
108
110
  SKILL.md — /kapacitor:session-errors skill
109
111
  validate-plan/
110
112
  SKILL.md — /kapacitor:validate-plan skill
113
+ session-disable/
114
+ SKILL.md — /kapacitor:session-disable skill
115
+ session-hide/
116
+ SKILL.md — /kapacitor:session-hide skill
111
117
  ```
@@ -0,0 +1,38 @@
1
+ ---
2
+ name: session-disable
3
+ description: >-
4
+ This skill should be used when the user asks to "disable recording",
5
+ "stop recording", "delete this session", "don't record this",
6
+ "remove my session data", "erase this session", "turn off tracking",
7
+ "stop tracking", "disable kapacitor", "remove session",
8
+ or wants to stop the current session from being recorded.
9
+ Stops the watcher, prevents future hooks, and deletes server data.
10
+ ---
11
+
12
+ # Session Disable
13
+
14
+ Stop recording the current session and delete all data from the server.
15
+
16
+ ## Usage
17
+
18
+ Run this command in the terminal:
19
+
20
+ ```bash
21
+ kapacitor disable
22
+ ```
23
+
24
+ This will:
25
+ 1. Stop the transcript watcher process
26
+ 2. Prevent all future hook events from being sent for this session
27
+ 3. Delete all session data from the server (event streams and read models)
28
+
29
+ ## Requirements
30
+
31
+ - Must be run inside an active Claude Code session (`KAPACITOR_SESSION_ID` must be set)
32
+ - The kapacitor CLI must be on PATH
33
+
34
+ ## Notes
35
+
36
+ - This action is irreversible — all session data will be permanently deleted from the server
37
+ - The local transcript file (`.jsonl`) is not affected — only server-side data is removed
38
+ - Subsequent hooks (session-end, notification, etc.) will be silently skipped
@@ -0,0 +1,34 @@
1
+ ---
2
+ name: session-hide
3
+ description: >-
4
+ This skill should be used when the user asks to "hide this session",
5
+ "make this private", "hide session", "owner only", "make private",
6
+ "hide from others", "set private", "don't show this session",
7
+ or wants to change the current session visibility to owner-only.
8
+ Sets session visibility so only the owner can see it.
9
+ ---
10
+
11
+ # Session Hide
12
+
13
+ Hide the current session so only you (the owner) can see it.
14
+
15
+ ## Usage
16
+
17
+ Run this command in the terminal:
18
+
19
+ ```bash
20
+ kapacitor hide
21
+ ```
22
+
23
+ This sets the session visibility to "none" (owner-only). Other users will no longer see this session in the Capacitor dashboard.
24
+
25
+ ## Requirements
26
+
27
+ - Must be run inside an active Claude Code session (`KAPACITOR_SESSION_ID` must be set)
28
+ - The kapacitor CLI must be on PATH
29
+
30
+ ## Notes
31
+
32
+ - This is reversible — visibility can be changed back via the Capacitor dashboard
33
+ - The session data remains on the server, just hidden from other users
34
+ - Unlike `kapacitor disable`, recording continues normally