bonzai-burn 1.0.74 → 1.0.77

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.
@@ -14,7 +14,8 @@ app.use(express.json());
14
14
 
15
15
  // Root route
16
16
  app.get('/', (req, res) => {
17
- res.json({ message: 'Bonzai Server', status: 'running' });
17
+ const repoName = path.basename(process.env.BONZAI_REPO_DIR || process.cwd());
18
+ res.json({ message: 'Bonzai Server', status: 'running', repoName });
18
19
  });
19
20
 
20
21
  // Dynamically load handlers based on what exists
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bonzai-burn",
3
- "version": "1.0.74",
3
+ "version": "1.0.77",
4
4
  "description": "Git branch-based cleanup tool with bburn, baccept, and brevert commands",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",