@morebeans/cli 2.5.3 → 2.7.0
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/README.md +0 -2
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,8 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
# BEANS
|
|
6
6
|
|
|
7
|
-
> **B**eads + r**A**lph + val**U** = BEA**NS**
|
|
8
|
-
|
|
9
7
|
**Unified autonomous development plugin for Claude Code** combining git-backed issue tracking, spec-driven execution, and code intelligence tools.
|
|
10
8
|
|
|
11
9
|
[](LICENSE)
|
package/index.ts
CHANGED
|
@@ -16,7 +16,7 @@ import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs";
|
|
|
16
16
|
import { join, resolve } from "path";
|
|
17
17
|
import { homedir } from "os";
|
|
18
18
|
|
|
19
|
-
const VERSION = "2.
|
|
19
|
+
const VERSION = "2.7.0";
|
|
20
20
|
const BEANS_HOME = join(homedir(), ".beans");
|
|
21
21
|
const BEANS_CONFIG = join(BEANS_HOME, "config.json");
|
|
22
22
|
|