golem-cc 0.1.1 → 0.1.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.
- package/README.md +4 -0
- package/bin/install.cjs +17 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
|
|
14
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.
|
|
15
15
|
|
|
16
|
+
<p align="center">
|
|
17
|
+
<img src="demo.gif" alt="golem-cc demo" width="700">
|
|
18
|
+
</p>
|
|
19
|
+
|
|
16
20
|
```
|
|
17
21
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
18
22
|
ITERATION 3 │ 9 tasks remaining
|
package/bin/install.cjs
CHANGED
|
@@ -52,17 +52,16 @@ if (hasHelp) {
|
|
|
52
52
|
npx golem-cc --local
|
|
53
53
|
|
|
54
54
|
${yellow}After Installation:${reset}
|
|
55
|
-
golem
|
|
56
|
-
golem
|
|
57
|
-
golem
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
/golem:simplify Simplify code
|
|
64
|
-
/golem:status Show project status
|
|
55
|
+
golem --install Install golem to current project
|
|
56
|
+
golem spec Build specs through conversation
|
|
57
|
+
golem run plan Create implementation plan
|
|
58
|
+
golem run build Run autonomous build loop
|
|
59
|
+
golem simplify Simplify code
|
|
60
|
+
golem status Show project status
|
|
61
|
+
|
|
62
|
+
${yellow}Slash Commands (inside Claude):${reset}
|
|
65
63
|
/golem:help Show all commands
|
|
64
|
+
/golem:status Show project status
|
|
66
65
|
`);
|
|
67
66
|
process.exit(0);
|
|
68
67
|
}
|
|
@@ -262,25 +261,26 @@ function install(isGlobal) {
|
|
|
262
261
|
console.log(` ${green}✓${reset} Wrote VERSION (${pkg.version})`);
|
|
263
262
|
|
|
264
263
|
// Install shell alias
|
|
265
|
-
installShellAlias();
|
|
264
|
+
const shellConfig = installShellAlias();
|
|
266
265
|
|
|
267
266
|
if (failures.length > 0) {
|
|
268
267
|
console.error(`\n ${yellow}Installation incomplete!${reset} Failed: ${failures.join(', ')}`);
|
|
269
268
|
process.exit(1);
|
|
270
269
|
}
|
|
271
270
|
|
|
271
|
+
const sourceCmd = shellConfig ? `source ~/${shellConfig}` : 'restart your shell';
|
|
272
|
+
|
|
272
273
|
console.log(`
|
|
273
274
|
${green}Done!${reset}
|
|
274
275
|
|
|
275
276
|
${yellow}Next steps:${reset}
|
|
276
|
-
1. Restart your shell (or run:
|
|
277
|
-
2. Run ${cyan}golem${reset}
|
|
278
|
-
3. Run ${cyan}/golem:help${reset} to see available commands
|
|
277
|
+
1. Restart your shell (or run: ${cyan}${sourceCmd}${reset})
|
|
278
|
+
2. Run ${cyan}golem --install${reset} in your project directory
|
|
279
279
|
|
|
280
280
|
${yellow}Workflow:${reset}
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
281
|
+
golem spec → Define requirements through conversation
|
|
282
|
+
golem run plan → Generate implementation plan
|
|
283
|
+
golem run build → Run autonomous coding loop
|
|
284
284
|
`);
|
|
285
285
|
}
|
|
286
286
|
|