-
released this
2026-01-31 08:32:22 +00:00 | 53 commits to main since this releaseInitial Release v1.0.0
A CLI tool that records developer terminal workflows with project context, enables smart autocomplete based on history, detects automation patterns, and generates reusable scripts from recurring command sequences.
Features
- Command Recording: Record terminal workflows with automatic project context detection
- Smart Autocomplete: Get intelligent command suggestions based on history and patterns
- Pattern Detection: Automatically detect recurring command sequences
- Script Generation: Convert workflows into reusable bash scripts
- Workflow Playback: Replay recorded workflows with configurable speed
- Searchable History: Search commands by project, technology, or time range
- Shell Integration: Auto-capture commands in your shell sessions
- Export/Import: Share workflows with JSON/YAML export
Installation
pip install -e .Quick Start
# Initialize CLI Command Memory cli-memory init # Start recording a command session cli-memory record start # Search for previous commands cli-memory search commands "git status" # Get suggestions for next command cli-memory suggest next "git " # Generate a script from a workflow cli-memory workflow generate 1 --name my-scriptDownloads