@_xtribe/cli 2.2.50 → 2.2.51

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/install-tribe.js +0 -14
  2. package/package.json +1 -1
package/install-tribe.js CHANGED
@@ -182,17 +182,6 @@ async function installTribeCLIQuiet() {
182
182
  }
183
183
  fs.chmodSync(tutorCollectorDest, '755');
184
184
 
185
- // Also download tutor-server binary for self-hosting capability
186
- const tutorServerDest = path.join(tribeBinDir, 'tutor-server');
187
- const tutorServerUrl = `https://github.com/TRIBE-INC/tutor-server-community-release/releases/latest/download/tutor-server-${platform}-${arch}`;
188
- try {
189
- await downloadFile(tutorServerUrl, tutorServerDest);
190
- fs.chmodSync(tutorServerDest, '755');
191
- } catch (error) {
192
- // Server binary is optional - don't fail installation if unavailable
193
- console.warn('Warning: Could not download tutor-server binary (optional for self-hosting)');
194
- }
195
-
196
185
  // Remove macOS quarantine if needed
197
186
  if (platform === 'darwin') {
198
187
  try {
@@ -200,9 +189,6 @@ async function installTribeCLIQuiet() {
200
189
  if (fs.existsSync(tutorCollectorDest)) {
201
190
  execSync(`xattr -d com.apple.quarantine "${tutorCollectorDest}"`, { stdio: 'ignore' });
202
191
  }
203
- if (fs.existsSync(tutorServerDest)) {
204
- execSync(`xattr -d com.apple.quarantine "${tutorServerDest}"`, { stdio: 'ignore' });
205
- }
206
192
  } catch {
207
193
  // Not critical
208
194
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@_xtribe/cli",
3
- "version": "2.2.50",
3
+ "version": "2.2.51",
4
4
  "description": "TRIBE - Privacy-first AI development analytics. Self-host your telemetry, skip authentication, or run completely offline. Your data stays on your machine.",
5
5
  "main": "install-tribe.js",
6
6
  "bin": {