Professional port of the Context Engineering Kit to Google Gemini CLI
Context Engineering for Gemini brings the multi-agent development patterns from the Context Engineering Kit (CEK) into Google Gemini CLI. It includes a reflexion system, git workflow automation, code review agents, TDD workflows, and more -- all adapted to work natively within Gemini's ecosystem.
- Reflexion System -- Iterative self-refinement with
/reflectfor higher-quality outputs. - Git Workflow -- Automated commit formatting (
/git:commit) and pull request creation (/git:pr). - Code Review Agents -- Multi-perspective review with specialized judges and consensus building.
- TDD Workflow -- Test-driven development patterns ported for Gemini CLI usage.
- Multi-Agent Patterns -- Subagent orchestration, parallel execution, and competitive generation adapted from CEK.
git clone https://github.com/fernandoxavier02/Context-engineering-gemini.git
cd Context-engineering-geminiFollow the setup guide in the repository to configure your Gemini CLI with the context engineering extensions.
# Start a reflexion cycle on your last output
/reflect
# Create a well-formatted commit
/git:commit
# Open a pull request with structured description
/git:pr
# Run code review with multiple judge agents
/critiqueGemini CLI
|
+-- Reflexion System (/reflect, /critique, /memorize)
| Self-refinement loop with multi-judge evaluation
|
+-- Git Workflow (/git:commit, /git:pr)
| Conventional commits, PR templates, branch management
|
+-- Development Patterns
TDD, subagent orchestration, parallel agents
MIT