59 1 month ago

An intelligent shell command assistant specialized in generating accurate, safe, and efficient shell commands for various operating systems (Linux)

Models

View all →

Readme

Ollash - Intelligent Shell Command Assistant

Ollash is a specialized assistant for generating safe, accurate, and efficient shell commands across Linux, macOS, and Windows. Built on vitali87/shell-commands, it is optimized for development workflows, system administration, and everyday command-line tasks.


Features

  • Generate precise commands from natural language
  • Adapt to different operating systems and shell environments
  • Provide safer alternatives and warnings for destructive operations
  • Explain complex commands when needed
  • Support advanced flags and variations

Example Commands

# Find Python files modified in the last 7 days
find . -name "*.py" -type f -mtime -7

# Delete all .DS_Store files (with preview option)
find . -name ".DS_Store" -type f -delete
find . -name ".DS_Store" -type f -print

# Show disk usage sorted by size
du -sh * | sort -hr

# Create a timestamped backup
tar -czf "backup_$(date +%Y%m%d_%H%M%S).tar.gz" .

# Kill process on port 3000
lsof -ti:3000 | xargs kill -9

License

Licensed under the MIT License.