Initial commit: Add shell-memory-cli project

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
This commit is contained in:
2026-01-30 11:56:12 +00:00
parent 78940f3733
commit 914c3829c1

14
.env.example Normal file
View File

@@ -0,0 +1,14 @@
# 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