bonzai-burn 1.0.11 → 1.0.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bonzai-burn",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Git branch-based cleanup tool with bburn, baccept, and brevert commands",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -1,4 +1,6 @@
1
1
  {
2
+ "isClaude": false,
3
+ "isCursor": true,
2
4
  "headlessClaude": true,
3
5
  "autoBurn": false,
4
6
  "lineLimit": {
package/src/bburn.js CHANGED
@@ -125,6 +125,7 @@ function executeClaude(requirements, config) {
125
125
  console.log('🖥️ Running in interactive mode...\n');
126
126
  return new Promise((resolve, reject) => {
127
127
  const args = [
128
+ '-p', requirements,
128
129
  '--allowedTools', 'Read,Write,Edit,Bash',
129
130
  '--permission-mode', 'dontAsk'
130
131
  ];