llmstash 1.0.9 → 1.1.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.

Potentially problematic release.


This version of llmstash might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/bin/llmstash.js +1 -1
  2. package/package.json +1 -1
package/bin/llmstash.js CHANGED
@@ -481,7 +481,7 @@ const runProxy = (target) => {
481
481
  else if (target === 'codex') realPath = path.join(globalModules, '@openai', 'codex', 'bin', 'codex.js');
482
482
  else if (target === 'gemini') realPath = path.join(globalModules, 'gemini-cli', 'bin', 'gemini.js');
483
483
 
484
- const argsPassed = process.argv.slice(3);
484
+ const argsPassed = process.argv.slice(4);
485
485
  const child = spawn('node', [realPath, ...argsPassed], {
486
486
  stdio: 'inherit'
487
487
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llmstash",
3
- "version": "1.0.9",
3
+ "version": "1.1.0",
4
4
  "description": "Clean wrapper for pumpkinai-config to remove banners and simplify output",
5
5
  "main": "bin/llmstash.js",
6
6
  "bin": {