golem-cc 0.1.0 → 0.1.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.
- package/README.md +18 -2
- package/bin/golem +2 -1
- package/bin/install.cjs +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
```
|
|
2
|
+
|
|
2
3
|
██████╗ ██████╗ ██╗ ███████╗███╗ ███╗
|
|
3
4
|
██╔════╝ ██╔═══██╗██║ ██╔════╝████╗ ████║
|
|
4
5
|
██║ ███╗██║ ██║██║ █████╗ ██╔████╔██║
|
|
5
6
|
██║ ██║██║ ██║██║ ██╔══╝ ██║╚██╔╝██║
|
|
6
7
|
╚██████╔╝╚██████╔╝███████╗███████╗██║ ╚═╝ ██║
|
|
7
8
|
╚═════╝ ╚═════╝ ╚══════╝╚══════╝╚═╝ ╚═╝
|
|
9
|
+
|
|
8
10
|
```
|
|
9
11
|
|
|
10
|
-
>
|
|
12
|
+
> *"Ruby's son is a doctor, and you're letting a computer write your code?"*
|
|
11
13
|
|
|
12
14
|
Golem is an autonomous coding loop that implements features while you watch (or grab coffee). Define your specs, kick off the loop, and let it work through your task list—implementing, testing, simplifying, and committing along the way.
|
|
13
15
|
|
|
@@ -77,8 +79,22 @@ Golem is an autonomous coding loop that implements features while you watch (or
|
|
|
77
79
|
## Installation
|
|
78
80
|
|
|
79
81
|
```bash
|
|
82
|
+
# npm
|
|
80
83
|
npx golem-cc --global
|
|
81
|
-
|
|
84
|
+
|
|
85
|
+
# pnpm
|
|
86
|
+
pnpm dlx golem-cc --global
|
|
87
|
+
|
|
88
|
+
# yarn
|
|
89
|
+
yarn dlx golem-cc --global
|
|
90
|
+
|
|
91
|
+
# bun
|
|
92
|
+
bunx golem-cc --global
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
Then reload your shell:
|
|
96
|
+
```bash
|
|
97
|
+
source ~/.zshrc # or ~/.bashrc
|
|
82
98
|
```
|
|
83
99
|
|
|
84
100
|
## Quick Start
|
package/bin/golem
CHANGED
|
@@ -33,6 +33,7 @@ DIM='\033[2m'
|
|
|
33
33
|
NC='\033[0m'
|
|
34
34
|
|
|
35
35
|
print_banner() {
|
|
36
|
+
echo ""
|
|
36
37
|
echo -e "${CYAN}"
|
|
37
38
|
echo " ██████╗ ██████╗ ██╗ ███████╗███╗ ███╗"
|
|
38
39
|
echo " ██╔════╝ ██╔═══██╗██║ ██╔════╝████╗ ████║"
|
|
@@ -41,7 +42,7 @@ print_banner() {
|
|
|
41
42
|
echo " ╚██████╔╝╚██████╔╝███████╗███████╗██║ ╚═╝ ██║"
|
|
42
43
|
echo " ╚═════╝ ╚═════╝ ╚══════╝╚══════╝╚═╝ ╚═╝"
|
|
43
44
|
echo -e "${NC}"
|
|
44
|
-
echo -e " ${DIM}
|
|
45
|
+
echo -e " ${DIM}\"Ruby's son is a doctor, and you're letting a computer write your code?\"${NC}"
|
|
45
46
|
echo ""
|
|
46
47
|
}
|
|
47
48
|
|
package/bin/install.cjs
CHANGED
|
@@ -24,8 +24,7 @@ ${cyan} ██████╗ ██████╗ ██╗ ███
|
|
|
24
24
|
╚═════╝ ╚═════╝ ╚══════╝╚══════╝╚═╝ ╚═╝${reset}
|
|
25
25
|
|
|
26
26
|
Golem ${dim}v${pkg.version}${reset}
|
|
27
|
-
|
|
28
|
-
Structured specs → Ralph loop → Code simplification
|
|
27
|
+
${dim}"Ruby's son is a doctor, and you're letting a computer write your code?"${reset}
|
|
29
28
|
`;
|
|
30
29
|
|
|
31
30
|
// Parse args
|