@tanagram/cli 0.5.48 → 0.5.50

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.
Binary file
Binary file
Binary file
Binary file
Binary file
package/install.js CHANGED
@@ -193,12 +193,12 @@ function ensureOpenCode() {
193
193
  console.error('Installing OpenCode (LLM agent runtime)...');
194
194
 
195
195
  try {
196
- execSync('npm install -g opencode-ai', { stdio: 'pipe' });
196
+ execSync('npm install -g opencode-ai@1.2.24', { stdio: 'pipe' });
197
197
  console.error('✓ OpenCode installed successfully');
198
198
  track('cli.opencode.install.success');
199
199
  } catch (err) {
200
200
  console.error('Warning: Failed to install OpenCode globally:', err.message);
201
- console.error(' You can install it manually: npm install -g opencode-ai');
201
+ console.error(' You can install it manually: npm install -g opencode-ai@1.2.24');
202
202
  track('cli.opencode.install.failure', { error: err.message });
203
203
  }
204
204
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanagram/cli",
3
- "version": "0.5.48",
3
+ "version": "0.5.50",
4
4
  "description": "Tanagram - Catch sloppy code before it ships",
5
5
  "main": "index.js",
6
6
  "bin": {