Design.dev design.dev
AI Tools

GEMINI.md Generator

Generate GEMINI.md files for Gemini CLI — persistent project memory loaded automatically every session. Build commands, code style, architecture notes, @file imports, and gotchas.

3 Tech Stack Choose your stack

4 Build & Test Commands Optional

5 Code Style & Conventions Customize behavior

7 Gotchas & Anti-Patterns Optional

8 Environment Variables Names only

List variable names only — never paste secret values into GEMINI.md. The file is committed and read by every session.

9 File Imports @path/to/file

Gemini CLI resolves @path/to/file imports and inlines their content. Use for additional docs, style guides, or sub-GEMINI.md files.

10 Scope Where it lives

Preview 0 lines

GEMINI.md

							

Where to place your file

my-project/
├── GEMINI.md          ← loaded automatically by Gemini CLI
├── src/
│   └── feature/
│       └── GEMINI.md  ← directory-scoped memory (auto-loaded for files in src/feature/)
└── ...

All scopes Gemini CLI reads:

./GEMINI.mdProject — shared via git src/<dir>/GEMINI.mdDirectory — auto-loaded by path ~/.gemini/GEMINI.mdUser — global across all projects
Copied to clipboard!