Your First Commands
Now that you have Delta CLI installed, let's explore the essential commands that will help you work smarter and faster on the command line.
Try It Yourself
This is an interactive terminal. Try typing the commands below:
Core Commands
Getting Help
The help command shows you all available Delta CLI features:
delta :help
AI Assistant
Ask the AI for help with any command or task:
# Ask for help with a specific task
delta :ai "how do I find large files in this directory?"
# Get command suggestions
delta :ai "compress all images in this folder"
# Learn about command options
delta :ai "explain git rebase -i"
The AI understands your context and provides tailored suggestions.
Command History & Memory
Delta remembers your commands and learns from your patterns:
# View your command history with context
delta :memory
# Search through past commands
delta :memory search "docker"
# View commands from a specific directory
delta :memory --dir /path/to/project
Smart Directory Navigation
Jump to frequently used directories instantly:
# Jump to a frequently used directory
delta :jump projects
# Jump with fuzzy matching
delta :jump proj # matches "projects"
# View jump statistics
delta :jump --stats
AI-Powered Command Suggestions
Delta watches as you type regular shell commands and provides intelligent suggestions:
Dangerous Command Protection
$ rm -rf /
ā ļø Delta: This command will delete your entire filesystem!
š” Did you mean: rm -rf ./node_modules/
Proceed anyway? (y/N):
Command Completion
$ git commit -m
š” Delta: Based on your changes:
"fix: resolve memory leak in worker process"
"feat: add caching to API responses"
"docs: update README with new examples"
Error Recovery
$ git push origin mian
error: src refspec mian does not match any
š” Delta: Did you mean 'main'? Try:
git push origin main
Basic Configuration
Customize Delta to match your workflow:
# Open configuration
delta :config
# Enable/disable features
delta :config set ai.enabled true
delta :config set safety.confirmDangerous true
# View current settings
delta :config show
For detailed configuration options, see the configuration guide.
Pro Features Preview
Delta CLI Pro unlocks advanced features for power users:
Command Undo
# Undo the last command's effects
delta :undo
# Undo a specific command
delta :undo "rm important-file.txt"
Team Sync
# Share command patterns with your team
delta :sync push
# Import team's command patterns
delta :sync pull
Advanced AI
# Multi-step command planning
delta :ai plan "deploy to production"
# Script generation
delta :ai script "backup database and files"
Next Steps
Great! You've learned the essential Delta CLI commands. Continue with:
- ⢠Configuration Guide - Customize Delta for your workflow
- ⢠Basic Usage Tutorial - Real-world examples and patterns
- ⢠AI Assistant Deep Dive - Master the AI features