blits-bridge 0.1.3 → 0.1.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.
Files changed (2) hide show
  1. package/dist/bridge.js +2 -0
  2. package/package.json +1 -1
package/dist/bridge.js CHANGED
@@ -128,6 +128,7 @@ class BlitsBridge {
128
128
  '--output-format', 'json',
129
129
  '--model', payload.model,
130
130
  '--no-session-persistence',
131
+ '--effort', 'low',
131
132
  ];
132
133
  if (payload.system) {
133
134
  args.push('--system-prompt', payload.system);
@@ -138,6 +139,7 @@ class BlitsBridge {
138
139
  const proc = (0, child_process_1.spawn)('claude', args, {
139
140
  stdio: ['pipe', 'pipe', 'pipe'],
140
141
  env: { ...process.env },
142
+ cwd: process.env.TMPDIR || process.env.TEMP || '/tmp', // avoid loading CLAUDE.md
141
143
  });
142
144
  let stdout = '';
143
145
  let stderr = '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blits-bridge",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Bridge between Blits platform and local Claude CLI. Runs Claude API calls through your subscription.",
5
5
  "bin": {
6
6
  "blits-bridge": "./dist/cli.js"