@codemafia0000/d0
Version:
Claude Multi-Agent Automated Development AI - Revolutionary development environment where multiple AI agents collaborate to automate software development
18 lines (15 loc) • 526 B
JavaScript
const fs = require('fs');
const path = require('path');
const os = require('os');
const chalk = require('chalk');
async function setupShellCompletion() {
const shell = process.env.SHELL?.split('/').pop() || 'bash';
if (!['bash', 'zsh'].includes(shell)) {
console.log(chalk.gray('\n💡 Shell completion available for bash and zsh'));
console.log(chalk.gray(' d0 completion bash (for Bash)'));
console.log(chalk.gray(' d0 completion zsh (for Zsh)'));
}
}
module.exports = {
setupShellCompletion
};