@asifkibria/claude-code-toolkit 1.3.0 → 1.3.1
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 +5 -5
- package/dist/cli.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@asifkibria/claude-code-toolkit)
|
|
4
4
|
[](https://www.npmjs.com/package/@asifkibria/claude-code-toolkit)
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
|
-
[](https://github.com/AsifKibria/claude-code-toolkit)
|
|
7
7
|
|
|
8
8
|
**The ultimate maintenance toolkit for Claude Code.** Fix broken sessions, search conversations, detect secrets & PII, manage storage, and monitor everything through a beautiful web dashboard.
|
|
9
9
|
|
|
10
10
|
> **Love this tool?** Give us a star on GitHub! It helps others discover this project and motivates continued development.
|
|
11
11
|
>
|
|
12
|
-
> [](https://github.com/
|
|
12
|
+
> [](https://github.com/AsifKibria/claude-code-toolkit)
|
|
13
13
|
|
|
14
14
|
---
|
|
15
15
|
|
|
@@ -265,7 +265,7 @@ When installed as MCP server, Claude can use these tools directly:
|
|
|
265
265
|
|
|
266
266
|
If Claude Code Toolkit has helped you:
|
|
267
267
|
|
|
268
|
-
- **Star the repo** - It really helps! [](https://github.com/AsifKibria/claude-code-toolkit)
|
|
269
269
|
- **Share with colleagues** - Help others discover this tool
|
|
270
270
|
- **Report bugs** - Open issues on GitHub
|
|
271
271
|
- **Contribute** - PRs welcome!
|
|
@@ -275,8 +275,8 @@ If Claude Code Toolkit has helped you:
|
|
|
275
275
|
## Links
|
|
276
276
|
|
|
277
277
|
- [npm](https://www.npmjs.com/package/@asifkibria/claude-code-toolkit)
|
|
278
|
-
- [GitHub](https://github.com/
|
|
279
|
-
- [Issues](https://github.com/
|
|
278
|
+
- [GitHub](https://github.com/AsifKibria/claude-code-toolkit)
|
|
279
|
+
- [Issues](https://github.com/AsifKibria/claude-code-toolkit/issues)
|
|
280
280
|
|
|
281
281
|
## License
|
|
282
282
|
|
package/dist/cli.js
CHANGED
|
@@ -39,7 +39,7 @@ function formatDate(date) {
|
|
|
39
39
|
}
|
|
40
40
|
function printHelp() {
|
|
41
41
|
console.log(`
|
|
42
|
-
Claude Code Toolkit v1.3.
|
|
42
|
+
Claude Code Toolkit v1.3.1
|
|
43
43
|
Maintain, optimize, secure, and troubleshoot your Claude Code installation.
|
|
44
44
|
|
|
45
45
|
USAGE:
|
|
@@ -182,7 +182,7 @@ function parseArgs(args) {
|
|
|
182
182
|
process.exit(0);
|
|
183
183
|
}
|
|
184
184
|
if (arg === "-v" || arg === "--version") {
|
|
185
|
-
console.log("1.3.
|
|
185
|
+
console.log("1.3.1");
|
|
186
186
|
process.exit(0);
|
|
187
187
|
}
|
|
188
188
|
if (arg === "-f" || arg === "--file") {
|
package/package.json
CHANGED