@kurrent/kapacitor 0.1.26 → 0.1.28

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.
@@ -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
+ }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "kapacitor",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
4
4
  "description": "Records and visualizes Claude Code sessions via kapacitor CLI hooks"
5
5
  }
@@ -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: Interactive plugin manager (recommended)
48
+ ### Option A: CLI command (recommended)
49
49
 
50
- From inside a Claude Code session:
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
- Or run `/plugin` and browse the **Discover** tab to install interactively.
54
+ This registers the plugin user-wide. Use `--project` to install for the current project only.
58
55
 
59
- ### Option B: Plugin directory flag (one-time)
56
+ ### Option B: Interactive plugin manager
60
57
 
61
- ```bash
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 (persistent, no CLI needed)
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
- "kurrent": {
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@kurrent": true
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
- plugin/
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.26",
3
+ "version": "0.1.28",
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.26",
11
- "@kurrent/kapacitor-linux-x64": "0.1.26",
12
- "@kurrent/kapacitor-linux-arm64": "0.1.26",
13
- "@kurrent/kapacitor-linux-musl-x64": "0.1.26",
14
- "@kurrent/kapacitor-linux-musl-arm64": "0.1.26",
15
- "@kurrent/kapacitor-win-x64": "0.1.26"
10
+ "@kurrent/kapacitor-darwin-arm64": "0.1.28",
11
+ "@kurrent/kapacitor-linux-x64": "0.1.28",
12
+ "@kurrent/kapacitor-linux-arm64": "0.1.28",
13
+ "@kurrent/kapacitor-linux-musl-x64": "0.1.28",
14
+ "@kurrent/kapacitor-linux-musl-arm64": "0.1.28",
15
+ "@kurrent/kapacitor-win-x64": "0.1.28"
16
16
  },
17
17
  "files": [
18
18
  "bin/",
19
- "plugin/"
19
+ "kapacitor/"
20
20
  ]
21
21
  }
File without changes
File without changes
File without changes