@kurrent/kapacitor 0.4.7 → 0.4.10
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 +14 -0
- package/kapacitor/.claude-plugin/plugin.json +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -40,3 +40,17 @@ kapacitor review owner/repo#123
|
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
Claude gets MCP tools to search session transcripts, understand per-file rationale, and explain design decisions made during implementation.
|
|
43
|
+
|
|
44
|
+
## Upgrading from v1
|
|
45
|
+
|
|
46
|
+
The v1 config format stored `server_url` as a bare host name without a
|
|
47
|
+
scheme. If `kapacitor` crashes with `An invalid request URI was provided`
|
|
48
|
+
after upgrading, your config still has the old format. Fix it with one
|
|
49
|
+
command:
|
|
50
|
+
|
|
51
|
+
kapacitor config set server_url https://your-server.example.com
|
|
52
|
+
|
|
53
|
+
Or remove the config file and re-run setup:
|
|
54
|
+
|
|
55
|
+
rm ~/.config/kapacitor/config.json
|
|
56
|
+
kapacitor setup
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kurrent/kapacitor",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.10",
|
|
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.4.
|
|
11
|
-
"@kurrent/kapacitor-linux-x64": "0.4.
|
|
12
|
-
"@kurrent/kapacitor-linux-arm64": "0.4.
|
|
13
|
-
"@kurrent/kapacitor-linux-musl-x64": "0.4.
|
|
14
|
-
"@kurrent/kapacitor-linux-musl-arm64": "0.4.
|
|
15
|
-
"@kurrent/kapacitor-win-x64": "0.4.
|
|
10
|
+
"@kurrent/kapacitor-darwin-arm64": "0.4.10",
|
|
11
|
+
"@kurrent/kapacitor-linux-x64": "0.4.10",
|
|
12
|
+
"@kurrent/kapacitor-linux-arm64": "0.4.10",
|
|
13
|
+
"@kurrent/kapacitor-linux-musl-x64": "0.4.10",
|
|
14
|
+
"@kurrent/kapacitor-linux-musl-arm64": "0.4.10",
|
|
15
|
+
"@kurrent/kapacitor-win-x64": "0.4.10"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"bin/",
|