baro-ai 0.25.1 → 0.27.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/README.md CHANGED
@@ -6,7 +6,7 @@ Give it a goal, it breaks it into stories, builds a dependency DAG, and runs the
6
6
 
7
7
  ![npm downloads](https://img.shields.io/npm/dt/baro-ai) ![npm downloads weekly](https://img.shields.io/npm/dw/baro-ai) ![npm version](https://img.shields.io/npm/v/baro-ai)
8
8
 
9
- ![baro screenshot](assets/screenshot.png)
9
+ ![baro screenshot](https://raw.githubusercontent.com/jigjoy-ai/baro/main/assets/screenshot.png)
10
10
 
11
11
  > 📖 **Deep dive:** [Getting the Maximum Out of My Claude Code Subscription](https://jigjoy.ai/blog/getting-the-maximum-out-of-claude-code) — the story of why baro exists, how it pairs with Mozaik, and what it looks like in practice.
12
12
 
@@ -233,7 +233,7 @@ to the orchestrator.
233
233
 
234
234
  baro is a work in progress. I'm actively adding things, testing ideas,
235
235
  and occasionally breaking them — if a run explodes, an [issue on
236
- GitHub](https://github.com/Lotus015/baro/issues) with the run's audit
236
+ GitHub](https://github.com/jigjoy-ai/baro/issues) with the run's audit
237
237
  log from `~/.baro/runs/` is the fastest way to get it fixed.
238
238
 
239
239
  If you like the idea and want to help shape where it goes, PRs are
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",