A tool for generating macro-prompts, as well as a GitHub Repo framework, for use with Agentic CLI tools like Claude Code, Codex, Cursor, Antigravity, and other LLM-powered development assistants involved in software engineering sensitive to preservation of context across turns.
- GECK/ - The Garden of Eden Creation Kit protocol specifications (v1.0, v1.1, v1.2)
- geck_generator/ - A GUI/CLI tool to generate GECK project files
GECK (Garden of Eden Creation Kit) is a lightweight protocol that gives CLI-based LLM agents structured memory and task management across sessions. It solves the "context amnesia" problem where AI assistants forget what they were working on between conversations.
When working with CLI LLM agents (Claude Code, Aider, Cursor, etc.):
- Each session starts fresh with no memory of previous work
- The AI may repeat mistakes or forget decisions made earlier
- There's no audit trail of what changed and why
- Large projects lose coherence across multiple sessions
GECK (v1.2) creates a simple folder structure in your project:
your_project/
└── GECK/
├── LLM_init.md # Your project goals and constraints
├── GECK_Inst.md # Instructions for the AI agent
├── log.md # Session history (long-term memory)
├── tasks.md # Current task list (working memory)
└── env.md # Environment documentation
At the start of each session, you point the AI to these files. It reads the context, understands what was done before, and continues where it left off.
The GECK Generator is a tool that helps you create LLM_init.md files and initialize GECK folder structures for your projects.
-
Clone this repository:
git clone https://github.com/crussella0129/GECK.git cd GECK -
Install dependencies:
pip install -r requirements.txt
-
Run the generator:
# GUI mode python -m geck_generator --gui # Interactive CLI mode python -m geck_generator --cli
git clone https://github.com/crussella0129/GECK.git
cd GECK
pip install -e .Note: the username in the URL will match yours if you forked as a template. Then run with:
geck-generator --guiAfter cloning and installing dependencies, create shortcuts for easy access:
cd GECK
# Create both desktop and start menu shortcuts
python -m geck_generator --install-shortcut
# Or create only desktop shortcut
python -m geck_generator --install-shortcut desktop
# Or create only start menu shortcut
python -m geck_generator --install-shortcut menuTo remove shortcuts:
python -m geck_generator --uninstall-shortcutpython -m geck_generator --guiThe GUI provides a tabbed interface to:
- Enter basic project information (name, repo URL, local path)
- Select a preset profile (Web App, CLI Tool, Data Science, etc.)
- Define goals and success criteria
- Preview and save the generated files
python -m geck_generator --cliInteractive prompts guide you through the same process in your terminal.
To create a full GECK folder structure:
python -m geck_generator --cli --init-geck# List available profiles
python -m geck_generator --list-profiles
# Generate from a profile
python -m geck_generator --profile web_app --project-name "My App" --goal "Build a REST API" -o ./LLM_init.md-
Create your project repository and clone it locally
-
Generate LLM_init.md using GECK Generator:
cd your_project python -m geck_generator --guiFill in your project goals, constraints, and success criteria.
-
Start your CLI LLM agent (Claude Code, Aider, etc.) and give it this prompt:
Read LLM_init.md and initialize the GECK. -
The AI will create the
GECK/folder with all necessary files and summarize its understanding of your project.
Starting a session:
Read the GECK files and continue working on the project.
The AI will:
- Read
LLM_init.mdfor goals - Check
log.mdfor what happened last session - Review
tasks.mdfor current work items - Pick up where you left off
During work:
- The AI commits changes incrementally
- Updates
tasks.mdas work progresses - Logs significant actions to
log.md
Ending a session:
- The AI will update the log with what was accomplished
- Mark tasks complete or note blockers
- State its checkpoint status (CONTINUE/WAIT/ROLLBACK)
# Starting fresh
Read LLM_init.md and initialize the GECK.
# Continuing work
Read the GECK and continue with the next task.
# Checking status
Read tasks.md and summarize what's done and what's remaining.
# After a break
Read the last log entry and remind me where we left off.
-
Be specific in LLM_init.md - Clear success criteria help the AI know when it's done
-
Use profiles - The GECK Generator profiles include suggested success criteria and constraints for common project types
-
Review log entries - The AI's log entries help you understand its reasoning and catch issues early
-
Trust the checkpoints - When the AI says WAIT, it genuinely needs your input. Don't skip these.
-
Commit the GECK folder - Keep
GECK/in version control so the history is preserved
| Version | Status | Description |
|---|---|---|
| v1.2 | Current | Added GECK_Inst.md for AI agent instructions |
| v1.1 | Stable | Work modes, simplified file names |
| v1.0 | Legacy | Initial release |
See GECK/GECK_Macro_v1.2 for the full protocol specification.
- Python 3.10+
- tkinter (usually included with Python)
- jinja2
- questionary (for CLI mode)
Install with:
pip install -r requirements.txtSee LICENSE file.