VCMD
Built with Bun & TypeScript

Natural Language to Shell Commands

A powerful CLI tool that converts natural language descriptions into shell commands using AI. Fast, safe, and OS-aware command generation.

==== VCMD By Voidworks.xyz ====
Safety Level: CAUTION
git add -A && git commit -m 'add new home area'
stage all changes and commit with a meaningful message
? What would you like to do?
Execute: git add -A && git commit -m 'add new home area'
Executing command...
git add -A && git commit -m 'add new home area'
(Press Ctrl+C to stop the command)
[main 38c3671] add new home area 2 files changed, 11 insertions(+), 11 deletions(-)
Command executed successfully!
void@void-desktop:~/vcmd_website$
Features

Powerful AI-Driven CLI

Transform your command line experience with intelligent natural language processing and advanced safety features

🤖

AI-Powered Command Generation

Convert natural language to shell commands using Cerebras AI

🖥️

OS-Aware

Automatically detects your operating system and generates appropriate commands

🛡️

Safety Classification

Commands are classified as safe, caution, or dangerous for your security

Fast Execution

Built with Bun runtime for optimal performance and speed

📚

Command Explanation

Get detailed explanations of generated commands before execution

🔧

Command Analysis

Analyze and fix failed commands with AI assistance

Live Examples

See It In Action

Real examples of natural language commands converted to shell commands with full execution flow

==== VCMD By Voidworks.xyz ====
Safety Level: SAFE
ls -la
list all files and directories with detailed information
? What would you like to do? (Use arrow keys)
Execute: ls -la
Explain command in detail
Exit
Executing command...
ls -la
(Press Ctrl+C to stop the command)
total 64 drwxr-xr-x 8 user user 4096 Dec 15 10:30 . drwxr-xr-x 18 user user 4096 Dec 15 09:45 .. -rw-r--r-- 1 user user 220 Dec 15 09:45 .bashrc -rw-r--r-- 1 user user 3771 Dec 15 09:45 .bashrc_profile -rw-r--r-- 1 user user 1024 Dec 15 10:15 config.txt drwxr-xr-x 3 user user 4096 Dec 15 10:30 Documents drwxr-xr-x 2 user user 4096 Dec 15 09:50 Downloads -rw-r--r-- 1 user user 807 Dec 15 09:45 .gitconfig -rw-r--r-- 1 user user 2048 Dec 15 08:30 notes.md drwxr-xr-x 2 user user 4096 Dec 15 11:20 Pictures drwxr-xr-x 2 user user 4096 Dec 15 10:45 Projects -rwxr-xr-x 1 user user 512 Dec 15 07:15 script.sh -rw-r--r-- 1 user user 745 Dec 15 09:45 .vimrc drwxr-xr-x 2 user user 4096 Dec 15 12:00 workspace
Command executed successfully!
void@void-desktop:~$
==== VCMD By Voidworks.xyz ====
Safety Level: SAFE
find . -name '*.js' -mtime -7
search for JavaScript files modified within the last 7 days
? What would you like to do? (Use arrow keys)
Execute: find . -name '*.js' -mtime -7
Explain command in detail
Exit
Executing command...
find . -name '*.js' -mtime -7
(Press Ctrl+C to stop the command)
./app/main.js ./utils/helpers.js ./scripts/build.js ./components/header.js
Command executed successfully!
void@void-desktop:~$