@kurrent/kapacitor 0.1.27 → 0.1.30
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/kapacitor/.claude-plugin/marketplace.json +16 -0
- package/{plugin → kapacitor}/.claude-plugin/plugin.json +1 -1
- package/{plugin → kapacitor}/README.md +12 -16
- package/package.json +8 -8
- /package/{plugin → kapacitor}/.mcp.json +0 -0
- /package/{plugin → kapacitor}/hooks/hooks.json +0 -0
- /package/{plugin → kapacitor}/hooks/persist-session-id.sh +0 -0
- /package/{plugin → kapacitor}/hooks/set-title-prompt.sh +0 -0
- /package/{plugin → kapacitor}/skills/session-disable/SKILL.md +0 -0
- /package/{plugin → kapacitor}/skills/session-errors/SKILL.md +0 -0
- /package/{plugin → kapacitor}/skills/session-hide/SKILL.md +0 -0
- /package/{plugin → kapacitor}/skills/session-recap/SKILL.md +0 -0
- /package/{plugin → kapacitor}/skills/validate-plan/SKILL.md +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
|
|
3
|
+
"name": "kapacitor",
|
|
4
|
+
"owner": {
|
|
5
|
+
"name": "Kurrent",
|
|
6
|
+
"email": "support@kurrent.io"
|
|
7
|
+
},
|
|
8
|
+
"plugins": [
|
|
9
|
+
{
|
|
10
|
+
"name": "kapacitor",
|
|
11
|
+
"description": "Records and visualizes Claude Code sessions via kapacitor CLI hooks",
|
|
12
|
+
"source": "./",
|
|
13
|
+
"category": "productivity"
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
}
|
|
@@ -45,39 +45,34 @@ Each hook pipes its JSON payload through the `kapacitor` CLI, which enriches it
|
|
|
45
45
|
|
|
46
46
|
## Installation
|
|
47
47
|
|
|
48
|
-
### Option A:
|
|
48
|
+
### Option A: CLI command (recommended)
|
|
49
49
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
```
|
|
53
|
-
/plugin marketplace add /path/to/kapacitor
|
|
54
|
-
/plugin install kapacitor@kurrent
|
|
50
|
+
```bash
|
|
51
|
+
kapacitor plugin install
|
|
55
52
|
```
|
|
56
53
|
|
|
57
|
-
|
|
54
|
+
This registers the plugin user-wide. Use `--project` to install for the current project only.
|
|
58
55
|
|
|
59
|
-
### Option B:
|
|
56
|
+
### Option B: Interactive plugin manager
|
|
60
57
|
|
|
61
|
-
|
|
62
|
-
claude --plugin-dir /path/to/kapacitor/plugin
|
|
63
|
-
```
|
|
58
|
+
From inside a Claude Code session, run `/plugin` and browse the **Installed** tab.
|
|
64
59
|
|
|
65
|
-
### Option C: Settings file (
|
|
60
|
+
### Option C: Settings file (manual)
|
|
66
61
|
|
|
67
62
|
Add to `.claude/settings.local.json` or `~/.claude/settings.json`:
|
|
68
63
|
|
|
69
64
|
```json
|
|
70
65
|
{
|
|
71
66
|
"extraKnownMarketplaces": {
|
|
72
|
-
"
|
|
67
|
+
"kapacitor": {
|
|
73
68
|
"source": {
|
|
74
69
|
"source": "directory",
|
|
75
|
-
"path": "/path/to/kapacitor"
|
|
70
|
+
"path": "/path/to/kapacitor/kapacitor"
|
|
76
71
|
}
|
|
77
72
|
}
|
|
78
73
|
},
|
|
79
74
|
"enabledPlugins": {
|
|
80
|
-
"kapacitor@
|
|
75
|
+
"kapacitor@kapacitor": true
|
|
81
76
|
}
|
|
82
77
|
}
|
|
83
78
|
```
|
|
@@ -97,9 +92,10 @@ export KAPACITOR_URL=http://my-server:5108
|
|
|
97
92
|
## Plugin structure
|
|
98
93
|
|
|
99
94
|
```
|
|
100
|
-
|
|
95
|
+
kapacitor/
|
|
101
96
|
.claude-plugin/
|
|
102
97
|
plugin.json — Plugin manifest (name, version, description)
|
|
98
|
+
marketplace.json — Marketplace manifest for plugin discovery
|
|
103
99
|
.mcp.json — MCP server config (PR review context tools)
|
|
104
100
|
hooks/
|
|
105
101
|
hooks.json — Hook definitions for all lifecycle events
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kurrent/kapacitor",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.30",
|
|
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.
|
|
11
|
-
"@kurrent/kapacitor-linux-x64": "0.1.
|
|
12
|
-
"@kurrent/kapacitor-linux-arm64": "0.1.
|
|
13
|
-
"@kurrent/kapacitor-linux-musl-x64": "0.1.
|
|
14
|
-
"@kurrent/kapacitor-linux-musl-arm64": "0.1.
|
|
15
|
-
"@kurrent/kapacitor-win-x64": "0.1.
|
|
10
|
+
"@kurrent/kapacitor-darwin-arm64": "0.1.30",
|
|
11
|
+
"@kurrent/kapacitor-linux-x64": "0.1.30",
|
|
12
|
+
"@kurrent/kapacitor-linux-arm64": "0.1.30",
|
|
13
|
+
"@kurrent/kapacitor-linux-musl-x64": "0.1.30",
|
|
14
|
+
"@kurrent/kapacitor-linux-musl-arm64": "0.1.30",
|
|
15
|
+
"@kurrent/kapacitor-win-x64": "0.1.30"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"bin/",
|
|
19
|
-
"
|
|
19
|
+
"kapacitor/"
|
|
20
20
|
]
|
|
21
21
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|