@morebeans/cli 2.0.1 → 2.0.2

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.
Files changed (2) hide show
  1. package/index.ts +5 -5
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -15,7 +15,7 @@ import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs";
15
15
  import { join, resolve } from "path";
16
16
  import { homedir } from "os";
17
17
 
18
- const VERSION = "2.0.1";
18
+ const VERSION = "2.0.2";
19
19
  const BEANS_HOME = join(homedir(), ".beans");
20
20
  const BEANS_CONFIG = join(BEANS_HOME, "config.json");
21
21
 
@@ -101,10 +101,10 @@ async function cmdInit() {
101
101
  const dirs = [
102
102
  ".claude/plugins",
103
103
  ".claude/agents",
104
- ".beads/analysis",
105
- ".beads/context",
106
- ".beads/cache",
107
- ".beads/logs",
104
+ ".beans/analysis",
105
+ ".beans/context",
106
+ ".beans/cache",
107
+ ".beans/logs",
108
108
  ];
109
109
 
110
110
  for (const dir of dirs) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morebeans/cli",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "BEANS CLI - Setup and configure autonomous development for Claude Code",
5
5
  "type": "module",
6
6
  "main": "index.ts",