nurosys-agents 2.0.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 (106) hide show
  1. package/.agent/INSTRUCTIONS.md +82 -0
  2. package/.agent/README.md +483 -0
  3. package/.agent/backend/skills/architect/SKILL.md +436 -0
  4. package/.agent/backend/skills/auth-and-permissions/SKILL.md +168 -0
  5. package/.agent/backend/skills/brainstorm/SKILL.md +127 -0
  6. package/.agent/backend/skills/code-reviewer/SKILL.md +324 -0
  7. package/.agent/backend/skills/create-blueprint/SKILL.md +650 -0
  8. package/.agent/backend/skills/debug-issue/SKILL.md +53 -0
  9. package/.agent/backend/skills/explore-codebase/SKILL.md +45 -0
  10. package/.agent/backend/skills/quick-execute/SKILL.md +99 -0
  11. package/.agent/backend/skills/refactor-safely/SKILL.md +46 -0
  12. package/.agent/backend/skills/security-assessment/SKILL.md +174 -0
  13. package/.agent/backend/workflows/module-runner.claude.md +226 -0
  14. package/.agent/backend/workflows/module-runner.codex.md +155 -0
  15. package/.agent/backend/workflows/module-runner.cursor.md +212 -0
  16. package/.agent/frontend/skills/architect/SKILL.md +644 -0
  17. package/.agent/frontend/skills/auth-and-permissions/SKILL.md +43 -0
  18. package/.agent/frontend/skills/create-blueprint/SKILL.md +635 -0
  19. package/.agent/frontend/skills/debug-issue/SKILL.md +28 -0
  20. package/.agent/frontend/skills/explore-codebase/SKILL.md +29 -0
  21. package/.agent/frontend/skills/feature-workflow/SKILL.md +61 -0
  22. package/.agent/frontend/skills/react-quality-review/SKILL.md +126 -0
  23. package/.agent/frontend/skills/react-quality-review/examples.md +24 -0
  24. package/.agent/frontend/skills/react-quality-review/rules/_sections.md +26 -0
  25. package/.agent/frontend/skills/react-quality-review/rules/_template.md +28 -0
  26. package/.agent/frontend/skills/react-quality-review/rules/advanced-event-handler-refs.md +55 -0
  27. package/.agent/frontend/skills/react-quality-review/rules/advanced-init-once.md +42 -0
  28. package/.agent/frontend/skills/react-quality-review/rules/react-rules-calling.md +66 -0
  29. package/.agent/frontend/skills/react-quality-review/rules/react-rules-hooks.md +91 -0
  30. package/.agent/frontend/skills/react-quality-review/rules/react-rules-purity.md +121 -0
  31. package/.agent/frontend/skills/react-quality-review/rules/rendering-activity.md +26 -0
  32. package/.agent/frontend/skills/react-quality-review/rules/rendering-conditional-render.md +40 -0
  33. package/.agent/frontend/skills/react-quality-review/rules/rendering-content-visibility.md +38 -0
  34. package/.agent/frontend/skills/react-quality-review/rules/rendering-hoist-jsx.md +46 -0
  35. package/.agent/frontend/skills/react-quality-review/rules/rendering-usetransition-loading.md +75 -0
  36. package/.agent/frontend/skills/react-quality-review/rules/rerender-defer-reads.md +39 -0
  37. package/.agent/frontend/skills/react-quality-review/rules/rerender-dependencies.md +45 -0
  38. package/.agent/frontend/skills/react-quality-review/rules/rerender-derived-state-no-effect.md +40 -0
  39. package/.agent/frontend/skills/react-quality-review/rules/rerender-derived-state.md +29 -0
  40. package/.agent/frontend/skills/react-quality-review/rules/rerender-functional-setstate.md +74 -0
  41. package/.agent/frontend/skills/react-quality-review/rules/rerender-lazy-state-init.md +58 -0
  42. package/.agent/frontend/skills/react-quality-review/rules/rerender-memo-with-default-value.md +38 -0
  43. package/.agent/frontend/skills/react-quality-review/rules/rerender-memo.md +44 -0
  44. package/.agent/frontend/skills/react-quality-review/rules/rerender-move-effect-to-event.md +45 -0
  45. package/.agent/frontend/skills/react-quality-review/rules/rerender-no-inline-components.md +82 -0
  46. package/.agent/frontend/skills/react-quality-review/rules/rerender-simple-expression-in-memo.md +35 -0
  47. package/.agent/frontend/skills/react-quality-review/rules/rerender-transitions.md +40 -0
  48. package/.agent/frontend/skills/react-quality-review/rules/rerender-use-ref-transient-values.md +73 -0
  49. package/.agent/frontend/skills/refactor-safely/SKILL.md +29 -0
  50. package/.agent/frontend/skills/vuexy-component-guide/SKILL.md +369 -0
  51. package/.agent/frontend/skills/vuexy-component-guide/examples.md +662 -0
  52. package/.agent/frontend/skills/vuexy-component-guide/reference.md +1036 -0
  53. package/.agent/frontend/workflows/build-feature-react.workflow.md +82 -0
  54. package/.agent/frontend/workflows/feature-module-runner.md +101 -0
  55. package/.agent/monolith/skills/architect/SKILL.md +648 -0
  56. package/.agent/monolith/skills/auth-and-permissions/SKILL.md +43 -0
  57. package/.agent/monolith/skills/code-reviewer/SKILL.md +281 -0
  58. package/.agent/monolith/skills/create-blueprint/SKILL.md +635 -0
  59. package/.agent/monolith/skills/debug-issue/SKILL.md +28 -0
  60. package/.agent/monolith/skills/explore-codebase/SKILL.md +29 -0
  61. package/.agent/monolith/skills/feature-workflow/SKILL.md +61 -0
  62. package/.agent/monolith/skills/react-quality-review/SKILL.md +126 -0
  63. package/.agent/monolith/skills/react-quality-review/examples.md +24 -0
  64. package/.agent/monolith/skills/react-quality-review/rules/_sections.md +26 -0
  65. package/.agent/monolith/skills/react-quality-review/rules/_template.md +28 -0
  66. package/.agent/monolith/skills/react-quality-review/rules/advanced-event-handler-refs.md +55 -0
  67. package/.agent/monolith/skills/react-quality-review/rules/advanced-init-once.md +42 -0
  68. package/.agent/monolith/skills/react-quality-review/rules/react-rules-calling.md +66 -0
  69. package/.agent/monolith/skills/react-quality-review/rules/react-rules-hooks.md +91 -0
  70. package/.agent/monolith/skills/react-quality-review/rules/react-rules-purity.md +121 -0
  71. package/.agent/monolith/skills/react-quality-review/rules/rendering-activity.md +26 -0
  72. package/.agent/monolith/skills/react-quality-review/rules/rendering-conditional-render.md +40 -0
  73. package/.agent/monolith/skills/react-quality-review/rules/rendering-content-visibility.md +38 -0
  74. package/.agent/monolith/skills/react-quality-review/rules/rendering-hoist-jsx.md +46 -0
  75. package/.agent/monolith/skills/react-quality-review/rules/rendering-usetransition-loading.md +75 -0
  76. package/.agent/monolith/skills/react-quality-review/rules/rerender-defer-reads.md +39 -0
  77. package/.agent/monolith/skills/react-quality-review/rules/rerender-dependencies.md +45 -0
  78. package/.agent/monolith/skills/react-quality-review/rules/rerender-derived-state-no-effect.md +40 -0
  79. package/.agent/monolith/skills/react-quality-review/rules/rerender-derived-state.md +29 -0
  80. package/.agent/monolith/skills/react-quality-review/rules/rerender-functional-setstate.md +74 -0
  81. package/.agent/monolith/skills/react-quality-review/rules/rerender-lazy-state-init.md +58 -0
  82. package/.agent/monolith/skills/react-quality-review/rules/rerender-memo-with-default-value.md +38 -0
  83. package/.agent/monolith/skills/react-quality-review/rules/rerender-memo.md +44 -0
  84. package/.agent/monolith/skills/react-quality-review/rules/rerender-move-effect-to-event.md +45 -0
  85. package/.agent/monolith/skills/react-quality-review/rules/rerender-no-inline-components.md +82 -0
  86. package/.agent/monolith/skills/react-quality-review/rules/rerender-simple-expression-in-memo.md +35 -0
  87. package/.agent/monolith/skills/react-quality-review/rules/rerender-transitions.md +40 -0
  88. package/.agent/monolith/skills/react-quality-review/rules/rerender-use-ref-transient-values.md +73 -0
  89. package/.agent/monolith/skills/refactor-safely/SKILL.md +29 -0
  90. package/.agent/monolith/skills/vuexy-component-guide/SKILL.md +369 -0
  91. package/.agent/monolith/skills/vuexy-component-guide/examples.md +662 -0
  92. package/.agent/monolith/skills/vuexy-component-guide/reference.md +1036 -0
  93. package/.agent/monolith/workflows/add-new-api-feature-module.md +63 -0
  94. package/.agent/monolith/workflows/backend-quality-review.md +27 -0
  95. package/.agent/monolith/workflows/build-feature-backend.workflow.md +91 -0
  96. package/.agent/monolith/workflows/build-feature-react.workflow.md +82 -0
  97. package/.agent/monolith/workflows/feature-module-runner.md +97 -0
  98. package/.agent/templates/FEATURE_PLAN.md +42 -0
  99. package/.agent/templates/MODULE.md +45 -0
  100. package/.agent/templates/REVIEW_REPORT.md +44 -0
  101. package/.agent/templates/SECURITY_REPORT.md +70 -0
  102. package/.agent/templates/TEST_PLAN.md +49 -0
  103. package/README.md +131 -0
  104. package/package.json +42 -0
  105. package/scripts/setup-rules.js +224 -0
  106. package/scripts/setup.js +518 -0
@@ -0,0 +1,155 @@
1
+ ---
2
+ name: module-runner
3
+ description: Sequential per-module executor for backend features planned by `/architect`. Runs each module's prompt through a foreground pipeline (build → test → review → fix → security audit → fix → commit → push). Codex variant — runs all phases in a single context (no native sub-agent spawning). Trigger with `/module-runner <feature-folder>`.
4
+ ---
5
+
6
+ # Skill: module-runner (Codex variant)
7
+
8
+ Codex does not have native in-session sub-agent spawning (no equivalent of Claude Code's Task tool or Cursor's subagents API callable from within an agent run). This variant runs the same per-module pipeline **sequentially in a single context**.
9
+
10
+ **Limitation acknowledgement:** On long features (10+ modules), this variant will accumulate context as it goes — review/audit phases load diffs and project-memory each iteration. For features with many modules, prefer Claude Code or Cursor where context isolation is native.
11
+
12
+ The pipeline contract (build → test → review → fix → security → fix → commit → push) is identical; only the execution model differs.
13
+
14
+ ---
15
+
16
+ ## Input
17
+
18
+ ```
19
+ /module-runner <feature-folder>
20
+ ```
21
+
22
+ Where `<feature-folder>` is `documentation/features/<feature_name>/`.
23
+
24
+ ---
25
+
26
+ ## Phase 0 — Validate input
27
+
28
+ 1. Folder exists, module files present, sorted by `<N>`
29
+ 2. `_MODULE_WISE_PLAN.md` exists
30
+ 3. On a non-`main` branch
31
+ 4. `project-memory/` intact
32
+
33
+ Confirm with the user before starting. Specifically warn:
34
+ > "Codex variant: all phases run in this single conversation. For features with 10+ modules, context rot is possible. Continue?"
35
+
36
+ ---
37
+
38
+ ## Per-module pipeline
39
+
40
+ For each module file in order:
41
+
42
+ ### Step 1 — Implement
43
+
44
+ In this same conversation:
45
+
46
+ 1. Read the full module spec: `documentation/features/<feature_name>/<feature>_MODULE_<N>_<MODULE_NAME>.md`
47
+ 2. Implement every file in the New Files / Modified Files tables.
48
+ 3. Honor constitution rules and auth approach inlined in §1.
49
+ 4. Use Serena for symbol-level edits, raw Write for new files.
50
+ 5. No placeholder code. No skipped validation/auth/error handling.
51
+
52
+ Track files changed in working memory (you'll need them for commit message in Step 8).
53
+
54
+ ### Step 2 — Build + Test
55
+
56
+ ```bash
57
+ npm run build
58
+ npm test
59
+ ```
60
+
61
+ If pass → Step 3. If fail:
62
+ - Inspect failures.
63
+ - Fix.
64
+ - Re-run.
65
+ - Max 2 fix iterations. On 3rd failure, **STOP**.
66
+
67
+ ### Step 3 — Code review
68
+
69
+ Invoke the `/code-reviewer` skill (foreground, same context). Capture findings.
70
+
71
+ Verdict:
72
+ - `clean` → Step 5
73
+ - `fix_required` → Step 4
74
+ - `block` → **STOP**
75
+
76
+ ### Step 4 — Apply code-review fixes
77
+
78
+ Apply BLOCKER, HIGH, and required-MED findings from the review. Skip LOW.
79
+
80
+ Re-run `npm run build && npm test`. If pass → Step 5. If fail → Step 2 retry logic (max 2 total).
81
+
82
+ ### Step 5 — Security audit
83
+
84
+ Invoke the `/security-assessment` skill, scope = diff. Capture findings.
85
+
86
+ Verdict:
87
+ - `clean` → Step 7
88
+ - `fix_required` → Step 6
89
+ - `block` → **STOP**
90
+
91
+ ### Step 6 — Apply security fixes
92
+
93
+ Apply CRITICAL and HIGH findings. Skip MEDIUM/LOW unless tagged `must_fix`.
94
+
95
+ Re-run build/test. If pass → Step 7. If fail → **STOP** (no auto-retry).
96
+
97
+ ### Step 7 — Update project-memory
98
+
99
+ 1. Append to `project-memory/core-memory.md`:
100
+ > `<feature_name>: Module <N> completed (<one-line>); next: Module <N+1>.`
101
+ 2. Update `project-memory/repo-map.md` if new modules/routes added.
102
+ 3. Create/update `MODULE.md` in the module's source directory from `.agent/templates/MODULE.md`.
103
+
104
+ ### Step 8 — Commit + push
105
+
106
+ ```bash
107
+ git add .
108
+ git commit -m "feat(MODULE_<N>): <one-line description>"
109
+ git push origin HEAD
110
+ ```
111
+
112
+ If push fails, **STOP**.
113
+
114
+ ### Step 9 — Context-rot mitigation (Codex-specific)
115
+
116
+ Before moving to the next module:
117
+
118
+ - Discard any large intermediate artifacts from memory (review reports, security reports) — they're already saved as files if needed.
119
+ - Re-summarize for yourself in one short paragraph: "Module <N> done. Files: [count]. Next: Module <N+1> covers [one-line]."
120
+
121
+ This is the best Codex can do without true context isolation. It does not fully solve context rot but reduces it.
122
+
123
+ ### Step 10 — Next module
124
+
125
+ Return to Step 1.
126
+
127
+ ---
128
+
129
+ ## After all modules
130
+
131
+ Print final summary. Do not open a PR.
132
+
133
+ ---
134
+
135
+ ## Failure modes
136
+
137
+ Same STOP conditions as the other variants:
138
+ - Build/test fail after 2 fixer iterations
139
+ - Review or security verdict = `block`
140
+ - Security fixer build/test failure
141
+ - `git push` failure
142
+
143
+ Resume: re-run `/module-runner <feature-folder>`. Skip modules already marked completed in `core-memory.md`.
144
+
145
+ ---
146
+
147
+ ## Do not
148
+
149
+ - Skip build/test between phases
150
+ - Auto-retry beyond specified limits
151
+ - Squash commits
152
+ - Push to `main` / `master`
153
+ - Open a PR
154
+ - Bypass the review or security audit phases
155
+ - Continue past 10 modules without warning the user about context rot
@@ -0,0 +1,212 @@
1
+ ---
2
+ name: module-runner
3
+ description: Autonomous per-module executor for backend features planned by `/architect`. Sequentially runs each module's prompt through a subagent pipeline (build → test → review → fix → security audit → fix → commit → push), keeping the main agent's context clean. Trigger with `/module-runner <feature-folder>`. Cursor variant — uses Cursor subagents (https://cursor.com/docs/subagents) to spawn independent-context delegates.
4
+ disable-model-invocation: false
5
+ ---
6
+
7
+ # Skill: module-runner (Cursor variant)
8
+
9
+ The main agent here is the **orchestrator**. It does not implement, review, or audit anything itself. It dispatches each per-module phase to a Cursor subagent (fresh context per https://cursor.com/docs/subagents) and acts on the structured result.
10
+
11
+ The pipeline is identical to the Claude Code variant; only the sub-agent invocation syntax differs.
12
+
13
+ ---
14
+
15
+ ## Required Cursor subagents
16
+
17
+ This skill assumes the following Cursor subagents are configured (created during `npm exec nurosys-agent-setup`):
18
+
19
+ | Subagent name | Purpose | Maps to |
20
+ |---|---|---|
21
+ | `/implementer` | Implements a single module per its prompt file | Step 1 |
22
+ | `/code-reviewer` | Reviews a diff and returns findings JSON | Step 3 |
23
+ | `/code-fixer` | Applies code-review findings to the diff | Step 4 |
24
+ | `/security-auditor` | Audits a diff for security issues | Step 5 |
25
+ | `/security-fixer` | Applies CRITICAL/HIGH security findings | Step 6 |
26
+ | `/build-test-fixer` | Fixes build/test failures | Step 2 retry |
27
+
28
+ If any of these subagents are missing in the Cursor workspace, **STOP** at Phase 0 and tell the user:
29
+ > "This workspace is missing one or more required Cursor subagents: [list]. Run `npm exec nurosys-agent-setup` to install them."
30
+
31
+ These subagents are thin wrappers — each is a Cursor subagent that delegates to the same SKILL.md files used by Claude Code (`/code-reviewer`, `/security-assessment`, `/auth-and-permissions`). The subagent definition lives in `.cursor/subagents/<name>.md` (created by `setup.js`).
32
+
33
+ ---
34
+
35
+ ## Input
36
+
37
+ The user invokes:
38
+ ```
39
+ /module-runner <feature-folder>
40
+ ```
41
+
42
+ Where `<feature-folder>` is `documentation/features/<feature_name>/`, containing:
43
+ - `<feature>_MODULE_WISE_PLAN.md`
44
+ - `<feature>_MODULE_<N>_<MODULE_NAME>.md` per module
45
+
46
+ ---
47
+
48
+ ## Phase 0 — Validate input
49
+
50
+ Same as Claude Code variant:
51
+ 1. Folder exists, module files present, sorted by `<N>`
52
+ 2. `_MODULE_WISE_PLAN.md` exists
53
+ 3. On a non-`main` branch
54
+ 4. `project-memory/` intact
55
+ 5. All required Cursor subagents are configured (see table above)
56
+
57
+ Confirm with user before starting.
58
+
59
+ ---
60
+
61
+ ## Per-module pipeline
62
+
63
+ For each module file in order, run this pipeline. Each numbered step delegates to a Cursor subagent (independent context) **unless marked [Main]**.
64
+
65
+ ### Step 1 — Implement
66
+
67
+ Delegate to `/implementer`:
68
+
69
+ > /implementer module=<N> feature=<feature_name>
70
+ >
71
+ > Read the full spec from: `documentation/features/<feature_name>/<feature>_MODULE_<N>_<MODULE_NAME>.md`.
72
+ >
73
+ > Execution rules:
74
+ > - No placeholder code. Implement every file in the New Files / Modified Files tables.
75
+ > - Honor constitution rules and auth approach inlined in the prompt's §1.
76
+ > - Use Serena for symbol-level edits; raw write for new files.
77
+ > - When done, return JSON: `{ "files_changed": [...], "summary": "<one paragraph>", "blockers": [] }`.
78
+ > - Do NOT run tests, do NOT commit.
79
+
80
+ Wait for completion (foreground). If `blockers` is non-empty, **STOP** and surface to user.
81
+
82
+ ### Step 2 — Build + Test [Main]
83
+
84
+ ```bash
85
+ npm run build
86
+ npm test
87
+ ```
88
+
89
+ If both pass → Step 3.
90
+
91
+ If either fails, delegate to `/build-test-fixer`:
92
+ > /build-test-fixer module=<N>
93
+ >
94
+ > Failure output below. The recently changed files are: [from Step 1's `files_changed`]. Fix the failures.
95
+ > Return `{ "fixed": true|false, "summary": "..." }`.
96
+
97
+ Re-run build/test. Max 2 fixer iterations. On 3rd failure, **STOP**.
98
+
99
+ ### Step 3 — Code review
100
+
101
+ Delegate to `/code-reviewer`:
102
+
103
+ > /code-reviewer mode=subagent scope=diff module=<N>
104
+ >
105
+ > Return findings JSON per the `/code-reviewer` SKILL.md sub-agent contract.
106
+
107
+ Parse the verdict:
108
+ - `clean` → Step 5
109
+ - `fix_required` → Step 4
110
+ - `block` → **STOP**
111
+
112
+ ### Step 4 — Code fixer
113
+
114
+ Delegate to `/code-fixer`:
115
+
116
+ > /code-fixer module=<N>
117
+ >
118
+ > Findings JSON: [paste from Step 3]
119
+ >
120
+ > Apply BLOCKER, HIGH, and required-MED findings. Skip LOW and optional. Use Serena symbolic edits where possible.
121
+ > Return `{ "fixed": [...], "skipped": [...], "summary": "..." }`.
122
+
123
+ Re-run build/test. If pass → Step 5. If fail → treat as Step 2 retry (max 2).
124
+
125
+ ### Step 5 — Security audit
126
+
127
+ Delegate to `/security-auditor`:
128
+
129
+ > /security-auditor mode=subagent scope=diff module=<N>
130
+ >
131
+ > Return findings JSON per `/security-assessment` SKILL.md sub-agent contract.
132
+
133
+ Parse the verdict:
134
+ - `clean` → Step 7
135
+ - `fix_required` → Step 6
136
+ - `block` → **STOP**
137
+
138
+ ### Step 6 — Security fixer
139
+
140
+ Delegate to `/security-fixer`:
141
+
142
+ > /security-fixer module=<N>
143
+ >
144
+ > Findings JSON: [paste from Step 5]
145
+ >
146
+ > Apply CRITICAL and HIGH. Skip MEDIUM/LOW unless tagged `must_fix`.
147
+ > Return `{ "fixed": [...], "skipped": [...], "summary": "..." }`.
148
+
149
+ Re-run build/test. If pass → Step 7. If fail → **STOP** (no auto-retry on security fixes).
150
+
151
+ ### Step 7 — Update project-memory [Main]
152
+
153
+ Same as Claude Code variant:
154
+ 1. Append "Module <N> completed" line to `project-memory/core-memory.md`
155
+ 2. Update `project-memory/repo-map.md` if new modules/routes added
156
+ 3. Create/update `MODULE.md` in the module's source directory
157
+
158
+ ### Step 8 — Commit + push [Main]
159
+
160
+ ```bash
161
+ git add .
162
+ git commit -m "feat(MODULE_<N>): <description>"
163
+ git push origin HEAD
164
+ ```
165
+
166
+ If push fails, **STOP**.
167
+
168
+ ### Step 9 — Next module [Main]
169
+
170
+ Print status, return to Step 1 for next module.
171
+
172
+ ---
173
+
174
+ ## After all modules
175
+
176
+ Print final summary (same format as Claude Code variant). Do not open a PR.
177
+
178
+ ---
179
+
180
+ ## Failure modes
181
+
182
+ Same as Claude Code variant — `STOP` on:
183
+ - Build/test failure after 2 fixer iterations
184
+ - Review or security verdict = `block`
185
+ - Security fixer build/test failure
186
+ - `git push` failure
187
+ - Implementation `blockers` non-empty
188
+ - Any subagent call errors out
189
+
190
+ Resume by re-running `/module-runner <feature-folder>` — runner skips modules already marked completed in `core-memory.md`.
191
+
192
+ ---
193
+
194
+ ## Cursor subagent invocation notes
195
+
196
+ - Subagents have **independent context windows** (per https://cursor.com/docs/subagents) — pass everything they need explicitly. No "remember from earlier".
197
+ - Use **foreground mode** for steps where the main agent needs the result to proceed (all steps in this pipeline). Background mode is not needed since the pipeline is strictly sequential.
198
+ - Subagents return their final message to the parent. Request JSON output in the prompt for programmatically-consumed steps (review, security, fixers).
199
+ - Parallelism is not used here — module-runner is sequential by design. (Cursor supports parallel subagent dispatch, but per-module steps depend on each other.)
200
+
201
+ ---
202
+
203
+ ## Do not
204
+
205
+ Same prohibitions as Claude Code variant:
206
+ - Don't implement/review/audit in the main agent
207
+ - Don't skip build/test verification
208
+ - Don't auto-retry beyond specified limits
209
+ - Don't squash commits
210
+ - Don't push to `main` / `master`
211
+ - Don't open a PR
212
+ - Don't update `core-memory.md` from inside subagents (Main only, Step 7)