kessler-cli 0.1.0 → 0.1.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 +48 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# 🛰️ Kessler CLI
|
|
2
|
+
|
|
3
|
+
> Intelligent CLI tool to find and safely clean build artifacts & caches
|
|
4
|
+
|
|
5
|
+
Kessler finds and sweeps away `node_modules`, `__pycache__`, `target/`, `dist/`, `.venv`, and dozens more — without ever touching your source code.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g kessler-cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Launch interactive TUI
|
|
17
|
+
kessler ~/Projects
|
|
18
|
+
|
|
19
|
+
# Scan and report (no deletion)
|
|
20
|
+
kessler scan ~/Projects --json
|
|
21
|
+
|
|
22
|
+
# Clean with confirmation
|
|
23
|
+
kessler clean ~/Projects
|
|
24
|
+
|
|
25
|
+
# Deep clean + force (CI-friendly)
|
|
26
|
+
kessler clean ~/Projects --deep --force --older-than 30d
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Features
|
|
30
|
+
|
|
31
|
+
- 🏎️ **Blazingly fast** — Written in Go, scans massive directory trees in milliseconds
|
|
32
|
+
- 🧠 **Context-aware** — Identifies project types via trigger files, only targets known safe artifacts
|
|
33
|
+
- 🔍 **`.gitignore` intelligence** — Discovers ignored directories unique to your project
|
|
34
|
+
- 🛡️ **Git safety net** — Never touches files tracked by version control
|
|
35
|
+
- ♻️ **OS trash integration** — Moves to Trash instead of `rm -rf`
|
|
36
|
+
- 🎨 **Beautiful TUI** — Interactive dashboard with live telemetry
|
|
37
|
+
|
|
38
|
+
## Other Install Methods
|
|
39
|
+
|
|
40
|
+
- **Homebrew:** `brew tap hariharen9/tap && brew install kessler`
|
|
41
|
+
- **Scoop (Windows):** `scoop install kessler`
|
|
42
|
+
- **Go:** `go install github.com/hariharen9/kessler@latest`
|
|
43
|
+
- **Binary:** [GitHub Releases](https://github.com/hariharen9/kessler/releases)
|
|
44
|
+
|
|
45
|
+
## Links
|
|
46
|
+
|
|
47
|
+
- [GitHub](https://github.com/hariharen9/kessler)
|
|
48
|
+
- [Full Documentation](https://github.com/hariharen9/kessler#readme)
|
package/package.json
CHANGED