# Gemini CLI Docs

> Skill: Gemini CLI

- Skill: `izzyfresh/gemini-cli-docs` (Agent Skill)
- Install (CLI): `npx skillmds@latest add izzyfresh/gemini-cli-docs`
- Raw SKILL.md: https://api.skillmd.com/api/skills/izzyfresh/gemini-cli-docs/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: IzzyFresh (https://skillmd.com/u/izzyfresh)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/izzyfresh/gemini-cli-docs

---

# Skill: Gemini CLI

This skill provides expert instructions for using the `gemini` CLI tool within agent workflows and development terminals.

---

## 1. Starting New Conversations
*   Initialize a new scoped conversation:
    ```bash
    gemini new-conversation "Provide a prompt for your agent here"
    ```
*   You can specify the model tier using the `--model` flag:
    ```bash
    gemini new-conversation --model=pro "Start a deep refactor workflow"
    ```

## 2. Communication Between Agents
*   Use the internal messaging subcommand to pass data between active agent engines:
    ```bash
    gemini send-message <RECIPIENT_ID> "Your payload content here"
    ```
*   This should be used exclusively for server-to-agent or agent-to-agent communications.

## 3. Code Translation Subcommands
*   Utilize translation capabilities to parse SQL, Python, or legacy codebases:
    ```bash
    gemini translate --source-dialect mssql --target-dialect bigquery --input-path ./queries/
    ```

