A CLI tool for managing local files, Git repositories, and delegating tasks to Grok 3, with session checkpointing and restarting.
- File operations (create, delete, move, copy, rename, read, write, list).
- Git operations (status, pull, log, branch, checkout, commit, remove, clean).
- Checkpoint management (save/list with chat URLs and file content).
- Task delegation to Grok 3 (e.g., script generation).
- Session restarting via grok_bootstrap.py with detailed prompts.
- Clone:
git clone git@github.com:imars/grok-local.git - Enter:
cd grok-local - Env:
python -m venv venv && source venv/bin/activate && pip install gitpython - Deps:
pip install -r requirements.txt - Start:
python grok_local.pyorpython grok_bootstrap.py --prompt
See docs/usage.md for detailed command syntax and examples.
- Added
chat_urlandfile_contentto checkpoints for precise session restoration. - Enhanced --help outputs across all scripts.