@morebeans/cli 2.3.0 → 2.3.1

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 +1 -7
  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.0";
18
+ const VERSION = "2.3.1";
19
19
  const BEANS_HOME = join(homedir(), ".beans");
20
20
  const BEANS_CONFIG = join(BEANS_HOME, "config.json");
21
21
 
@@ -217,12 +217,6 @@ async function cmdInit() {
217
217
  }
218
218
  }
219
219
 
220
- // Symlink CLAUDE.md for project docs
221
- const claudeMd = join(pluginSource, "CLAUDE.md");
222
- if (existsSync(claudeMd)) {
223
- await $`ln -sf ${claudeMd} ${join(cwd, ".claude/CLAUDE.md")}`.nothrow();
224
- }
225
-
226
220
  // Copy settings.json if not exists
227
221
  const settingsSrc = join(pluginSource, "settings.json");
228
222
  const settingsDest = join(cwd, ".claude/settings.json");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morebeans/cli",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "BEANS CLI - Setup and configure autonomous development for Claude Code",
5
5
  "type": "module",
6
6
  "main": "index.ts",