Back to articles
I Built a CLI That Can Create, Fix, and Improve Projects Using Natural Language — Wrath CLI

I Built a CLI That Can Create, Fix, and Improve Projects Using Natural Language — Wrath CLI

via Dev.to WebdevMohamed Yaseen

Most developers spend a lot of time doing repetitive tasks: Creating project structure Fixing common errors Adding new features Refactoring code Improving UI Running dev servers Understanding project structure So I built a tool called Wrath CLI to handle these tasks directly from the terminal using natural language. What Wrath CLI Can Do Wrath works by indexing your project and understanding its structure. Once indexed, you can run commands like: wrath create "nodejs api with auth" wrath fix "cannot read property of undefined" wrath add "profile page with avatar upload" wrath ui "make dashboard modern" wrath update "optimize performance" wrath run npm run dev Available Commands wrath create [description] Scaffold a new project using natural language. wrath fix [error] Diagnose and fix errors using the project index. wrath run "command" (eg. command=npm start) Start dev server with auto-healing. wrath init Index the current project into .wrath/index.json. wrath add [feature] Add new fea

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
2 views

Related Articles