From ceb6c0eac9b109e792ddefa552f489ef294ce079 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 --- shell_memory/__init__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 shell_memory/__init__.py diff --git a/shell_memory/__init__.py b/shell_memory/__init__.py new file mode 100644 index 0000000..7dd9ce2 --- /dev/null +++ b/shell_memory/__init__.py @@ -0,0 +1,3 @@ +"""Shell Memory CLI - A CLI tool that learns from terminal command patterns.""" + +__version__ = "0.1.0" \ No newline at end of file