Build powerful shell scripts, automate workflows, and supercharge your terminal experience with our collection of modern command-line tools.
curl -fsSL shellll.com/install | sh
Written in Rust for maximum performance. Execute commands 10x faster than traditional shell scripts.
Extend functionality with our rich ecosystem of community plugins. Create your own with simple APIs.
Works seamlessly on macOS, Linux, and Windows. Same commands, same experience everywhere.
Clean, intuitive syntax inspired by modern programming languages. Easy to learn, powerful to use.
Optional type checking catches errors before runtime. More reliable scripts with less debugging.
Comprehensive documentation with examples, tutorials, and an active community to help you succeed.
An intelligent shell with AI-powered command suggestions and auto-completion.
Enhanced fuzzy finder with preview panes and custom keybindings.
Supercharged git commands with visual diffs and smart staging.
Intelligent directory jumping based on frecency algorithm.
Ultra-fast recursive search with regex support and file filtering.
Syntax highlighting, line numbers, and git integration for cat.
Write shell scripts that are readable, maintainable, and powerful. Our modern syntax makes complex automation simple.
#!/usr/bin/env shellll import "@shellll/git" import "@shellll/docker" fn deploy(env: string) { let branch = git.current_branch() if env == "production" && branch != "main" { error("Production deploys from main only") } docker.build("./Dockerfile") docker.push("registry.io/app:\${branch}") echo "Deployed to \${env}" } deploy($1)