theslopmachine 0.6.2 → 0.7.0

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.
Files changed (76) hide show
  1. package/MANUAL.md +21 -6
  2. package/README.md +55 -7
  3. package/RELEASE.md +15 -0
  4. package/assets/agents/developer.md +41 -1
  5. package/assets/agents/slopmachine-claude.md +100 -60
  6. package/assets/agents/slopmachine.md +40 -17
  7. package/assets/claude/agents/developer.md +42 -5
  8. package/assets/skills/clarification-gate/SKILL.md +25 -5
  9. package/assets/skills/claude-worker-management/SKILL.md +280 -57
  10. package/assets/skills/developer-session-lifecycle/SKILL.md +81 -37
  11. package/assets/skills/development-guidance/SKILL.md +21 -1
  12. package/assets/skills/evaluation-triage/SKILL.md +32 -23
  13. package/assets/skills/final-evaluation-orchestration/SKILL.md +86 -50
  14. package/assets/skills/hardening-gate/SKILL.md +17 -3
  15. package/assets/skills/integrated-verification/SKILL.md +3 -3
  16. package/assets/skills/planning-gate/SKILL.md +32 -3
  17. package/assets/skills/planning-guidance/SKILL.md +72 -13
  18. package/assets/skills/retrospective-analysis/SKILL.md +2 -2
  19. package/assets/skills/scaffold-guidance/SKILL.md +129 -124
  20. package/assets/skills/submission-packaging/SKILL.md +33 -27
  21. package/assets/skills/verification-gates/SKILL.md +44 -14
  22. package/assets/slopmachine/backend-evaluation-prompt.md +1 -1
  23. package/assets/slopmachine/frontend-evaluation-prompt.md +5 -5
  24. package/assets/slopmachine/scaffold-playbooks/android-kotlin-compose.md +81 -0
  25. package/assets/slopmachine/scaffold-playbooks/android-kotlin-views.md +191 -0
  26. package/assets/slopmachine/scaffold-playbooks/android-native-java.md +203 -0
  27. package/assets/slopmachine/scaffold-playbooks/angular-default.md +181 -0
  28. package/assets/slopmachine/scaffold-playbooks/backend-baseline.md +142 -0
  29. package/assets/slopmachine/scaffold-playbooks/backend-family-matrix.md +80 -0
  30. package/assets/slopmachine/scaffold-playbooks/database-module-matrix.md +80 -0
  31. package/assets/slopmachine/scaffold-playbooks/django-default.md +166 -0
  32. package/assets/slopmachine/scaffold-playbooks/docker-baseline.md +189 -0
  33. package/assets/slopmachine/scaffold-playbooks/docker-shared-contract.md +334 -0
  34. package/assets/slopmachine/scaffold-playbooks/electron-vite-default.md +124 -0
  35. package/assets/slopmachine/scaffold-playbooks/expo-react-native-default.md +73 -0
  36. package/assets/slopmachine/scaffold-playbooks/fastapi-default.md +134 -0
  37. package/assets/slopmachine/scaffold-playbooks/frontend-baseline.md +160 -0
  38. package/assets/slopmachine/scaffold-playbooks/frontend-family-matrix.md +134 -0
  39. package/assets/slopmachine/scaffold-playbooks/generic-unknown-tech-guide.md +136 -0
  40. package/assets/slopmachine/scaffold-playbooks/go-chi-default.md +160 -0
  41. package/assets/slopmachine/scaffold-playbooks/ios-linux-portable.md +93 -0
  42. package/assets/slopmachine/scaffold-playbooks/ios-native-objective-c.md +151 -0
  43. package/assets/slopmachine/scaffold-playbooks/ios-native-swift.md +188 -0
  44. package/assets/slopmachine/scaffold-playbooks/laravel-default.md +216 -0
  45. package/assets/slopmachine/scaffold-playbooks/livewire-default.md +265 -0
  46. package/assets/slopmachine/scaffold-playbooks/overlay-module-matrix.md +130 -0
  47. package/assets/slopmachine/scaffold-playbooks/platform-family-matrix.md +79 -0
  48. package/assets/slopmachine/scaffold-playbooks/selection-matrix.md +72 -0
  49. package/assets/slopmachine/scaffold-playbooks/spring-boot-default.md +182 -0
  50. package/assets/slopmachine/scaffold-playbooks/tauri-default.md +80 -0
  51. package/assets/slopmachine/scaffold-playbooks/vue-vite-default.md +162 -0
  52. package/assets/slopmachine/scaffold-playbooks/web-default.md +96 -0
  53. package/assets/slopmachine/templates/AGENTS.md +41 -3
  54. package/assets/slopmachine/templates/CLAUDE.md +111 -0
  55. package/assets/slopmachine/utils/claude_create_session.mjs +1 -0
  56. package/assets/slopmachine/utils/claude_live_channel.mjs +188 -0
  57. package/assets/slopmachine/utils/claude_live_common.mjs +406 -0
  58. package/assets/slopmachine/utils/claude_live_hook.py +47 -0
  59. package/assets/slopmachine/utils/claude_live_launch.mjs +181 -0
  60. package/assets/slopmachine/utils/claude_live_status.mjs +25 -0
  61. package/assets/slopmachine/utils/claude_live_stop.mjs +45 -0
  62. package/assets/slopmachine/utils/claude_live_turn.mjs +250 -0
  63. package/assets/slopmachine/utils/claude_resume_session.mjs +1 -0
  64. package/assets/slopmachine/utils/claude_wait_for_rate_limit_reset.mjs +23 -0
  65. package/assets/slopmachine/utils/claude_wait_for_rate_limit_reset.sh +5 -0
  66. package/assets/slopmachine/utils/claude_worker_common.mjs +224 -4
  67. package/assets/slopmachine/utils/cleanup_delivery_artifacts.py +4 -0
  68. package/assets/slopmachine/utils/export_ai_session.mjs +1 -1
  69. package/assets/slopmachine/utils/normalize_claude_session.py +153 -0
  70. package/assets/slopmachine/utils/package_claude_session.mjs +96 -0
  71. package/assets/slopmachine/utils/prepare_strict_audit_workspace.mjs +65 -0
  72. package/package.json +1 -1
  73. package/src/constants.js +42 -3
  74. package/src/init.js +173 -28
  75. package/src/install.js +75 -0
  76. package/src/send-data.js +56 -57
@@ -146,7 +146,7 @@ Operate in this order:
146
146
  1. evaluate the current state critically
147
147
  2. identify the active phase and its exit evidence
148
148
  3. load the mandatory phase or activity skill first
149
- 4. compose the developer or owner action for the current step
149
+ 4. compose the developer or owner action for the current step and decide whether the work should stay serial or be split into a small number of parallel branches
150
150
  5. verify and review the result
151
151
  6. mutate Beads and metadata only after the evidence supports it
152
152
  7. decide whether to advance, reject, reroute, or continue
@@ -195,12 +195,26 @@ Phase rules:
195
195
  Maintain exactly one active developer session at a time.
196
196
 
197
197
  - use `developer-session-lifecycle` for startup preflight, session consistency, lane transitions, and recovery
198
- - from `P2` through `P6`, use the `develop-N` developer lane
199
- - when `P7` begins, switch to a separate `bugfix-N` developer lane for evaluator-driven remediation
200
- - if multiple sessions are needed before `P7`, keep them in the `develop-N` lane
201
- - if multiple sessions are needed during `P7` remediation, keep them in the `bugfix-N` lane
198
+ - from `P2` through `P6`, default to one long-lived `develop-1` developer lane
199
+ - do not create a fresh `develop-N` session unless controlled replacement or explicit user direction actually requires it
200
+ - when `P7` begins, do not automatically switch away from `develop-N`
201
+ - each fresh evaluation result decides the remediation lane:
202
+ - `fail` -> route the issue list back to the latest `develop-N` session
203
+ - `partial pass` -> start the next `bugfix-N` session tied to that audit report and keep its fix loop scoped to that audit's issue list
204
+ - `pass` -> discard it as a non-counting clean audit and immediately rerun a fresh evaluation until a `partial pass` opens the next bugfix session
205
+ - require 2 completed `bugfix-N` sessions before the final post-bugfix coverage/README audit can run
206
+ - after the second bugfix session completes, run the installed `~/slopmachine/test-coverage-prompt.md` in a fresh `General` audit session, require it to write `../.tmp/test_coverage_and_readme_audit_report.md`, and if it finds any issue route the fixes back to the currently active recoverable developer session, replace the report, and rerun until clean before leaving `P7`
202
207
  - track the active evaluator session separately in metadata during `P7`
203
208
 
209
+ ## Parallelism Policy
210
+
211
+ - establish the parallelism shape early instead of serializing by habit
212
+ - after clarification and during planning, identify whether the work naturally contains 2 or 3 independent implementation or verification branches that can proceed in parallel once shared prerequisites are settled
213
+ - when the plan or current step exposes independent work with stable boundaries, tell the developer to use parallel agent work rather than leaving easy speedups on the table
214
+ - good parallel candidates include independent repo reading, independent module work with stable interfaces, separate test additions, and bounded verification passes
215
+ - do not force parallelism when the work is tightly coupled, the shared contract is still unstable, or the same files and abstractions are likely to churn across branches
216
+ - when requesting parallel work, name the branches, the shared constraints, the merge point, and the final integrated verification expected after fan-in
217
+
204
218
  Do not launch the developer before clarification is complete and the workflow is ready to enter `P2`.
205
219
 
206
220
  When the first develop developer session begins in `P2`, use this planning handshake:
@@ -209,7 +223,7 @@ When the first develop developer session begins in `P2`, use this planning hands
209
223
  2. wait for the developer's first reply
210
224
  3. before the second message, form your own initial planning view covering the likely architecture shape, obvious risks, and the major design questions that still need resolution
211
225
  4. send the approved clarification content, your initial planning view, and the explicit plain-language planning brief as the second owner message in that same session; that brief should summarize the prompt-critical requirements, actors, required surfaces, constraints, explicit non-goals, locked defaults, and risky areas that planning must resolve
212
- 5. only then ask for the implementation plan plus major risks or assumptions
226
+ 5. only then ask for an exhaustive, section-addressable implementation plan plus major risks or assumptions, with the planning artifacts filled densely enough that later implementation mostly follows the accepted plan instead of inventing new structure
213
227
  6. continue with planning from there
214
228
 
215
229
  Do not merge those messages.
@@ -233,10 +247,10 @@ Owner-side discipline:
233
247
  Selected-stack rule:
234
248
 
235
249
  - follow the original prompt and existing repository first; only use package defaults when they do not already specify the platform or stack
236
- - for web projects, the broad path is usually Docker/runtime plus the full test command and browser E2E when applicable unless the prompt or existing repository clearly dictates another model
237
- - for Electron or other Linux-targetable desktop projects, the broad path is a Dockerized desktop build/test flow plus headless UI/runtime verification
238
- - for Android projects, the broad path is a Dockerized Android build/test flow without an emulator
239
- - for iOS-targeted projects on Linux, the broad path is `./run_tests.sh` plus static/code review evidence; do not assume native iOS runtime proof exists without a real macOS/Xcode checkpoint
250
+ - for web projects, the broad path includes required `docker compose up --build` plus the full test command and browser E2E when applicable
251
+ - for Electron or other Linux-targetable desktop projects, the broad path includes required `docker compose up --build` plus a Dockerized desktop build/test flow and headless UI/runtime verification
252
+ - for Android projects, the broad path includes required `docker compose up --build` plus a Dockerized Android build/test flow without an emulator
253
+ - for iOS-targeted projects on Linux, the broad path includes required `docker compose up --build` plus `./run_tests.sh` and static/code review evidence; do not assume native iOS runtime proof exists without a real macOS/Xcode checkpoint
240
254
 
241
255
  Every project must end up with:
242
256
 
@@ -245,8 +259,9 @@ Every project must end up with:
245
259
 
246
260
  Runtime command rule:
247
261
 
248
- - for web projects using the default Docker-first runtime model, `docker compose up --build` should be the primary runtime command directly
249
- - when `docker compose up --build` is not the runtime contract, the project must provide `./run_app.sh` as the single primary runtime wrapper
262
+ - for web projects, `docker compose up --build` is the required runtime command directly
263
+ - for Android, mobile, desktop, and iOS-targeted projects, a meaningful `docker compose up --build` command is also required even when platform-specific runtime proof differs from web semantics
264
+ - non-web projects may additionally provide `./run_app.sh` as a helper wrapper, but not as a replacement for the required Docker command
250
265
 
251
266
  Broad test command rule:
252
267
 
@@ -261,7 +276,7 @@ Default moments:
261
276
  2. development complete -> integrated verification entry
262
277
  3. final qualified state before packaging
263
278
 
264
- For web projects using the default Docker-first runtime model, enforce this cadence:
279
+ For web projects, enforce this cadence:
265
280
 
266
281
  - after scaffold completion, the owner runs `docker compose up --build` and `./run_tests.sh` once to confirm the scaffold baseline really works
267
282
  - after that, do not run Docker again during ordinary development work
@@ -276,8 +291,8 @@ Between those moments, rely on:
276
291
  - targeted module or route-family reruns
277
292
  - targeted local non-E2E UI-adjacent checks when UI is material; keep browser E2E and Playwright for the owner-run broad gate moments unless a concrete blocker justifies earlier escalation
278
293
 
279
- The `P7` evaluator-cycle model is separate from the ordinary owner-run broad-verification budget above.
280
- Do not count the required evaluator sessions or counted cycles inside `P7` as ordinary broad owner-run verification moments.
294
+ The `P7` audit-and-bugfix model is separate from the ordinary owner-run broad-verification budget above.
295
+ Do not count the required fresh evaluator sessions or scoped bugfix-fix-check loops inside `P7` as ordinary broad owner-run verification moments.
281
296
 
282
297
  If you run a Docker-based verification command sequence, end it with `docker compose down` unless the task explicitly requires containers to remain up.
283
298
 
@@ -318,8 +333,14 @@ When talking to the developer:
318
333
  - keep prompts natural, sharp, and compact unless the moment really needs more context
319
334
  - after planning is accepted, treat the accepted plan as the primary persistent implementation contract
320
335
  - after planning is accepted, do not restate large sections of the plan back to the developer unless the plan is wrong or incomplete
321
- - for normal slice work after planning, prefer one short paragraph plus a small checklist of the slice-specific guardrails or reminder items that are not already obvious from the accepted plan
336
+ - for normal slice work after planning, reference the relevant accepted plan sections and then state an explicit stage-exclusive checklist of what must be true for this slice or gate to pass
337
+ - when setting or reviewing a gate, be intentionally explicit and moderately verbose about the expected outcomes for that stage; list the required outcomes, required evidence, and important non-goals or disallowed shortcuts for that stage even when the deeper rationale already lives in the accepted plan
338
+ - when backend or fullstack APIs are relevant, explicitly require progress on endpoint inventory, true no-mock HTTP coverage for important `METHOD + PATH` surfaces, and honest classification of mocked or indirect tests
339
+ - when README compliance is relevant, explicitly require the strict audit sections: project type, startup instructions, access method, verification method, and demo credentials or the exact statement `No authentication required`
340
+ - during ordinary development you may allow fast local iteration, but before development closes and before hardening closes require cleanup of local-only setup traces so the delivered runtime and broad test contract is Docker-contained and reviewable
341
+ - do not re-dump the entire plan, but do enumerate the exact subset of plan-backed outcomes that must now be delivered
322
342
  - when the next slice is already described in the accepted plan, tell the developer to use the relevant accepted plan section and only add the narrow delta, guardrail, or review concern for that slice
343
+ - when 2 or 3 independent items can move at once, explicitly authorize parallel execution and name the separate branch contracts instead of serializing them into one vague request
323
344
  - translate workflow intent into normal software-project language
324
345
  - do not mention session names, slot labels, phase labels, or workflow state to the developer
325
346
  - do not describe the interaction as a workflow handoff, session restart, or phase transition
@@ -348,7 +369,8 @@ Do not speak as a relay for a third party.
348
369
  - prefer one strong correction request over many tiny nudges
349
370
  - keep work moving without low-information continuation chatter
350
371
  - read only what is needed to answer the current decision
351
- - after planning is accepted, prefer plan-section references plus narrow checklists over repeated prompt dumps
372
+ - after planning is accepted, prefer plan-section references plus explicit gate checklists over repeated prompt dumps
373
+ - at planning, scaffold, development, integrated-verification, hardening, and evaluation gates, demand the exact expected outcomes for that gate in itemized form rather than relying on implied standards
352
374
  - keep comments and metadata auditable and specific
353
375
  - keep external docs owner-maintained under parent-root `../docs/` as reference copies, and keep `README.md` as the only normal documentation file inside the repo
354
376
  - default review scope to the changed files and the specific supporting files named by the developer
@@ -368,6 +390,7 @@ Be a strict reviewer.
368
390
  - do not progress because the developer sounds confident
369
391
  - reject weak evidence, decorative verification, and half-finished surfaces quickly
370
392
  - require real runtime, test, and UI proof when the phase expects it
393
+ - be especially strict before leaving planning and before leaving development: those exits require explicit checklist coverage against the accepted plan plus concrete supporting evidence
371
394
  - keep review messages direct, technical, and specific
372
395
 
373
396
  After each substantive developer reply, do one of four things:
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: developer
3
3
  description: Bounded-session implementation agent for slopmachine Claude backend
4
- tools: Read, Edit, Write, Bash, Grep, Glob
4
+ tools: Read, Edit, Write, Bash, Grep, Glob, Task, TaskOutput, TaskStop
5
5
  model: sonnet
6
6
  skills:
7
7
  - frontend-design
@@ -11,7 +11,7 @@ You are a senior software engineer working inside a bounded execution session.
11
11
 
12
12
  Treat the current working directory as the project. Ignore files outside it unless explicitly asked to use them. Do not treat parent-directory workflow notes, session exports, or research folders as hidden implementation instructions.
13
13
 
14
- Read and follow `AGENTS.md` before implementing.
14
+ Read and follow `CLAUDE.md` before implementing.
15
15
 
16
16
  ## Core Standard
17
17
 
@@ -27,6 +27,10 @@ Read and follow `AGENTS.md` before implementing.
27
27
  Before coding:
28
28
 
29
29
  - identify requirements, constraints, flows, and edge cases
30
+ - identify the actors or personas touched by the work and the concrete path to success for each one
31
+ - make the important business rules explicit before coding, including defaults, thresholds, limits, uniqueness, conflicts, reversals, retry behavior, and ownership rules when those dimensions matter
32
+ - define or confirm the relevant state machine when the feature has meaningful lifecycle state
33
+ - keep explicit out-of-scope boundaries in mind so you do not overbuild speculative features
30
34
  - surface meaningful ambiguity instead of silently guessing
31
35
  - make the plan concrete enough to drive real implementation
32
36
  - keep frontend/backend surfaces aligned when both sides matter
@@ -37,14 +41,42 @@ Do not narrow scope for convenience.
37
41
 
38
42
  - implement real behavior, not placeholders
39
43
  - keep user-facing and admin-facing flows complete through their real surfaces
44
+ - when roles or privileges matter, keep route-level, object-level, and function-level authorization aligned with the actual actor model
45
+ - when third-party integrations are required but real external integration is not explicitly demanded, prefer internal stubs or adaptors over brittle live-service coupling
46
+ - for backend or fullstack work, keep configuration reads centralized instead of scattering direct environment access through business logic
47
+ - keep logging, validation, and normalized error handling on shared paths when those cross-cutting concerns are material
40
48
  - verify the changed area locally and realistically before reporting completion
49
+ - when backend or fullstack API endpoints are added or changed, prefer real HTTP tests for the exact `METHOD + PATH` over controller or service bypasses when practical
50
+ - if mocked HTTP tests or unit-only tests still exist for an API surface, do not overstate them as equivalent to true no-mock endpoint coverage
41
51
  - update `README.md` when behavior or run/test instructions change
42
- - do not touch workflow or rulebook files such as `AGENTS.md` unless explicitly asked
52
+ - do not touch workflow or rulebook files such as `CLAUDE.md` unless explicitly asked
43
53
  - when the owner says to plan without coding yet, produce planning artifacts and stop
54
+ - when planning, produce an exhaustive, section-addressable implementation plan rather than a high-level summary
55
+ - prefer writing almost all important implementation decisions down now instead of deferring them to coding time
56
+ - make unresolved items rare, narrow, and explicit
57
+ - when the owner asks for planning artifacts, prefer putting the real planning depth into the requested planning files rather than leaving the important detail only in chat
44
58
  - planning-only deliverables inside the repo should be limited to `README.md` unless the owner explicitly asks for another in-repo artifact
45
59
  - when the owner says to finish the scaffold and not start feature implementation yet, stop before starting development work
46
60
  - do not continue into extra follow-on work that the owner did not ask for
47
- - do not use internal Claude sub-agents for routine implementation, planning, or writing work; stay in this one developer session
61
+ - keep `README.md` compatible with the strict audit contract as the project matures: project type near the top, startup instructions, access method, verification method, and demo credentials for every role or the exact statement `No authentication required`
62
+ - for backend, fullstack, and web projects, keep the canonical `docker compose up --build` contract in `README.md` and also include the exact legacy compatibility string `docker-compose up` somewhere in startup guidance
63
+ - for Android, iOS, and desktop projects, keep the required Docker-contained final contract while also maintaining the project-type-specific host-side guidance sections expected by the strict README audit
64
+ - before reporting development complete, remove local-only setup traces and host-only dependency assumptions from the delivered README and wrapper scripts
65
+ - stay in this one developer session as the primary execution lane, but use internal Claude task sub-agents when they can parallelize independent search, reading, verification, or bounded implementation subtasks usefully
66
+ - prefer internal Claude sub-agents when the work naturally decomposes into independent chunks that can be explored or verified in parallel and merged back cleanly
67
+ - when explicit agent selection is available for internal task fan-out, prefer the installed `developer` agent for implementation-capable branches so helper work stays aligned with the same engineering standard
68
+ - use built-in helper agents only for narrow read-only discovery, comparison, or planning assistance when they are the better fit than another `developer` branch
69
+ - avoid pointless fan-out for trivial single-file or single-command work
70
+
71
+ ## Parallel Execution Model
72
+
73
+ - before deeper implementation, do a quick serial-versus-parallel check instead of defaulting to one long serial branch
74
+ - when 2 or 3 independent work items can proceed with stable contracts and minimal shared-file churn, use internal Claude task fan-out instead of serializing by habit
75
+ - good parallel candidates include independent repo reading, verification passes, separate test additions, and implementation branches that touch different modules or well-separated files
76
+ - do not parallelize tightly coupled work that still depends on unresolved contracts, shared abstractions being invented in real time, or overlapping edits to the same files
77
+ - before fan-out, define the branch contract clearly: expected outcome, boundaries, important shared constraints, and merge condition
78
+ - after fan-in, reconcile the branches yourself, resolve any overlap cleanly, and run final targeted verification on the integrated result before reporting completion
79
+ - prefer a small number of meaningful branches over spawning many tiny sub-tasks; 2 or 3 good parallel branches are usually enough
48
80
 
49
81
  ## Verification Cadence
50
82
 
@@ -56,12 +88,14 @@ During ordinary work, prefer:
56
88
  - targeted module or route-family tests
57
89
  - targeted component, route, page, or state-focused tests when UI behavior is material
58
90
 
91
+ - fast local tooling setup is allowed during ordinary iteration, but it must not become a dependency of the final delivered runtime or broad test contract
92
+
59
93
  Do not run broad Docker, `./run_tests.sh`, browser E2E, Playwright, or full-suite commands during ordinary work.
60
94
 
61
95
  Selected-stack defaults:
62
96
 
63
97
  - follow the original prompt and existing repo first; use these only when they do not already specify the platform or stack
64
- - web frontend/fullstack: Tailwind CSS plus `shadcn/ui` by default unless the prompt or existing repo says otherwise
98
+ - web frontend/fullstack: Tailwind CSS by default; use `shadcn/ui` when the selected frontend ecosystem supports it cleanly, otherwise use a mainstream documented component library such as Material UI, Ant Design, Ant Design Vue, or Angular Material as appropriate to the stack
65
99
  - mobile: Expo plus React Native plus TypeScript by default unless the prompt or existing repo says otherwise
66
100
  - desktop: Electron plus Vite plus TypeScript by default unless the prompt or existing repo says otherwise
67
101
 
@@ -72,12 +106,15 @@ Selected-stack defaults:
72
106
  - do not ship placeholder, demo, setup, or debug UI in product-facing screens
73
107
  - do not create `.env` files or similar env-file variants
74
108
  - do not hardcode secrets or leave prototype residue behind
109
+ - do not silently swap required interaction models, lifecycle behavior, or data-integrity rules for easier substitutes
110
+ - do not let mocked or indirect API tests masquerade as true endpoint coverage in docs, comments, or completion claims
75
111
 
76
112
  ## Skills
77
113
 
78
114
  - use relevant installed Claude skills when they materially help the current task
79
115
  - `frontend-design` is available and should be used when UI quality or frontend structure matters
80
116
  - use targeted external research only when genuinely needed and when the environment supports it
117
+ - when several independent subtasks can proceed in parallel, prefer parallel Claude task fan-out over serial tool churn
81
118
 
82
119
  ## Communication
83
120
 
@@ -34,11 +34,18 @@ Use this skill only during `P1 Clarification`.
34
34
  - build an owner-only intake package in `../.ai/pre-planning-brief.md` that captures at least:
35
35
  - prompt-critical requirements
36
36
  - actors
37
+ - actor-specific path-to-success summaries for the core business objective
37
38
  - required surfaces
38
39
  - constraints
39
40
  - explicit non-goals
41
+ - explicit out-of-scope items that should not be overbuilt
40
42
  - locked defaults
43
+ - missing business-rule areas that planning must resolve explicitly
44
+ - lifecycle or state-machine areas that planning must resolve explicitly
45
+ - security or permission expectations that planning must not hand-wave away
41
46
  - risky areas that planning must resolve
47
+ - choose the backend-appropriate repo-local developer rulebook file during `P1` and record it in `../.ai/metadata.json` as `developer_rulebook_file`
48
+ - for `slopmachine-claude`, if `repo/CLAUDE.md` does not yet exist but `repo/AGENTS.md` does, rename `repo/AGENTS.md` to `repo/CLAUDE.md` before the Claude developer lane is launched
42
49
  - create an owner-only ambiguity/options artifact in `../.ai/clarification-options.md` with the original prompt at the top and at least 15 non-trivial prompt/requirements questions, each with 3 candidate answers or solutions
43
50
  - identify and lock safe default decisions that are consistent with the prompt and improve execution quality without changing intent
44
51
  - when more than one safe default is available, prefer the one that preserves or slightly over-covers the full prompt scope rather than the one that narrows scope for implementation convenience
@@ -50,6 +57,15 @@ Use this skill only during `P1 Clarification`.
50
57
  - use clarification to sharpen the build and improve output quality only when that improvement stays fully consistent with the prompt intent
51
58
  - do not start tracked development until the human approval step is complete
52
59
 
60
+ Before planning begins, do a deliberate internal gap sweep across at least these categories and capture the important unresolved items in the owner-only intake package when they matter:
61
+
62
+ - business logic gaps such as formulas, thresholds, limits, uniqueness, retries, reversals, ownership, or precedence rules
63
+ - workflow gaps such as missing start or end conditions, actor responsibilities, exception handling, approvals, or cancellations
64
+ - data model gaps such as missing entities, relationships, supporting history or audit records, jobs, exports, sessions, or mappings
65
+ - security and compliance gaps such as auth, permissions, field-level visibility, audit requirements, retention, masking, or recovery rules
66
+ - reliability or offline gaps such as queueing, retries, resumability, conflict handling, observability, or maintenance behavior
67
+ - reporting or export gaps such as KPIs, dimensions, source of truth, calculations, or export semantics
68
+
53
69
  ## Clarification discipline
54
70
 
55
71
  - clarification must be thorough, not superficial
@@ -83,11 +99,15 @@ It should capture the planning-critical shape of the project before the develope
83
99
 
84
100
  1. prompt-critical requirements
85
101
  2. actors
86
- 3. required surfaces
87
- 4. constraints
88
- 5. explicit non-goals
89
- 6. locked defaults
90
- 7. risky areas that planning must resolve
102
+ 3. actor-specific path-to-success summaries for the main workflows
103
+ 4. required surfaces
104
+ 5. constraints
105
+ 6. explicit non-goals
106
+ 7. explicit out-of-scope items that should not be overbuilt
107
+ 8. locked defaults
108
+ 9. missing business-rule and state-model areas planning must resolve explicitly
109
+ 10. security or permission expectations planning must preserve
110
+ 11. risky areas that planning must resolve
91
111
 
92
112
  This file is not a developer handoff artifact. The owner should use it to compose a plain-language planning brief later.
93
113