Initial commit of Gemini Code CLI
This commit introduces the initial codebase for the Gemini Code CLI, a command-line interface designed to facilitate interaction with the Gemini API for software engineering tasks.
The code was migrated from a previous git repository as a single squashed commit.
Core Features & Components:
* **Gemini Integration:** Leverages the `@google/genai` SDK to interact with the Gemini models, supporting chat history, streaming responses, and function calling (tools).
* **Terminal UI:** Built with Ink (React for CLIs) providing an interactive chat interface within the terminal, including input prompts, message display, loading indicators, and tool interaction elements.
* **Tooling Framework:** Implements a robust tool system allowing Gemini to interact with the local environment. Includes tools for:
* File system listing (`ls`)
* File reading (`read-file`)
* Content searching (`grep`)
* File globbing (`glob`)
* File editing (`edit`)
* File writing (`write-file`)
* Executing bash commands (`terminal`)
* **State Management:** Handles the streaming state of Gemini responses and manages the conversation history.
* **Configuration:** Parses command-line arguments (`yargs`) and loads environment variables (`dotenv`) for setup.
* **Project Structure:** Organized into `core`, `ui`, `tools`, `config`, and `utils` directories using TypeScript. Includes basic build (`tsc`) and start scripts.
This initial version establishes the foundation for a powerful CLI tool enabling developers to use Gemini for coding assistance directly in their terminal environment.
---
Created by yours truly: __Gemini Code__
2025-04-15 21:41:08 -07:00
|
|
|
{
|
2025-04-17 17:57:39 -04:00
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
|
"version": "0.2.0",
|
|
|
|
|
"configurations": [
|
2025-06-16 08:27:29 -07:00
|
|
|
{
|
|
|
|
|
"type": "node",
|
|
|
|
|
"request": "launch",
|
2025-08-12 14:53:11 -04:00
|
|
|
"name": "Build & Launch CLI",
|
2025-06-16 08:27:29 -07:00
|
|
|
"runtimeExecutable": "npm",
|
2025-08-12 14:53:11 -04:00
|
|
|
"runtimeArgs": ["run", "build-and-start"],
|
2025-06-16 08:27:29 -07:00
|
|
|
"skipFiles": ["<node_internals>/**"],
|
2025-07-06 20:16:42 -07:00
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
|
"env": {
|
|
|
|
|
"GEMINI_SANDBOX": "false"
|
|
|
|
|
}
|
2025-06-16 08:27:29 -07:00
|
|
|
},
|
2025-07-24 01:32:55 -04:00
|
|
|
{
|
|
|
|
|
"name": "Launch Companion VS Code Extension",
|
|
|
|
|
"type": "extensionHost",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"args": [
|
|
|
|
|
"--extensionDevelopmentPath=${workspaceFolder}/packages/vscode-ide-companion"
|
|
|
|
|
],
|
|
|
|
|
"outFiles": [
|
|
|
|
|
"${workspaceFolder}/packages/vscode-ide-companion/dist/**/*.js"
|
|
|
|
|
],
|
|
|
|
|
"preLaunchTask": "npm: build: vscode-ide-companion"
|
|
|
|
|
},
|
2025-04-17 17:57:39 -04:00
|
|
|
{
|
|
|
|
|
"name": "Attach",
|
|
|
|
|
"port": 9229,
|
|
|
|
|
"request": "attach",
|
|
|
|
|
"skipFiles": ["<node_internals>/**"],
|
2025-04-21 19:04:00 -07:00
|
|
|
"type": "node",
|
2025-04-28 12:44:34 -07:00
|
|
|
// fix source mapping when debugging in sandbox using global installation
|
|
|
|
|
// note this does not interfere when remoteRoot is also ${workspaceFolder}/packages
|
2025-06-07 14:27:22 -07:00
|
|
|
"remoteRoot": "/usr/local/share/npm-global/lib/node_modules/@gemini-cli",
|
2025-04-21 19:04:00 -07:00
|
|
|
"localRoot": "${workspaceFolder}/packages"
|
2025-04-17 17:57:39 -04:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "node",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"name": "Launch Program",
|
|
|
|
|
"skipFiles": ["<node_internals>/**"],
|
|
|
|
|
"program": "${file}",
|
|
|
|
|
"outFiles": ["${workspaceFolder}/**/*.js"]
|
2025-05-16 11:58:37 -07:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "node",
|
|
|
|
|
"request": "launch",
|
2025-05-31 01:22:23 -07:00
|
|
|
"name": "Debug Test File",
|
2025-05-16 11:58:37 -07:00
|
|
|
"runtimeExecutable": "npm",
|
|
|
|
|
"runtimeArgs": [
|
|
|
|
|
"run",
|
|
|
|
|
"test",
|
|
|
|
|
"-w",
|
2025-06-02 00:07:10 -07:00
|
|
|
"packages",
|
2025-05-16 11:58:37 -07:00
|
|
|
"--",
|
|
|
|
|
"--inspect-brk=9229",
|
|
|
|
|
"--no-file-parallelism",
|
2025-05-31 01:22:23 -07:00
|
|
|
"${input:testFile}"
|
2025-05-16 11:58:37 -07:00
|
|
|
],
|
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
|
"internalConsoleOptions": "neverOpen",
|
|
|
|
|
"skipFiles": ["<node_internals>/**"]
|
2025-08-20 08:32:08 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Debug Integration Test File",
|
|
|
|
|
"type": "node",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"runtimeExecutable": "npx",
|
|
|
|
|
"runtimeArgs": [
|
|
|
|
|
"vitest",
|
|
|
|
|
"run",
|
|
|
|
|
"--root",
|
|
|
|
|
"./integration-tests",
|
|
|
|
|
"--inspect-brk=9229",
|
|
|
|
|
"${file}"
|
|
|
|
|
],
|
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
|
"internalConsoleOptions": "neverOpen",
|
|
|
|
|
"skipFiles": ["<node_internals>/**"],
|
|
|
|
|
"env": {
|
|
|
|
|
"GEMINI_SANDBOX": "false"
|
|
|
|
|
}
|
2025-05-31 01:22:23 -07:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"inputs": [
|
2025-05-29 22:30:18 +00:00
|
|
|
{
|
2025-05-31 01:22:23 -07:00
|
|
|
"id": "testFile",
|
|
|
|
|
"type": "promptString",
|
|
|
|
|
"description": "Enter the path to the test file (e.g., ${workspaceFolder}/packages/cli/src/ui/components/LoadingIndicator.test.tsx)",
|
|
|
|
|
"default": "${workspaceFolder}/packages/cli/src/ui/components/LoadingIndicator.test.tsx"
|
2025-04-17 17:57:39 -04:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|