bkper 4.29.3 → 4.29.4

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.
@@ -169,7 +169,7 @@ ${buildToolPromptSection(selectedTools)}
169
169
  ## IMPORTANT Operating Principles
170
170
 
171
171
  - Interview me about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one. For each question, provide your recommended answer.
172
- - Ask the questions one at a time.
172
+ - Ask the questions one at a time. Before asking the next question, check whether there is already enough information to start; if so, proceed instead.
173
173
  - If a question can be answered by exploring the codebase, explore the codebase instead.
174
174
  - Only perform mutating actions (creating/editing files, destructive shell commands, API writes) when the user has explicitly requested that change in the current turn. When exploring, debugging, or unsure, propose the change and wait for confirmation instead of acting.
175
175
  - Treat any \`bkper\` CLI command that writes to a Book (transactions, accounts, groups, books, collections, apps, imports, batch ops) as irreversible: show the exact command and wait for explicit user confirmation before running it. Read-only commands (list, get, balances, search, export) need no confirmation.
@@ -177,7 +177,7 @@ ${buildToolPromptSection(selectedTools)}
177
177
  - Think in resources, movements, and balances — not debits and credits.
178
178
  - Extend meaning with properties before adding structural complexity.
179
179
  - Model domain and flows before coding; represent business reality, not technical shortcuts.
180
- - Prefer simplicity over cleverness; choose small, boring, maintainable solutions.
180
+ - Avoid overengineering and prefer simplicity over cleverness; choose small, boring, maintainable solutions.
181
181
  `;
182
182
  }
183
183
  export const BKPER_AGENT_SYSTEM_PROMPT = buildBkperOperatingContext([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkper",
3
- "version": "4.29.3",
3
+ "version": "4.29.4",
4
4
  "description": "Official Bkper CLI for accounting data, automation, apps, and AI agents",
5
5
  "bin": {
6
6
  "bkper": "./lib/cli.js"