sapper-iq 1.1.9 → 1.1.10

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 (2) hide show
  1. package/package.json +1 -1
  2. package/sapper.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sapper-iq",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "AI-powered development assistant that executes commands and builds projects",
5
5
  "main": "sapper.mjs",
6
6
  "bin": {
package/sapper.mjs CHANGED
@@ -474,7 +474,7 @@ Do NOT just display content. Actually WRITE files using the tool.`
474
474
  // Show the raw tool attempt for debugging
475
475
  const toolAttempt = msg.match(/\[TOOL:[^\]]*\][^\[]{0,100}/s);
476
476
  if (toolAttempt) {
477
- console.log(chalk.yellow(` Raw tool attempt (first 150 chars):`);
477
+ console.log(chalk.yellow(` Raw tool attempt (first 150 chars):`));
478
478
  console.log(chalk.gray(` "${toolAttempt[0].substring(0, 150)}..."`));
479
479
  }
480
480
  }