@_xtribe/cli 1.0.30 ā 1.0.32
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.
- package/install-tribe.js +28 -1
- package/package.json +1 -1
package/install-tribe.js
CHANGED
|
@@ -613,6 +613,16 @@ async function installTribeCLI() {
|
|
|
613
613
|
}
|
|
614
614
|
}
|
|
615
615
|
|
|
616
|
+
// Check for local binary first (for development/testing)
|
|
617
|
+
const localBinary = path.join(__dirname, 'tribe');
|
|
618
|
+
if (fs.existsSync(localBinary)) {
|
|
619
|
+
spinner.text = 'Using local TRIBE binary...';
|
|
620
|
+
fs.copyFileSync(localBinary, tribeDest);
|
|
621
|
+
fs.chmodSync(tribeDest, '755');
|
|
622
|
+
spinner.succeed('Installed TRIBE CLI from local binary');
|
|
623
|
+
return;
|
|
624
|
+
}
|
|
625
|
+
|
|
616
626
|
// Download pre-built binary from GitHub
|
|
617
627
|
// Proper architecture detection for all platforms
|
|
618
628
|
let arch;
|
|
@@ -1544,7 +1554,24 @@ async function forceCleanInstallation() {
|
|
|
1544
1554
|
}
|
|
1545
1555
|
|
|
1546
1556
|
async function main() {
|
|
1547
|
-
|
|
1557
|
+
// Fire-themed ASCII art with modern Unicode design
|
|
1558
|
+
console.log('');
|
|
1559
|
+
console.log(chalk.red(` āāāāāāā āāāāāāā`) + chalk.yellow(` āāā`) + chalk.red(` `) + chalk.yellow(` āāā `) + chalk.red(`āāāāāāā`));
|
|
1560
|
+
console.log(chalk.red(` āāāāāāāāāāā āāāāāāāāāāā`) + chalk.yellow(` āāāāā`) + chalk.red(` `) + chalk.yellow(` āāāāāā `) + chalk.red(`āāāāāāāāāāā`));
|
|
1561
|
+
console.log(chalk.red(` āāāāāāā āāāāāāāāāāāāā`) + chalk.yellow(`āāāāā`) + chalk.red(` `) + chalk.yellow(`āāāāāā `) + chalk.red(`āāāāāāāāāāāāāā`));
|
|
1562
|
+
console.log(chalk.red(` āāāāāāā āāāāāāāāāāāāāā`) + chalk.yellow(` āāāāā`) + chalk.red(``) + chalk.yellow(`āāāāāā `) + chalk.red(`āāāāāāā āāāāāāā`));
|
|
1563
|
+
console.log(chalk.red(` āāāāāāā āāāāāāā āāāāāāā`) + chalk.yellow(` āāāāā`) + chalk.red(``) + chalk.yellow(`āāāāā `) + chalk.red(`āāāāāāā āāāāāāā`));
|
|
1564
|
+
console.log(chalk.red(` āāāāāāā āāāāāāā āāāāāāā`) + chalk.yellow(` āāā`) + chalk.red(`āā`) + chalk.yellow(`āāā `) + chalk.red(`āāāāāāā āāāāāāā`));
|
|
1565
|
+
console.log(chalk.red(` āāāāāāā āāāāāāā āāāāāāā`) + chalk.yellow(` āā`) + chalk.red(`ā`) + chalk.yellow(`āā `) + chalk.red(`āāāāāāāāāāāāāāāāāāāāā`));
|
|
1566
|
+
console.log(chalk.red(` āāāāāāā āāāāāāā āāāāāāā`) + chalk.yellow(` `) + chalk.red(`ā`) + chalk.yellow(` `) + chalk.red(`āāāāāāā āāāāāāāāāāā`));
|
|
1567
|
+
console.log(chalk.red(` āāāāāāā āāāāāāā āāāāāāā`) + chalk.yellow(` `) + chalk.red(`āāāāāāā āāāāāāā`));
|
|
1568
|
+
console.log(chalk.red(` āāāāāāā āāāāāāā āāāāāāā`) + chalk.yellow(` `) + chalk.red(`āāāāāāā āāāāāāā`));
|
|
1569
|
+
console.log(chalk.red(` āāāāāāā āāāāāāā āāāāāā`) + chalk.red(`āāāāā āāāāāāā`));
|
|
1570
|
+
console.log('');
|
|
1571
|
+
console.log(chalk.yellow(` āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā`));
|
|
1572
|
+
console.log(chalk.yellow(` ā `) + chalk.white.bold(`Multi-Agent Orchestration System`) + chalk.yellow(` ā`));
|
|
1573
|
+
console.log(chalk.yellow(` āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā`));
|
|
1574
|
+
console.log('');
|
|
1548
1575
|
|
|
1549
1576
|
// Detect and display platform info
|
|
1550
1577
|
const displayArch = process.arch === 'x64' ? 'amd64' : process.arch;
|