From 78940f3733964b8c366c977f9d6db644c18add00 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 --- requirements.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e3f2a5d --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +click>=8.0.0 +rich>=12.0.0 +pyyaml>=6.0 +fuzzywuzzy>=0.18.0 +python-Levenshtein>=0.20.0 +pytest>=7.0.0 +pytest-cov>=4.0.0 \ No newline at end of file