Your First Session
Launch Gee-Code
Section titled “Launch Gee-Code”Navigate to any project directory and start a session:
cd ~/my-projectgee-codeYou’re now in an interactive session. Type natural language to give instructions, ask questions, or request changes.
The Basics
Section titled “The Basics”Ask a question
Section titled “Ask a question”> What does the main() function in app.py do?Gee-Code reads the file, analyzes it, and explains.
Edit code
Section titled “Edit code”> Add input validation to the create_user function in users.pyGee-Code reads the file, makes targeted edits, and shows you exactly what changed.
Run a command
Section titled “Run a command”> Run the testsGee-Code executes your test runner and reports the results.
Named Sessions
Section titled “Named Sessions”You can maintain different conversations within the same codebase by using named sessions:
gee-code # Default sessiongee-code auth-refactor # Named session for auth workgee-code bug-fix-422 # Named session for a specific bugEach session maintains its own conversation history, context, and continuity state. Switch between them freely — they don’t interfere with each other.
Resume a previous session:
/resumeThis shows you a list of recent sessions to pick from.
Adding Context
Section titled “Adding Context”Gee-Code needs to see your files to work on them. There are several ways to bring files into context:
Paste content directly
Section titled “Paste content directly”Press Ctrl+V to paste text, code, error messages, screenshots — anything from your clipboard. Gee-Code will incorporate it into the conversation.
Use the file picker
Section titled “Use the file picker”/pickThis opens an interactive file browser. Navigate your project and select files to add to context.
Add specific files
Section titled “Add specific files”/add src/auth/login.ts/add package.jsonAdd files by path. Supports globs too:
/add src/components/*.tsxWhat you have access to
Section titled “What you have access to”Gee-Code can access:
- Your local filesystem — any file on your machine
- Your Gee account storage — files uploaded to Gee Cloud
- Google Drive — if your Gee account has authorized Google Drive access
Slash Commands
Section titled “Slash Commands”Commands start with / and control Gee-Code’s behavior:
| Command | What it does |
|---|---|
/help | Show all available commands |
/status | Show running tasks and current state |
/model sonnet | Switch to a different AI model |
/clear | Start a fresh conversation |
/history | View conversation history |
/resume | Resume a previous session |
/skills | List available skills |
/agents | List available agents |
There are 80+ commands in total. Type /help to explore them, or see the Commands reference.
Skills
Section titled “Skills”Skills are on-demand capabilities that load specialized instructions. They’re invoked with slash commands:
/commit # Craft a git commit with a good message/explore src/ # Deep exploration of a directory/init # Generate project documentationSkills extend what Gee-Code can do without bloating every conversation. They load only when you need them.
Using Your Claude Code Max Plan
Section titled “Using Your Claude Code Max Plan”If you have a Claude Max subscription, you can use it directly with Gee-Code — no API key needed.
- Run
/providers browseto check if Claude Code is detected - If not installed:
curl -fsSL https://claude.ai/install.sh | bash, then runclaudeand select “Use subscription” - Activate with
/clamp on cc(adaptive) or/clamp on cc-gee-max(max effort + all Gee tools)
See Models & Providers for the full setup guide.
What to Try Next
Section titled “What to Try Next”Now that you have the basics, here are some things to explore:
- Plan a complex task — ask Gee-Code to refactor something. It will create a step-by-step plan you can review and execute.
- Try different models —
/model opusfor the most capable,/model haikufor the fastest. - Use your Claude Code subscription —
/clamp on ccroutes everything through your Max plan. - Explore your codebase —
/initgenerates comprehensive documentation about your project. - Customize your experience — set preferences in Configuration.
Next Steps
Section titled “Next Steps”- How It Works — understand the execution model
- Commands — the full command system
- Context Management — master context techniques
- Configuration — customize behavior, models, and providers