baro-ai 0.25.0 → 0.26.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.
- package/dist/cli.mjs +12 -0
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -8116,6 +8116,18 @@ function buildDefaultStoryPrompt(story) {
|
|
|
8116
8116
|
"TEST COMMANDS:",
|
|
8117
8117
|
tests,
|
|
8118
8118
|
"",
|
|
8119
|
+
"SCOPE DISCIPLINE (read this twice):",
|
|
8120
|
+
"- Do ONLY what this story's description and acceptance criteria require. Nothing else.",
|
|
8121
|
+
"- Do NOT refactor adjacent code, rename neighbouring symbols, tidy unrelated files,",
|
|
8122
|
+
" reformat imports, or fix issues you happen to notice along the way. Those are",
|
|
8123
|
+
" separate stories the user did not ask for.",
|
|
8124
|
+
"- Do NOT add new tests unless an acceptance criterion explicitly asks for one.",
|
|
8125
|
+
"- Do NOT introduce new dependencies, new abstractions, or new configuration",
|
|
8126
|
+
" unless this story's description names them.",
|
|
8127
|
+
"- If a single-file edit is sufficient, make a single-file edit. Resist expanding.",
|
|
8128
|
+
"- If you notice unrelated bugs or improvements, mention them in your final commit",
|
|
8129
|
+
" message under a `Noted (out of scope):` line so the user can file follow-ups.",
|
|
8130
|
+
"",
|
|
8119
8131
|
"IMPORTANT: Before you commit, you MUST verify the project builds successfully:",
|
|
8120
8132
|
" - If Cargo.toml exists: run `cargo build` and fix all errors and warnings",
|
|
8121
8133
|
" - If package.json exists: run `npm run build` (if a build script exists) and fix errors",
|