@thacio/auditaria 0.30.12 → 0.30.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -10
- package/bundle/docs/admin/enterprise-controls.md +115 -0
- package/bundle/docs/changelogs/index.md +20 -1
- package/bundle/docs/changelogs/latest.md +359 -293
- package/bundle/docs/changelogs/preview.md +296 -349
- package/bundle/docs/cli/checkpointing.md +2 -3
- package/bundle/docs/cli/cli-reference.md +4 -5
- package/bundle/docs/cli/commands.md +376 -650
- package/bundle/docs/cli/custom-commands.md +3 -0
- package/bundle/docs/cli/enterprise.md +1 -1
- package/bundle/docs/cli/gemini-md.md +20 -12
- package/bundle/docs/cli/headless.md +34 -372
- package/bundle/docs/cli/keyboard-shortcuts.md +36 -35
- package/bundle/docs/cli/plan-mode.md +5 -1
- package/bundle/docs/cli/rewind.md +11 -11
- package/bundle/docs/cli/session-management.md +61 -44
- package/bundle/docs/cli/settings.md +10 -5
- package/bundle/docs/cli/skills.md +15 -8
- package/bundle/docs/cli/themes.md +85 -51
- package/bundle/docs/cli/tutorials/automation.md +187 -0
- package/bundle/docs/cli/tutorials/file-management.md +142 -0
- package/bundle/docs/cli/tutorials/mcp-setup.md +105 -0
- package/bundle/docs/cli/tutorials/memory-management.md +126 -0
- package/bundle/docs/cli/tutorials/session-management.md +105 -0
- package/bundle/docs/cli/tutorials/shell-commands.md +107 -0
- package/bundle/docs/cli/tutorials/skills-getting-started.md +36 -31
- package/bundle/docs/cli/tutorials/task-planning.md +93 -0
- package/bundle/docs/cli/tutorials/web-tools.md +78 -0
- package/bundle/docs/core/policy-engine.md +4 -2
- package/bundle/docs/core/subagents.md +38 -38
- package/bundle/docs/extensions/best-practices.md +102 -53
- package/bundle/docs/extensions/index.md +37 -21
- package/bundle/docs/extensions/reference.md +148 -216
- package/bundle/docs/extensions/releasing.md +93 -122
- package/bundle/docs/extensions/writing-extensions.md +87 -76
- package/bundle/docs/get-started/configuration.md +103 -61
- package/bundle/docs/get-started/examples.md +39 -119
- package/bundle/docs/get-started/index.md +5 -4
- package/bundle/docs/get-started/installation.md +110 -77
- package/bundle/docs/index.md +156 -108
- package/bundle/docs/releases.md +2 -2
- package/bundle/docs/sidebar.json +101 -61
- package/bundle/docs/tools/activate-skill.md +43 -0
- package/bundle/docs/tools/ask-user.md +1 -1
- package/bundle/docs/tools/file-system.md +43 -133
- package/bundle/docs/tools/index.md +92 -91
- package/bundle/docs/tools/internal-docs.md +46 -0
- package/bundle/docs/tools/mcp-server.md +2 -2
- package/bundle/docs/tools/memory.md +21 -40
- package/bundle/docs/tools/shell.md +43 -88
- package/bundle/docs/tools/todos.md +22 -44
- package/bundle/docs/tools/web-fetch.md +22 -46
- package/bundle/docs/tools/web-search.md +19 -29
- package/bundle/gemini.js +138221 -136590
- package/bundle/mcp-bridge.js +154 -143
- package/bundle/node_modules/@browserbasehq/stagehand/dist/index.js +430 -257
- package/bundle/node_modules/@thacio/auditaria-search/dist/tsconfig.tsbuildinfo +1 -1
- package/bundle/web-client/components/EditorPanel.js +57 -36
- package/bundle/web-client/components/FileTreePanel.js +77 -2
- package/bundle/web-client/index.html +5 -1
- package/bundle/web-client/managers/EditorManager.js +190 -24
- package/bundle/web-client/styles/themes.css +376 -0
- package/bundle/web-client/utils/theme-manager.js +33 -1
- package/package.json +6 -6
- package/bundle/docs/architecture.md +0 -80
- package/bundle/docs/cli/index.md +0 -67
- package/bundle/docs/cli/tutorials.md +0 -87
- package/bundle/docs/get-started/configuration-v1.md +0 -882
|
@@ -1,43 +1,98 @@
|
|
|
1
|
-
# Gemini CLI installation, execution, and
|
|
1
|
+
# Gemini CLI installation, execution, and releases
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
installation methods and
|
|
3
|
+
This document provides an overview of Gemini CLI's sytem requriements,
|
|
4
|
+
installation methods, and release types.
|
|
5
5
|
|
|
6
|
-
##
|
|
6
|
+
## Recommended system specifications
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
- **Operating System:**
|
|
9
|
+
- macOS 15+
|
|
10
|
+
- Windows 11 24H2+
|
|
11
|
+
- Ubuntu 20.04+
|
|
12
|
+
- **Hardware:**
|
|
13
|
+
- "Casual" usage: 4GB+ RAM (short sessions, common tasks and edits)
|
|
14
|
+
- "Power" usage: 16GB+ RAM (long sessions, large codebases, deep context)
|
|
15
|
+
- **Runtime:** Node.js 20.0.0+
|
|
16
|
+
- **Shell:** Bash or Zsh
|
|
17
|
+
- **Location:**
|
|
18
|
+
[Gemini Code Assist supported locations](https://developers.google.com/gemini-code-assist/resources/available-locations#americas)
|
|
19
|
+
- **Internet connection required**
|
|
10
20
|
|
|
11
|
-
|
|
12
|
-
Gemini CLI.
|
|
13
|
-
- In a sandbox. This method offers increased security and isolation.
|
|
14
|
-
- From the source. This is recommended for contributors to the project.
|
|
21
|
+
## Install Gemini CLI
|
|
15
22
|
|
|
16
|
-
|
|
23
|
+
We recommend most users install Gemini CLI using one of the following
|
|
24
|
+
installation methods:
|
|
17
25
|
|
|
18
|
-
|
|
19
|
-
|
|
26
|
+
- npm
|
|
27
|
+
- Homebrew
|
|
28
|
+
- MacPorts
|
|
29
|
+
- Anaconda
|
|
20
30
|
|
|
21
|
-
-
|
|
31
|
+
Note that Gemini CLI comes pre-installed on
|
|
32
|
+
[**Cloud Shell**](https://docs.cloud.google.com/shell/docs) and
|
|
33
|
+
[**Cloud Workstations**](https://cloud.google.com/workstations).
|
|
22
34
|
|
|
23
|
-
|
|
24
|
-
npm install -g @google/gemini-cli
|
|
25
|
-
```
|
|
35
|
+
### Install globally with npm
|
|
26
36
|
|
|
27
|
-
|
|
37
|
+
```bash
|
|
38
|
+
npm install -g @google/gemini-cli
|
|
39
|
+
```
|
|
28
40
|
|
|
29
|
-
|
|
30
|
-
gemini
|
|
31
|
-
```
|
|
41
|
+
### Install globally with Homebrew (macOS/Linux)
|
|
32
42
|
|
|
33
|
-
|
|
43
|
+
```bash
|
|
44
|
+
brew install gemini-cli
|
|
45
|
+
```
|
|
34
46
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
47
|
+
### Install globally with MacPorts (macOS)
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
sudo port install gemini-cli
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### Install with Anaconda (for restricted environments)
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
# Create and activate a new environment
|
|
57
|
+
conda create -y -n gemini_env -c conda-forge nodejs
|
|
58
|
+
conda activate gemini_env
|
|
59
|
+
|
|
60
|
+
# Install Gemini CLI globally via npm (inside the environment)
|
|
61
|
+
npm install -g @google/gemini-cli
|
|
62
|
+
```
|
|
39
63
|
|
|
40
|
-
|
|
64
|
+
## Run Gemini CLI
|
|
65
|
+
|
|
66
|
+
For most users, we recommend running Gemini CLI with the `gemini` command:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
gemini
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
For a list of options and additional commands, see the
|
|
73
|
+
[CLI cheatsheet](/docs/cli/cli-reference.md).
|
|
74
|
+
|
|
75
|
+
You can also run Gemini CLI using one of the following advanced methods:
|
|
76
|
+
|
|
77
|
+
- Run instantly with npx. You can run Gemini CLI without permanent installation.
|
|
78
|
+
- In a sandbox. This method offers increased security and isolation.
|
|
79
|
+
- From the source. This is recommended for contributors to the project.
|
|
80
|
+
|
|
81
|
+
### Run instantly with npx
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
# Using npx (no installation required)
|
|
85
|
+
npx @google/gemini-cli
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
You can also execute the CLI directly from the main branch on GitHub, which is
|
|
89
|
+
helpful for testing features still in development:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
npx https://github.com/google-gemini/gemini-cli
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
### Run in a sandbox (Docker/Podman)
|
|
41
96
|
|
|
42
97
|
For security and isolation, Gemini CLI can be run inside a container. This is
|
|
43
98
|
the default way that the CLI executes tools that might have side effects.
|
|
@@ -56,7 +111,7 @@ the default way that the CLI executes tools that might have side effects.
|
|
|
56
111
|
gemini --sandbox -y -p "your prompt here"
|
|
57
112
|
```
|
|
58
113
|
|
|
59
|
-
###
|
|
114
|
+
### Run from source (recommended for Gemini CLI contributors)
|
|
60
115
|
|
|
61
116
|
Contributors to the project will want to run the CLI directly from the source
|
|
62
117
|
code.
|
|
@@ -79,63 +134,41 @@ code.
|
|
|
79
134
|
gemini
|
|
80
135
|
```
|
|
81
136
|
|
|
82
|
-
|
|
137
|
+
## Releases
|
|
138
|
+
|
|
139
|
+
Gemini CLI has three release channels: nightly, preview, and stable. For most
|
|
140
|
+
users, we recommend the stable release, which is the default installation.
|
|
83
141
|
|
|
84
|
-
###
|
|
142
|
+
### Stable
|
|
85
143
|
|
|
86
|
-
|
|
87
|
-
|
|
144
|
+
New stable releases are published each week. The stable release is the promotion
|
|
145
|
+
of last week's `preview` release along with any bug fixes. The stable release
|
|
146
|
+
uses `latest` tag, but omitting the tag also installs the latest stable release
|
|
147
|
+
by default:
|
|
88
148
|
|
|
89
149
|
```bash
|
|
90
|
-
#
|
|
91
|
-
|
|
150
|
+
# Both commands install the latest stable release.
|
|
151
|
+
npm install -g @google/gemini-cli
|
|
152
|
+
npm install -g @google/gemini-cli@latest
|
|
92
153
|
```
|
|
93
154
|
|
|
94
|
-
|
|
155
|
+
### Preview
|
|
95
156
|
|
|
96
|
-
|
|
97
|
-
|
|
157
|
+
New preview releases will be published each week. These releases are not fully
|
|
158
|
+
vetted and may contain regressions or other outstanding issues. Try out the
|
|
159
|
+
preview release by using the `preview` tag:
|
|
98
160
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
registry:
|
|
103
|
-
|
|
104
|
-
- `@google/gemini-cli-core`: The backend, handling logic and tool execution.
|
|
105
|
-
- `@google/gemini-cli`: The user-facing frontend.
|
|
106
|
-
|
|
107
|
-
These packages are used when performing the standard installation and when
|
|
108
|
-
running Gemini CLI from the source.
|
|
109
|
-
|
|
110
|
-
**Build and packaging processes**
|
|
111
|
-
|
|
112
|
-
There are two distinct build processes used, depending on the distribution
|
|
113
|
-
channel:
|
|
114
|
-
|
|
115
|
-
- **NPM publication:** For publishing to the NPM registry, the TypeScript source
|
|
116
|
-
code in `@google/gemini-cli-core` and `@google/gemini-cli` is transpiled into
|
|
117
|
-
standard JavaScript using the TypeScript Compiler (`tsc`). The resulting
|
|
118
|
-
`dist/` directory is what gets published in the NPM package. This is a
|
|
119
|
-
standard approach for TypeScript libraries.
|
|
120
|
-
|
|
121
|
-
- **GitHub `npx` execution:** When running the latest version of Gemini CLI
|
|
122
|
-
directly from GitHub, a different process is triggered by the `prepare` script
|
|
123
|
-
in `package.json`. This script uses `esbuild` to bundle the entire application
|
|
124
|
-
and its dependencies into a single, self-contained JavaScript file. This
|
|
125
|
-
bundle is created on-the-fly on the user's machine and is not checked into the
|
|
126
|
-
repository.
|
|
127
|
-
|
|
128
|
-
**Docker sandbox image**
|
|
129
|
-
|
|
130
|
-
The Docker-based execution method is supported by the `gemini-cli-sandbox`
|
|
131
|
-
container image. This image is published to a container registry and contains a
|
|
132
|
-
pre-installed, global version of Gemini CLI.
|
|
161
|
+
```bash
|
|
162
|
+
npm install -g @google/gemini-cli@preview
|
|
163
|
+
```
|
|
133
164
|
|
|
134
|
-
|
|
165
|
+
### Nightly
|
|
135
166
|
|
|
136
|
-
|
|
137
|
-
|
|
167
|
+
Nightly releases are published every day. The nightly release includes all
|
|
168
|
+
changes from the main branch at time of release. It should be assumed there are
|
|
169
|
+
pending validations and issues. You can help test the latest changes by
|
|
170
|
+
installing with the `nightly` tag:
|
|
138
171
|
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
172
|
+
```bash
|
|
173
|
+
npm install -g @google/gemini-cli@nightly
|
|
174
|
+
```
|
package/bundle/docs/index.md
CHANGED
|
@@ -1,121 +1,169 @@
|
|
|
1
1
|
# Gemini CLI documentation
|
|
2
2
|
|
|
3
|
-
Gemini CLI
|
|
4
|
-
|
|
5
|
-
powerful tool for developers, engineers, SREs, and beyond.
|
|
6
|
-
|
|
7
|
-
Gemini CLI integrates with your local environment. It can read and edit files,
|
|
8
|
-
execute shell commands, and search the web, all while maintaining your project
|
|
3
|
+
Gemini CLI brings the power of Gemini models directly into your terminal. Use it
|
|
4
|
+
to understand code, automate tasks, and build workflows with your local project
|
|
9
5
|
context.
|
|
10
6
|
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @google/gemini-cli
|
|
11
|
+
```
|
|
12
|
+
|
|
11
13
|
## Get started
|
|
12
14
|
|
|
13
|
-
|
|
14
|
-
the basics.
|
|
15
|
+
Jump in to Gemini CLI.
|
|
15
16
|
|
|
16
|
-
- **[Quickstart](./get-started/index.md):**
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
17
|
+
- **[Quickstart](./get-started/index.md):** Your first session with Gemini CLI.
|
|
18
|
+
- **[Installation](./get-started/installation.md):** How to install Gemini CLI
|
|
19
|
+
on your system.
|
|
20
|
+
- **[Authentication](./get-started/authentication.md):** Setup instructions for
|
|
21
|
+
personal and enterprise accounts.
|
|
22
|
+
- **[Examples](./get-started/examples.md):** Practical examples of Gemini CLI in
|
|
23
|
+
action.
|
|
24
|
+
- **[Cheatsheet](./cli/cli-reference.md):** A quick reference for common
|
|
25
|
+
commands and options.
|
|
24
26
|
|
|
25
27
|
## Use Gemini CLI
|
|
26
28
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
29
|
+
User-focused guides and tutorials for daily development workflows.
|
|
30
|
+
|
|
31
|
+
- **[File management](./cli/tutorials/file-management.md):** How to work with
|
|
32
|
+
local files and directories.
|
|
33
|
+
- **[Get started with Agent skills](./cli/tutorials/skills-getting-started.md):**
|
|
34
|
+
Getting started with specialized expertise.
|
|
35
|
+
- **[Manage context and memory](./cli/tutorials/memory-management.md):**
|
|
36
|
+
Managing persistent instructions and facts.
|
|
37
|
+
- **[Execute shell commands](./cli/tutorials/shell-commands.md):** Executing
|
|
38
|
+
system commands safely.
|
|
39
|
+
- **[Manage sessions and history](./cli/tutorials/session-management.md):**
|
|
40
|
+
Resuming, managing, and rewinding conversations.
|
|
41
|
+
- **[Plan tasks with todos](./cli/tutorials/task-planning.md):** Using todos for
|
|
42
|
+
complex workflows.
|
|
43
|
+
- **[Web search and fetch](./cli/tutorials/web-tools.md):** Searching and
|
|
44
|
+
fetching content from the web.
|
|
45
|
+
- **[Set up an MCP server](./cli/tutorials/mcp-setup.md):** Set up an MCP
|
|
46
|
+
server.
|
|
47
|
+
- **[Automate tasks](./cli/tutorials/automation.md):** Automate tasks.
|
|
48
|
+
|
|
49
|
+
## Features
|
|
50
|
+
|
|
51
|
+
Technical reference documentation for each capability of Gemini CLI.
|
|
52
|
+
|
|
53
|
+
- **[/about](./cli/commands.md#about):** About Gemini CLI.
|
|
54
|
+
- **[/auth](./get-started/authentication.md):** Authentication.
|
|
55
|
+
- **[/bug](./cli/commands.md#bug):** Report a bug.
|
|
56
|
+
- **[/chat](./cli/commands.md#chat):** Chat history.
|
|
57
|
+
- **[/clear](./cli/commands.md#clear):** Clear screen.
|
|
58
|
+
- **[/compress](./cli/commands.md#compress):** Compress context.
|
|
59
|
+
- **[/copy](./cli/commands.md#copy):** Copy output.
|
|
60
|
+
- **[/directory](./cli/commands.md#directory-or-dir):** Manage workspace.
|
|
61
|
+
- **[/docs](./cli/commands.md#docs):** Open documentation.
|
|
62
|
+
- **[/editor](./cli/commands.md#editor):** Select editor.
|
|
63
|
+
- **[/extensions](./extensions/index.md):** Manage extensions.
|
|
64
|
+
- **[/help](./cli/commands.md#help-or):** Show help.
|
|
65
|
+
- **[/hooks](./hooks/index.md):** Hooks.
|
|
66
|
+
- **[/ide](./ide-integration/index.md):** IDE integration.
|
|
67
|
+
- **[/init](./cli/commands.md#init):** Initialize context.
|
|
68
|
+
- **[/mcp](./tools/mcp-server.md):** MCP servers.
|
|
69
|
+
- **[/memory](./cli/commands.md#memory):** Manage memory.
|
|
70
|
+
- **[/model](./cli/model.md):** Model selection.
|
|
71
|
+
- **[/policies](./cli/commands.md#policies):** Manage policies.
|
|
72
|
+
- **[/privacy](./cli/commands.md#privacy):** Privacy notice.
|
|
73
|
+
- **[/quit](./cli/commands.md#quit-or-exit):** Exit CLI.
|
|
74
|
+
- **[/restore](./cli/checkpointing.md):** Restore files.
|
|
75
|
+
- **[/resume](./cli/commands.md#resume):** Resume session.
|
|
76
|
+
- **[/rewind](./cli/rewind.md):** Rewind.
|
|
77
|
+
- **[/settings](./cli/settings.md):** Settings.
|
|
78
|
+
- **[/setup-github](./cli/commands.md#setup-github):** GitHub setup.
|
|
79
|
+
- **[/shells](./cli/commands.md#shells-or-bashes):** Manage processes.
|
|
80
|
+
- **[/skills](./cli/skills.md):** Agent skills.
|
|
81
|
+
- **[/stats](./cli/commands.md#stats):** Session statistics.
|
|
82
|
+
- **[/terminal-setup](./cli/commands.md#terminal-setup):** Terminal keybindings.
|
|
83
|
+
- **[/theme](./cli/themes.md):** Themes.
|
|
84
|
+
- **[/tools](./cli/commands.md#tools):** List tools.
|
|
85
|
+
- **[/vim](./cli/commands.md#vim):** Vim mode.
|
|
86
|
+
- **[Activate skill (tool)](./tools/activate-skill.md):** Internal mechanism for
|
|
87
|
+
loading expert procedures.
|
|
88
|
+
- **[Ask user (tool)](./tools/ask-user.md):** Internal dialog system for
|
|
89
|
+
clarification.
|
|
90
|
+
- **[Checkpointing](./cli/checkpointing.md):** Automatic session snapshots.
|
|
91
|
+
- **[File system (tool)](./tools/file-system.md):** Technical details for local
|
|
92
|
+
file operations.
|
|
93
|
+
- **[Headless mode](./cli/headless.md):** Programmatic and scripting interface.
|
|
94
|
+
- **[Internal documentation (tool)](./tools/internal-docs.md):** Technical
|
|
95
|
+
lookup for CLI features.
|
|
96
|
+
- **[Memory (tool)](./tools/memory.md):** Storage details for persistent facts.
|
|
97
|
+
- **[Model routing](./cli/model-routing.md):** Automatic fallback resilience.
|
|
98
|
+
- **[Plan mode 🧪](./cli/plan-mode.md):** Use a safe, read-only mode for
|
|
99
|
+
planning complex changes.
|
|
100
|
+
- **[Remote subagents 🧪](./core/remote-agents.md):** Connecting to and using
|
|
101
|
+
remote agents.
|
|
102
|
+
- **[Sandboxing](./cli/sandbox.md):** Isolate tool execution.
|
|
103
|
+
- **[Shell (tool)](./tools/shell.md):** Detailed system execution parameters.
|
|
104
|
+
- **[Subagents 🧪](./core/subagents.md):** Using specialized agents for specific
|
|
105
|
+
tasks.
|
|
106
|
+
- **[Telemetry](./cli/telemetry.md):** Usage and performance metric details.
|
|
107
|
+
- **[Todo (tool)](./tools/todos.md):** Progress tracking specification.
|
|
108
|
+
- **[Token caching](./cli/token-caching.md):** Performance optimization.
|
|
109
|
+
- **[Web fetch (tool)](./tools/web-fetch.md):** URL retrieval and extraction
|
|
110
|
+
details.
|
|
111
|
+
- **[Web search (tool)](./tools/web-search.md):** Google Search integration
|
|
112
|
+
technicals.
|
|
44
113
|
|
|
45
114
|
## Configuration
|
|
46
115
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
- **[
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
- **[
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
- **[
|
|
70
|
-
|
|
71
|
-
- **[
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
- **[
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
- **[
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
- **[
|
|
89
|
-
|
|
90
|
-
- **[
|
|
91
|
-
|
|
92
|
-
- **[
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
- **[
|
|
100
|
-
|
|
101
|
-
- **[IDE integration](./ide-integration/index.md):** Use Gemini CLI alongside VS
|
|
102
|
-
Code.
|
|
103
|
-
- **[Hooks](./hooks/index.md):** Write scripts that run on specific CLI events.
|
|
104
|
-
- **[Agent skills](./cli/skills.md):** Add specialized expertise and workflows.
|
|
105
|
-
- **[Sub-agents](./core/subagents.md):** (Preview) Delegate tasks to specialized
|
|
106
|
-
agents.
|
|
107
|
-
|
|
108
|
-
## Development and reference
|
|
109
|
-
|
|
110
|
-
Deep dive into the architecture and contribute to the project.
|
|
111
|
-
|
|
112
|
-
- **[Architecture](./architecture.md):** Understand the technical design of
|
|
113
|
-
Gemini CLI.
|
|
114
|
-
- **[Command reference](./cli/commands.md):** A complete list of available
|
|
115
|
-
commands.
|
|
116
|
-
- **[Local development](./local-development.md):** Set up your environment to
|
|
117
|
-
contribute to Gemini CLI.
|
|
118
|
-
- **[Contributing](../CONTRIBUTING.md):** Learn how to submit pull requests and
|
|
119
|
-
report issues.
|
|
120
|
-
- **[FAQ](./faq.md):** Answers to common questions.
|
|
121
|
-
- **[Troubleshooting](./troubleshooting.md):** Solutions for common issues.
|
|
116
|
+
Settings and customization options for Gemini CLI.
|
|
117
|
+
|
|
118
|
+
- **[Custom commands](./cli/custom-commands.md):** Personalized shortcuts.
|
|
119
|
+
- **[Enterprise configuration](./cli/enterprise.md):** Professional environment
|
|
120
|
+
controls.
|
|
121
|
+
- **[Ignore files (.geminiignore)](./cli/gemini-ignore.md):** Exclusion pattern
|
|
122
|
+
reference.
|
|
123
|
+
- **[Model configuration](./cli/generation-settings.md):** Fine-tune generation
|
|
124
|
+
parameters like temperature and thinking budget.
|
|
125
|
+
- **[Project context (GEMINI.md)](./cli/gemini-md.md):** Technical hierarchy of
|
|
126
|
+
context files.
|
|
127
|
+
- **[Settings](./cli/settings.md):** Full configuration reference.
|
|
128
|
+
- **[System prompt override](./cli/system-prompt.md):** Instruction replacement
|
|
129
|
+
logic.
|
|
130
|
+
- **[Themes](./cli/themes.md):** UI personalization technical guide.
|
|
131
|
+
- **[Trusted folders](./cli/trusted-folders.md):** Security permission logic.
|
|
132
|
+
|
|
133
|
+
## Reference
|
|
134
|
+
|
|
135
|
+
Deep technical documentation and API specifications.
|
|
136
|
+
|
|
137
|
+
- **[Command reference](./cli/commands.md):** Detailed slash command guide.
|
|
138
|
+
- **[Configuration reference](./get-started/configuration.md):** Settings and
|
|
139
|
+
environment variables.
|
|
140
|
+
- **[Keyboard shortcuts](./cli/keyboard-shortcuts.md):** Productivity tips.
|
|
141
|
+
- **[Memory import processor](./core/memport.md):** How Gemini CLI processes
|
|
142
|
+
memory from various sources.
|
|
143
|
+
- **[Policy engine](./core/policy-engine.md):** Fine-grained execution control.
|
|
144
|
+
- **[Tools API](./core/tools-api.md):** The API for defining and using tools.
|
|
145
|
+
|
|
146
|
+
## Resources
|
|
147
|
+
|
|
148
|
+
Support, release history, and legal information.
|
|
149
|
+
|
|
150
|
+
- **[FAQ](./faq.md):** Answers to frequently asked questions.
|
|
151
|
+
- **[Changelogs](./changelogs/index.md):** Highlights and notable changes.
|
|
152
|
+
- **[Quota and pricing](./quota-and-pricing.md):** Limits and billing details.
|
|
153
|
+
- **[Terms and privacy](./tos-privacy.md):** Official notices and terms.
|
|
154
|
+
|
|
155
|
+
## Development
|
|
156
|
+
|
|
157
|
+
- **[Contribution guide](/docs/contributing):** How to contribute to Gemini CLI.
|
|
158
|
+
- **[Integration testing](./integration-tests.md):** Running integration tests.
|
|
159
|
+
- **[Issue and PR automation](./issue-and-pr-automation.md):** Automation for
|
|
160
|
+
issues and pull requests.
|
|
161
|
+
- **[Local development](./local-development.md):** Setting up a local
|
|
162
|
+
development environment.
|
|
163
|
+
- **[NPM package structure](./npm.md):** The structure of the NPM packages.
|
|
164
|
+
|
|
165
|
+
## Releases
|
|
166
|
+
|
|
167
|
+
- **[Release notes](./changelogs/index.md):** Release notes for all versions.
|
|
168
|
+
- **[Stable release](./changelogs/latest.md):** The latest stable release.
|
|
169
|
+
- **[Preview release](./changelogs/preview.md):** The latest preview release.
|
package/bundle/docs/releases.md
CHANGED
|
@@ -29,7 +29,7 @@ or if we have to deviate from it. Our weekly releases will be minor version
|
|
|
29
29
|
increments and any bug or hotfixes between releases will go out as patch
|
|
30
30
|
versions on the most recent release.
|
|
31
31
|
|
|
32
|
-
Each Tuesday ~
|
|
32
|
+
Each Tuesday ~20:00 UTC new Stable and Preview releases will be cut. The
|
|
33
33
|
promotion flow is:
|
|
34
34
|
|
|
35
35
|
- Code is committed to main and pushed each night to nightly
|
|
@@ -58,7 +58,7 @@ npm install -g @thacio/auditaria@latest
|
|
|
58
58
|
|
|
59
59
|
### Nightly
|
|
60
60
|
|
|
61
|
-
- New releases will be published each day at UTC
|
|
61
|
+
- New releases will be published each day at UTC 00:00. This will be all changes
|
|
62
62
|
from the main branch as represented at time of release. It should be assumed
|
|
63
63
|
there are pending validations and issues. Use `nightly` tag.
|
|
64
64
|
|