Skip to content

Gemini Gemini

Setup Gemini to correctly generate Avo code based on your prompt.

Quick use

Paste the docs link before your prompt in a normal chat and Gemini will read the page (no Deep Research needed — that's a long-running research agent that outputs a report, not code):

bash
https://docs.avohq.io/3.0/docs-map.md

For example:

bash
https://docs.avohq.io/3.0/docs-map.md create an Avo resource for a product model

Gemini CLI

Gemini CLI reads the GEMINI.md file from your repository. Add a line pointing to Avo's docs:

bash
When working with Avo, use the docs at https://docs.avohq.io/3.0/docs-map.md as a reference.

MCP server

I suggest using Context7 MCP server which provides many libraries including Avo's docs.

Add this to .gemini/settings.json in your project (or ~/.gemini/settings.json to enable it globally):

json
{
  "mcpServers": {
    "context7": {
      "command": "npx",
      "args": ["-y", "@upstash/context7-mcp@latest"]
    }
  }
}

Now you can ask Gemini CLI anything about Avo, and write use context7 at the end of your prompt.