golem-cc 0.1.11 → 0.1.13
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 +24 -11
- package/bin/install.cjs +5 -2
- package/commands/golem/help.md +10 -7
- package/commands/golem/spec.md +3 -2
- package/golem/agents/spec-builder.md +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,9 +46,10 @@ Golem is an autonomous coding loop that implements features while you watch (or
|
|
|
46
46
|
│ "I need user auth, a REST API for tasks, and filtering" │
|
|
47
47
|
│ │ │
|
|
48
48
|
│ ▼ │
|
|
49
|
-
│
|
|
50
|
-
│
|
|
51
|
-
│
|
|
49
|
+
│ ┌────────────────────┐ │
|
|
50
|
+
│ │ claude │ ← Interactive │
|
|
51
|
+
│ │ → /golem:spec │ conversation │
|
|
52
|
+
│ └────────────────────┘ │
|
|
52
53
|
│ │ │
|
|
53
54
|
│ ▼ │
|
|
54
55
|
│ specs/*.md │
|
|
@@ -57,17 +58,17 @@ Golem is an autonomous coding loop that implements features while you watch (or
|
|
|
57
58
|
│ GOLEM │
|
|
58
59
|
│ │ │
|
|
59
60
|
│ ▼ │
|
|
60
|
-
│
|
|
61
|
-
│
|
|
62
|
-
│
|
|
61
|
+
│ ┌────────────────┐ │
|
|
62
|
+
│ │ golem run plan │ ← Analyzes specs │
|
|
63
|
+
│ └────────────────┘ vs. codebase │
|
|
63
64
|
│ │ │
|
|
64
65
|
│ ▼ │
|
|
65
66
|
│ IMPLEMENTATION_PLAN.md │
|
|
66
67
|
│ │ │
|
|
67
68
|
│ ▼ │
|
|
68
|
-
│
|
|
69
|
-
│
|
|
70
|
-
│
|
|
69
|
+
│ ┌─────────────────┐ │
|
|
70
|
+
│ │ golem run build │ ← Autonomous loop │
|
|
71
|
+
│ └─────────────────┘ │
|
|
71
72
|
│ │ │
|
|
72
73
|
│ ┌─────────────────┼─────────────────┐ │
|
|
73
74
|
│ ▼ ▼ ▼ │
|
|
@@ -109,7 +110,9 @@ cd my-project
|
|
|
109
110
|
golem --install
|
|
110
111
|
|
|
111
112
|
# 2. Define what you're building (interactive)
|
|
112
|
-
|
|
113
|
+
claude
|
|
114
|
+
> /golem:spec
|
|
115
|
+
> exit
|
|
113
116
|
|
|
114
117
|
# 3. Generate the task list
|
|
115
118
|
golem run plan
|
|
@@ -141,15 +144,25 @@ Then it loops. Fresh context each time. No degradation.
|
|
|
141
144
|
|
|
142
145
|
## Commands
|
|
143
146
|
|
|
147
|
+
### CLI Commands
|
|
144
148
|
| Command | Description |
|
|
145
149
|
|---------|-------------|
|
|
146
150
|
| `golem --install` | Initialize golem in current project |
|
|
147
|
-
| `golem spec` | Build specs through guided conversation |
|
|
148
151
|
| `golem run plan` | Create implementation plan from specs |
|
|
149
152
|
| `golem run build` | Run the autonomous build loop |
|
|
150
153
|
| `golem simplify` | Run code simplifier on demand |
|
|
151
154
|
| `golem status` | Show progress |
|
|
152
155
|
|
|
156
|
+
### Slash Commands (inside Claude)
|
|
157
|
+
| Command | Description |
|
|
158
|
+
|---------|-------------|
|
|
159
|
+
| `/golem:spec` | Build specs through guided conversation |
|
|
160
|
+
| `/golem:plan` | Create implementation plan |
|
|
161
|
+
| `/golem:build` | Run build loop (single iteration) |
|
|
162
|
+
| `/golem:simplify` | Run code simplifier |
|
|
163
|
+
| `/golem:status` | Show project status |
|
|
164
|
+
| `/golem:help` | Show all commands |
|
|
165
|
+
|
|
153
166
|
### Options
|
|
154
167
|
|
|
155
168
|
```bash
|
package/bin/install.cjs
CHANGED
|
@@ -53,15 +53,18 @@ if (hasHelp) {
|
|
|
53
53
|
|
|
54
54
|
${yellow}After Installation:${reset}
|
|
55
55
|
golem --install Install golem to current project
|
|
56
|
-
golem spec Build specs through conversation
|
|
57
56
|
golem run plan Create implementation plan
|
|
58
57
|
golem run build Run autonomous build loop
|
|
59
58
|
golem simplify Simplify code
|
|
60
59
|
golem status Show project status
|
|
61
60
|
|
|
62
61
|
${yellow}Slash Commands (inside Claude):${reset}
|
|
63
|
-
/golem:
|
|
62
|
+
/golem:spec Build specs through conversation
|
|
63
|
+
/golem:plan Create implementation plan
|
|
64
|
+
/golem:build Run build loop iteration
|
|
65
|
+
/golem:simplify Simplify code
|
|
64
66
|
/golem:status Show project status
|
|
67
|
+
/golem:help Show all commands
|
|
65
68
|
`);
|
|
66
69
|
process.exit(0);
|
|
67
70
|
}
|
package/commands/golem/help.md
CHANGED
|
@@ -31,9 +31,10 @@ UTILITY COMMANDS
|
|
|
31
31
|
|
|
32
32
|
WORKFLOW
|
|
33
33
|
|
|
34
|
-
1.
|
|
35
|
-
2.
|
|
36
|
-
3.
|
|
34
|
+
1. /golem:spec Define requirements through conversation
|
|
35
|
+
2. exit claude
|
|
36
|
+
3. golem run plan Generate IMPLEMENTATION_PLAN.md (headless)
|
|
37
|
+
4. golem run build Start autonomous coding loop (headless)
|
|
37
38
|
|
|
38
39
|
Each build iteration:
|
|
39
40
|
• Selects highest-priority task
|
|
@@ -49,10 +50,12 @@ FILES
|
|
|
49
50
|
IMPLEMENTATION_PLAN.md Task list with priorities
|
|
50
51
|
.golem/ Configuration and prompts
|
|
51
52
|
|
|
52
|
-
CLI USAGE
|
|
53
|
+
CLI USAGE (outside Claude)
|
|
53
54
|
|
|
54
|
-
golem
|
|
55
|
-
golem
|
|
56
|
-
golem
|
|
55
|
+
golem --install Install golem in a project
|
|
56
|
+
golem run plan Generate implementation plan
|
|
57
|
+
golem run build Run autonomous build loop
|
|
58
|
+
golem simplify Simplify code
|
|
59
|
+
golem status Show project status
|
|
57
60
|
```
|
|
58
61
|
</process>
|
package/commands/golem/spec.md
CHANGED
|
@@ -145,8 +145,9 @@ When all specs and AGENTS.md are written:
|
|
|
145
145
|
```
|
|
146
146
|
Specs complete! Next steps:
|
|
147
147
|
1. Review specs/ files and adjust if needed
|
|
148
|
-
2.
|
|
149
|
-
3. Run
|
|
148
|
+
2. Exit Claude (type 'exit' or Ctrl+C)
|
|
149
|
+
3. Run 'golem run plan' in your terminal
|
|
150
|
+
4. Run 'golem run build' in your terminal
|
|
150
151
|
```
|
|
151
152
|
|
|
152
153
|
</process>
|
|
@@ -140,8 +140,9 @@ When all specs and AGENTS.md are written:
|
|
|
140
140
|
```
|
|
141
141
|
Next steps:
|
|
142
142
|
1. Review specs/ files and adjust if needed
|
|
143
|
-
2.
|
|
144
|
-
3. Run 'golem
|
|
143
|
+
2. Exit Claude (type 'exit' or press Ctrl+C)
|
|
144
|
+
3. Run 'golem run plan' in your terminal to create implementation plan
|
|
145
|
+
4. Run 'golem run build' in your terminal to start autonomous coding
|
|
145
146
|
```
|
|
146
147
|
3. Ask if they want to make any changes before proceeding
|
|
147
148
|
|