bonzai-burn 1.0.37 → 1.0.39
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 +10 -20
- package/dist/index.js +869 -0
- package/package.json +16 -10
- package/graph-templates/config.js +0 -18
- package/graph-templates/handlers/delete.js +0 -20
- package/graph-templates/handlers/git.js +0 -72
- package/graph-templates/handlers/index.js +0 -22
- package/graph-templates/handlers/list.js +0 -16
- package/graph-templates/handlers/open-cursor.js +0 -108
- package/graph-templates/handlers/read.js +0 -120
- package/graph-templates/handlers/scan_code_quality.js +0 -144
- package/graph-templates/handlers/shutdown.js +0 -16
- package/graph-templates/handlers/terminal.js +0 -140
- package/graph-templates/handlers/write.js +0 -18
- package/graph-templates/ignore.txt +0 -58
- package/graph-templates/receiver.js +0 -47
- package/graph-templates/utils/fileList.js +0 -96
- package/graph-templates/utils/ignore.js +0 -53
- package/graph-templates/utils/parsers.js +0 -720
- package/src/bconfig.js +0 -202
- package/src/index.js +0 -99
- /package/{src → dist}/analyzer.js +0 -0
- /package/{src → dist}/bburn.js +0 -0
- /package/{src → dist}/bhook.js +0 -0
- /package/{payload-bonzai → dist/payload-bonzai}/config.json +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# bonzai-burn
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Code analysis CLI for Claude Code.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -8,30 +8,20 @@ Automated code cleanup via Claude Code on a safe git branch.
|
|
|
8
8
|
npx bonzai-burn
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
Requires: [Claude Code CLI](https://github.com/anthropics/claude-code)
|
|
12
|
-
|
|
13
11
|
## Usage
|
|
14
12
|
|
|
15
|
-
### 1. Run burn
|
|
16
|
-
|
|
17
13
|
```bash
|
|
18
|
-
npx
|
|
14
|
+
npx bonzai-burn # Initialize bonzai/ folder
|
|
15
|
+
npx bonzai-burn -b # Run code analysis
|
|
16
|
+
npx bonzai-burn -h # Install Claude Code hook
|
|
17
|
+
npx bonzai-burn -h -s # Check hook status
|
|
18
|
+
npx bonzai-burn -h -u # Uninstall hook
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
### 2. Review changes
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
git diff main
|
|
27
|
-
```
|
|
21
|
+
## Config
|
|
28
22
|
|
|
29
|
-
|
|
23
|
+
Edit `bonzai/config.json` to customize burn rules.
|
|
30
24
|
|
|
31
|
-
|
|
32
|
-
# Accept
|
|
33
|
-
baccept
|
|
25
|
+
---
|
|
34
26
|
|
|
35
|
-
|
|
36
|
-
brevert
|
|
37
|
-
```
|
|
27
|
+
> **Note:** Release configuration (loops, channels) is managed outside this repo. See internal docs.
|