sandoichi 0.1.4 → 0.1.5

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/src/core.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sandoichi",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Reduce repeated tool-output context in Claude Code and Codex.",
5
5
  "license": "MIT",
6
6
  "author": "yuzushi",
package/src/core.mjs CHANGED
@@ -192,7 +192,7 @@ export function optimizeToolOutput({
192
192
  sourceBytes,
193
193
  truncated: false,
194
194
  };
195
- const header = `artifact ${artifact.ref} ${artifact.bytes}B\n`;
195
+ const header = `[sando] artifact ${artifact.ref} ${artifact.bytes}B\n`;
196
196
  const viewBudget = Math.max(1, routePolicy.maxInlineBytes - Buffer.byteLength(header));
197
197
  inline = `${truncateUtf8(header, routePolicy.maxInlineBytes)}${inlineView(
198
198
  modelText,