Ultimate Linux Developer CLI Tool for DevOps engineers, developers, and power users.
- 🖥️ System Information Dashboard
- 🐳 Docker Command Integration
- 📊 Interactive Terminal UI
- 🔌 Plugin-Based Architecture
- 🎨 Colored Output + Loading Spinners
- ⚡ Fast, Lightweight & Developer-Friendly
dev start? Select action
> 🖥 System Info
🐳 Docker
❌ Exitnpm install -g dev-cligit clone https://github.com/YOUR_USERNAME/dev-cli.git
cd dev-cli
npm install
npm linkdevdev startdev hello # Test command
dev sys # Show system info
dev docker ps # List containers
dev docker imagesRun Docker commands directly:
dev docker ps
dev docker images
dev docker start <container>
dev docker stop <container>Extend CLI functionality using plugins.
Create a file inside /plugins:
module.exports = (program) => {
program
.command("greet")
.description("Custom plugin command")
.action(() => {
console.log("Hello from plugin 🚀");
});
};Run:
dev greetdev-cli
│
├── bin
├── commands
├── plugins
├── utils
├── config
└── README.md
- Node.js
- Commander.js
- Inquirer.js
- Chalk
- Figlet
- Ora
- Execa
- Kubernetes Integration
- AI CLI Assistant
- SSH Manager
- Project Generator
- Plugin Marketplace
- Voice-Controlled CLI
Contributions are welcome!
- Fork the repository
- Create a new branch
- Make your changes
- Submit a Pull Request
MIT License
Ankush Ujawane
If you like this project, give it a star ⭐ on GitHub!
