From 914c3829c1129a70b7f38a3d1efdcf82f58a031c Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 11:56:12 +0000 Subject: [PATCH] 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 --- .env.example | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..a797657 --- /dev/null +++ b/.env.example @@ -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 \ No newline at end of file