A CLI tool that learns from terminal command patterns to automate repetitive workflows. Features: - Command recording with tags and descriptions - Pattern detection for command sequences - Session recording and replay - Natural language script generation
14 lines
439 B
Plaintext
14 lines
439 B
Plaintext
# Shell Memory CLI Configuration
|
|
# Copy this file to .env and modify as needed
|
|
|
|
# Path to SQLite database file (default: ~/.shell_memory/shell_memory.db)
|
|
SHELL_MEMORY_DB=~/.shell_memory/shell_memory.db
|
|
|
|
# Base directory for shell-memory data (default: ~/.shell_memory)
|
|
SHELL_MEMORY_HOME=~/.shell_memory
|
|
|
|
# Enable verbose output (true/false)
|
|
SHELL_MEMORY_VERBOSE=false
|
|
|
|
# Default output format (table, json, plain)
|
|
SHELL_MEMORY_FORMAT=table |