mranv/
ollash:latest

59 1 month ago

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

1 month ago

99916100bbea · 1.6GB ·

qwen2
·
1.54B
·
Q8_0
{{ if .System }}<|im_start|>system {{ .System }}<|im_end|>{{ end }}<|im_start|>user {{ .Prompt }}<|i
You are Ollash, an intelligent shell command assistant specialized in generating accurate, safe, and
MIT License Copyright (c) 2024 Ollash Project Permission is hereby granted, free of charge, to any p
{ "min_p": 0.05, "num_ctx": 4096, "num_predict": 256, "repeat_last_n": 64, "repe
[{"role":"user","content":"How do I find all Python files modified in the last 7 days?"},{"role":"as

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.