theslopmachine 1.0.12 → 1.0.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.
@@ -148,11 +148,14 @@ Do not interact with Claude through raw `claude` commands, manual tmux typing, u
148
148
  - Claude messages must read like a lead engineer talking to another engineer.
149
149
  - Use private planning only to decide the next normal Claude instruction; do not mention private planning or its existence.
150
150
  - Include what to build or fix, why it matters, the broad affected area, expected behavior, and useful verification.
151
+ - Prompt Claude phase-by-phase and slice-by-slice. Prefer one phase, scaffold, module, or fix batch per prompt; at most combine two adjacent tightly coupled slices when separating them would create needless churn.
152
+ - Never give Claude the whole workflow, all phases, or a full end-to-end delivery packet at once.
151
153
  - For substantial Claude turns, you may include a normal human reminder that Claude can use its own built-in subagents for bounded investigation, implementation support, or verification inside the same Claude lane. Do not frame Claude subagents as separate workflow lanes, and do not create OpenCode subagents to help Claude implement.
152
154
  - Keep ordinary issue prompts at module/product level. Avoid file/line details unless the user explicitly asks you to pass exact references.
153
155
  - Do not paste, summarize, cite, name, or mention hidden plans.
154
156
  - Do not combine original-prompt orientation, design, implementation, verification, and bugfix work into one large prompt.
155
157
  - Do not send workflow mechanics, evaluator internals, Beads state, hidden-file paths, owner-state reasoning, or negative instructions about nonexistent artifacts to Claude.
158
+ - After each Claude completion, verify the result against the original product prompt in `./metadata.json`, `./docs/design.md`, `./docs/api-spec.md` when applicable, and owner-private `../.ai/plan.md`. If there are issues, correct through the same active Claude lane before proceeding to the next slice.
156
159
  - If you make a direct owner-side code or docs change that affects the product repo, tell the active Claude lane exactly what changed and what remains to verify.
157
160
 
158
161
  ## Claude Utility Map
@@ -193,6 +196,7 @@ Use these sequential names as the canonical workflow model. Legacy `P*` names ar
193
196
  - Scaffold first, then proceed module by module.
194
197
  - Prompt in casual human language using only visible project context.
195
198
  - Use internal planning privately for review and module acceptance.
199
+ - Do not send more than the current module/slice, or two adjacent tightly coupled slices, in a single Claude prompt.
196
200
  - Record Claude turns, issues, verification evidence, and module acceptance in metadata and Beads.
197
201
  - After all modules are complete, ask the same Claude lane to check the implementation against the design/API docs and provide startup commands plus expected flows.
198
202
 
@@ -127,10 +127,13 @@ All other subagent types are forbidden for owner use unless the user explicitly
127
127
  - Developer messages must read like a lead engineer talking to another engineer.
128
128
  - Use private planning only to decide the next normal implementation instruction; do not mention private planning or its existence.
129
129
  - Include what to build or fix, why it matters, the broad affected area, expected behavior, and useful verification.
130
+ - Prompt developers phase-by-phase and slice-by-slice. Prefer one phase, scaffold, module, or fix batch per prompt; at most combine two adjacent tightly coupled slices when separating them would create needless churn.
131
+ - Never give the developer the whole workflow, all phases, or a full end-to-end delivery packet at once.
130
132
  - Keep ordinary issue prompts at module/product level. Avoid file/line details unless the user explicitly asks you to pass exact references.
131
133
  - Do not paste, summarize, cite, name, or mention hidden plans.
132
134
  - Do not combine original-prompt orientation, design, implementation, verification, and bugfix work into one large prompt.
133
135
  - Do not send workflow mechanics, evaluator internals, Beads state, hidden-file paths, owner-state reasoning, or negative instructions about nonexistent artifacts to developers.
136
+ - After each developer completion, verify the result against the original product prompt in `./metadata.json`, `./docs/design.md`, `./docs/api-spec.md` when applicable, and owner-private `../.ai/plan.md`. If there are issues, correct through the same active developer session before proceeding to the next slice.
134
137
  - If you make a direct owner-side code or docs change that affects the product repo, tell the active developer session exactly what changed and what remains to verify.
135
138
 
136
139
  ## Phase Model
@@ -160,6 +163,7 @@ Use these sequential names as the canonical workflow model. Legacy `P*` names ar
160
163
  - Scaffold first, then proceed module by module.
161
164
  - Prompt in casual human language using only visible project context.
162
165
  - Use internal planning privately for review and module acceptance.
166
+ - Do not send more than the current module/slice, or two adjacent tightly coupled slices, in a single developer prompt.
163
167
  - Record session turns, issues, verification evidence, and module acceptance in metadata and Beads.
164
168
  - After all modules are complete, ask the same session to check the implementation against the design/API docs and provide startup commands plus expected flows.
165
169
 
@@ -20,6 +20,8 @@ Use this skill during `Phase 3: Development` before prompting the active develop
20
20
 
21
21
  Prompt like a human developer working with an AI coding assistant.
22
22
 
23
+ Prompt one bounded slice at a time. The preferred unit is one phase-purpose, scaffold, module, work package, or fix batch. At most combine two adjacent tightly coupled slices in one prompt, and only when splitting them would make the work less coherent. Never send all phases, the full private plan, or a start-to-finish workflow packet to the developer/Claude lane.
24
+
23
25
  Use direct wording such as:
24
26
  - `I checked the user module and found a missing authorization test. Please add that and rerun the relevant tests.`
25
27
  - `Continue with the invoice module. Build the create/list/detail flow against the existing product contract and cover the main success and validation paths.`
@@ -29,7 +31,7 @@ Do not send robotic process language. Do not require a specific response format.
29
31
 
30
32
  Do not keep restating visible doc paths in routine follow-up prompts when the same session already knows the project contract. It is fine to say `existing product contract`, `accepted docs`, or simply name the module. Mention exact doc paths only when orienting a new session, resolving confusion, or asking for a final contract check.
31
33
 
32
- For larger module slices, group expectations by user/business behavior instead of turning every endpoint, field, and negative case into a long checklist. Ask for real backend-backed behavior, visible UI states, and meaningful success/failure tests, but keep the wording natural.
34
+ For larger module slices, group expectations by user/business behavior instead of turning every endpoint, field, and negative case into a long checklist. Ask for real backend-backed behavior, visible UI states, and meaningful success/failure tests, but keep the wording natural. If a module is too large to explain without becoming a checklist packet, split it into smaller sequential prompts.
33
35
 
34
36
  Example of a good larger module prompt:
35
37
 
@@ -61,11 +63,13 @@ Do not say `the review found`, `the evaluation found`, or `the audit found`. The
61
63
 
62
64
  3. **Proceed module by module.**
63
65
  - Select the next section/module from `./docs/design.md` and the private plan.
64
- - Prompt the developer using the docs only.
66
+ - Prompt the developer using the docs only, one module/work package at a time by default.
65
67
  - Ask for the implementation and the relevant tests/checks for that module.
68
+ - Combine two adjacent modules/work packages only when they share the same user flow or data contract and are easier to verify together.
66
69
 
67
70
  4. **Owner checks after each module.**
68
71
  - Inspect changed files manually.
72
+ - Compare behavior against the original product prompt in `./metadata.json`.
69
73
  - Compare behavior against `./docs/design.md` and `./docs/api-spec.md`.
70
74
  - Privately compare against `../.ai/plan.md` for tests, coverage, discoverability, functionality, and module completeness.
71
75
  - Run targeted checks when practical.
@@ -70,8 +70,9 @@ Phase 2 establishes the primary developer session and produces the accepted plan
70
70
  - Provide original prompt, stack/context, accepted questions, requirements breakdown, design, and API spec.
71
71
  - The general subagent must use the packaged `phase-2-execution-planning-prompt.md` as its instruction prompt.
72
72
  - The general subagent must use the packaged `phase-2-plan-template.md` as the required structure for `../.ai/plan.md`.
73
- - Require output to `../.ai/plan.md` and `../.ai/test-coverage.md` when useful.
74
- - Record private plan and coverage artifact paths in metadata and Beads after the subagent returns.
73
+ - Require output to `../.ai/plan.md` and `../.ai/test-coverage.md` when useful.
74
+ - Record private plan and coverage artifact paths in metadata and Beads after the subagent returns.
75
+ - Ensure the private plan can be executed as small sequential developer prompts. Reject plans that require dumping multiple phases or the whole delivery contract into a single developer/Claude prompt.
75
76
 
76
77
  8. Owner accepts or rejects the planning package.
77
78
  - Use `planning-gate`.
@@ -50,6 +50,8 @@ Use the provided plan template.
50
50
 
51
51
  `../.ai/plan.md` must be actionable enough to support one clean human implementation prompt at a time without exposing this file.
52
52
 
53
+ The plan must be sequenced so the owner can prompt the developer/Claude lane one bounded slice at a time. Prefer one work package per prompt. Mark any pair that should be sent together only when two adjacent slices are tightly coupled and easier to verify together. Do not create a plan that requires sending all phases, all modules, or the full delivery workflow to the implementation lane at once.
54
+
53
55
  `../.ai/test-coverage.md`, when written, should summarize planned coverage by module, API/interface, UI flow, risk, and final verification need.
54
56
 
55
57
  If the design or API spec has a material contradiction, record it as a planning exception instead of silently rewriting the contract.
@@ -181,9 +181,11 @@ For each module, acceptance requires:
181
181
 
182
182
  Translate these into human prompts; do not paste this section verbatim.
183
183
 
184
- | Sequence | Human prompt intent | Visible context to mention | Expected completion report |
185
- |---|---|---|---|
186
- | 1 | | | |
184
+ Each row should represent one bounded prompt by default. Mark a combined prompt only when two adjacent rows are tightly coupled and should be implemented/verified together. Never combine all phases, the full plan, or the whole delivery into one developer/Claude prompt.
185
+
186
+ | Sequence | Human prompt intent | Visible context to mention | Expected completion report | Combine with adjacent row? |
187
+ |---|---|---|---|---|
188
+ | 1 | | | | no |
187
189
 
188
190
  ## 13. Plan Closure Checklist
189
191
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "theslopmachine",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "SlopMachine installer and project bootstrap CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",