golem-cc 0.1.11 → 0.1.12

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 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
- golem spec │ ← Interactive
51
- └──────────────┘ conversation
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
- golem plan │ ← Analyzes specs │
62
- └──────────────┘ vs. codebase │
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
- │ golem build │ ← Autonomous loop │
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
- golem spec
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:help Show all commands
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
  }
@@ -31,9 +31,10 @@ UTILITY COMMANDS
31
31
 
32
32
  WORKFLOW
33
33
 
34
- 1. Run /golem:spec to define requirements through conversation
35
- 2. Run /golem:plan to generate IMPLEMENTATION_PLAN.md
36
- 3. Run /golem:build to start the autonomous coding loop
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 Launch Claude Code
55
- golem --yolo Launch with --dangerously-skip-permissions
56
- golem --install Install/update golem in a project
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>
@@ -140,8 +140,8 @@ 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. Run 'golem-ralph run plan' to create implementation plan
144
- 3. Run 'golem-ralph run build' to start autonomous coding
143
+ 2. Exit Claude, then run 'golem run plan' to create implementation plan
144
+ 3. Run 'golem run build' to start autonomous coding
145
145
  ```
146
146
  3. Ask if they want to make any changes before proceeding
147
147
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "golem-cc",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Autonomous coding loop with Claude - structured specs, ralph loop execution, code simplification",
5
5
  "bin": {
6
6
  "golem-cc": "./bin/install.cjs"