@morebeans/cli 2.3.3 → 2.3.4
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/index.ts +1 -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.3.
|
|
18
|
+
const VERSION = "2.3.4";
|
|
19
19
|
const BEANS_HOME = join(homedir(), ".beans");
|
|
20
20
|
const BEANS_CONFIG = join(BEANS_HOME, "config.json");
|
|
21
21
|
|
|
@@ -181,7 +181,6 @@ async function cmdInit() {
|
|
|
181
181
|
}
|
|
182
182
|
|
|
183
183
|
// Install essential subagents from catalog
|
|
184
|
-
const beansHome = join(homedir(), ".beans");
|
|
185
184
|
const subagentsSrc = join(beansHome, "package/subagents/categories");
|
|
186
185
|
const agentsDest = join(cwd, ".claude/agents");
|
|
187
186
|
|