@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.
Files changed (68) hide show
  1. package/README.md +14 -10
  2. package/bundle/docs/admin/enterprise-controls.md +115 -0
  3. package/bundle/docs/changelogs/index.md +20 -1
  4. package/bundle/docs/changelogs/latest.md +359 -293
  5. package/bundle/docs/changelogs/preview.md +296 -349
  6. package/bundle/docs/cli/checkpointing.md +2 -3
  7. package/bundle/docs/cli/cli-reference.md +4 -5
  8. package/bundle/docs/cli/commands.md +376 -650
  9. package/bundle/docs/cli/custom-commands.md +3 -0
  10. package/bundle/docs/cli/enterprise.md +1 -1
  11. package/bundle/docs/cli/gemini-md.md +20 -12
  12. package/bundle/docs/cli/headless.md +34 -372
  13. package/bundle/docs/cli/keyboard-shortcuts.md +36 -35
  14. package/bundle/docs/cli/plan-mode.md +5 -1
  15. package/bundle/docs/cli/rewind.md +11 -11
  16. package/bundle/docs/cli/session-management.md +61 -44
  17. package/bundle/docs/cli/settings.md +10 -5
  18. package/bundle/docs/cli/skills.md +15 -8
  19. package/bundle/docs/cli/themes.md +85 -51
  20. package/bundle/docs/cli/tutorials/automation.md +187 -0
  21. package/bundle/docs/cli/tutorials/file-management.md +142 -0
  22. package/bundle/docs/cli/tutorials/mcp-setup.md +105 -0
  23. package/bundle/docs/cli/tutorials/memory-management.md +126 -0
  24. package/bundle/docs/cli/tutorials/session-management.md +105 -0
  25. package/bundle/docs/cli/tutorials/shell-commands.md +107 -0
  26. package/bundle/docs/cli/tutorials/skills-getting-started.md +36 -31
  27. package/bundle/docs/cli/tutorials/task-planning.md +93 -0
  28. package/bundle/docs/cli/tutorials/web-tools.md +78 -0
  29. package/bundle/docs/core/policy-engine.md +4 -2
  30. package/bundle/docs/core/subagents.md +38 -38
  31. package/bundle/docs/extensions/best-practices.md +102 -53
  32. package/bundle/docs/extensions/index.md +37 -21
  33. package/bundle/docs/extensions/reference.md +148 -216
  34. package/bundle/docs/extensions/releasing.md +93 -122
  35. package/bundle/docs/extensions/writing-extensions.md +87 -76
  36. package/bundle/docs/get-started/configuration.md +103 -61
  37. package/bundle/docs/get-started/examples.md +39 -119
  38. package/bundle/docs/get-started/index.md +5 -4
  39. package/bundle/docs/get-started/installation.md +110 -77
  40. package/bundle/docs/index.md +156 -108
  41. package/bundle/docs/releases.md +2 -2
  42. package/bundle/docs/sidebar.json +101 -61
  43. package/bundle/docs/tools/activate-skill.md +43 -0
  44. package/bundle/docs/tools/ask-user.md +1 -1
  45. package/bundle/docs/tools/file-system.md +43 -133
  46. package/bundle/docs/tools/index.md +92 -91
  47. package/bundle/docs/tools/internal-docs.md +46 -0
  48. package/bundle/docs/tools/mcp-server.md +2 -2
  49. package/bundle/docs/tools/memory.md +21 -40
  50. package/bundle/docs/tools/shell.md +43 -88
  51. package/bundle/docs/tools/todos.md +22 -44
  52. package/bundle/docs/tools/web-fetch.md +22 -46
  53. package/bundle/docs/tools/web-search.md +19 -29
  54. package/bundle/gemini.js +138221 -136590
  55. package/bundle/mcp-bridge.js +154 -143
  56. package/bundle/node_modules/@browserbasehq/stagehand/dist/index.js +430 -257
  57. package/bundle/node_modules/@thacio/auditaria-search/dist/tsconfig.tsbuildinfo +1 -1
  58. package/bundle/web-client/components/EditorPanel.js +57 -36
  59. package/bundle/web-client/components/FileTreePanel.js +77 -2
  60. package/bundle/web-client/index.html +5 -1
  61. package/bundle/web-client/managers/EditorManager.js +190 -24
  62. package/bundle/web-client/styles/themes.css +376 -0
  63. package/bundle/web-client/utils/theme-manager.js +33 -1
  64. package/package.json +6 -6
  65. package/bundle/docs/architecture.md +0 -80
  66. package/bundle/docs/cli/index.md +0 -67
  67. package/bundle/docs/cli/tutorials.md +0 -87
  68. package/bundle/docs/get-started/configuration-v1.md +0 -882
@@ -1,43 +1,98 @@
1
- # Gemini CLI installation, execution, and deployment
1
+ # Gemini CLI installation, execution, and releases
2
2
 
3
- Install and run Gemini CLI. This document provides an overview of Gemini CLI's
4
- installation methods and deployment architecture.
3
+ This document provides an overview of Gemini CLI's sytem requriements,
4
+ installation methods, and release types.
5
5
 
6
- ## How to install and/or run Gemini CLI
6
+ ## Recommended system specifications
7
7
 
8
- There are several ways to run Gemini CLI. The recommended option depends on how
9
- you intend to use Gemini CLI.
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
- - As a standard installation. This is the most straightforward method of using
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
- ### 1. Standard installation (recommended for standard users)
23
+ We recommend most users install Gemini CLI using one of the following
24
+ installation methods:
17
25
 
18
- This is the recommended way for end-users to install Gemini CLI. It involves
19
- downloading the Gemini CLI package from the NPM registry.
26
+ - npm
27
+ - Homebrew
28
+ - MacPorts
29
+ - Anaconda
20
30
 
21
- - **Global install:**
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
- ```bash
24
- npm install -g @google/gemini-cli
25
- ```
35
+ ### Install globally with npm
26
36
 
27
- Then, run the CLI from anywhere:
37
+ ```bash
38
+ npm install -g @google/gemini-cli
39
+ ```
28
40
 
29
- ```bash
30
- gemini
31
- ```
41
+ ### Install globally with Homebrew (macOS/Linux)
32
42
 
33
- - **NPX execution:**
43
+ ```bash
44
+ brew install gemini-cli
45
+ ```
34
46
 
35
- ```bash
36
- # Execute the latest version from NPM without a global install
37
- npx @google/gemini-cli
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
- ### 2. Run in a sandbox (Docker/Podman)
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
- ### 3. Run from source (recommended for Gemini CLI contributors)
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
- ### 4. Running the latest Gemini CLI commit from GitHub
142
+ ### Stable
85
143
 
86
- You can run the most recently committed version of Gemini CLI directly from the
87
- GitHub repository. This is useful for testing features still in development.
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
- # Execute the CLI directly from the main branch on GitHub
91
- npx https://github.com/google-gemini/gemini-cli
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
- ## Deployment architecture
155
+ ### Preview
95
156
 
96
- The execution methods described above are made possible by the following
97
- architectural components and processes:
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
- **NPM packages**
100
-
101
- Gemini CLI project is a monorepo that publishes two core packages to the NPM
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
- ## Release process
165
+ ### Nightly
135
166
 
136
- The release process is automated through GitHub Actions. The release workflow
137
- performs the following actions:
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
- 1. Build the NPM packages using `tsc`.
140
- 2. Publish the NPM packages to the artifact registry.
141
- 3. Create GitHub releases with bundled assets.
172
+ ```bash
173
+ npm install -g @google/gemini-cli@nightly
174
+ ```
@@ -1,121 +1,169 @@
1
1
  # Gemini CLI documentation
2
2
 
3
- Gemini CLI is an open-source AI agent that brings the power of Gemini directly
4
- into your terminal. It is designed to be a terminal-first, extensible, and
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
- Begin your journey with Gemini CLI by setting up your environment and learning
14
- the basics.
15
+ Jump in to Gemini CLI.
15
16
 
16
- - **[Quickstart](./get-started/index.md):** A streamlined guide to get you
17
- chatting in minutes.
18
- - **[Installation](./get-started/installation.md):** Instructions for macOS,
19
- Linux, and Windows.
20
- - **[Authentication](./get-started/authentication.md):** Set up access using
21
- Google OAuth, API keys, or Vertex AI.
22
- - **[Examples](./get-started/examples.md):** View common usage scenarios to
23
- inspire your own workflows.
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
- Master the core capabilities that let Gemini CLI interact with your system
28
- safely and effectively.
29
-
30
- - **[Using the CLI](./cli/index.md):** Learn the basics of the command-line
31
- interface.
32
- - **[File management](./tools/file-system.md):** Grant the model the ability to
33
- read code and apply changes directly to your files.
34
- - **[Shell commands](./tools/shell.md):** Allow the model to run builds, tests,
35
- and git commands.
36
- - **[Memory management](./tools/memory.md):** Teach Gemini CLI facts about your
37
- project and preferences that persist across sessions.
38
- - **[Project context](./cli/gemini-md.md):** Use `GEMINI.md` files to provide
39
- persistent context for your projects.
40
- - **[Web search and fetch](./tools/web-search.md):** Enable the model to fetch
41
- real-time information from the internet.
42
- - **[Session management](./cli/session-management.md):** Save, resume, and
43
- organize your chat sessions.
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
- Customize Gemini CLI to match your workflow and preferences.
48
-
49
- - **[Settings](./cli/settings.md):** Control response creativity, output
50
- verbosity, and more.
51
- - **[Model selection](./cli/model.md):** Choose the best Gemini model for your
52
- specific task.
53
- - **[Ignore files](./cli/gemini-ignore.md):** Use `.geminiignore` to keep
54
- sensitive files out of the model's context.
55
- - **[Trusted folders](./cli/trusted-folders.md):** Define security boundaries
56
- for file access and execution.
57
- - **[Token caching](./cli/token-caching.md):** Optimize performance and cost by
58
- caching context.
59
- - **[Themes](./cli/themes.md):** Personalize the visual appearance of the CLI.
60
-
61
- ## Advanced features
62
-
63
- Explore powerful features for complex workflows and enterprise environments.
64
-
65
- - **[Headless mode](./cli/headless.md):** Run Gemini CLI in scripts or CI/CD
66
- pipelines for automated reasoning.
67
- - **[Sandboxing](./cli/sandbox.md):** Execute untrusted code or tools in a
68
- secure, isolated container.
69
- - **[Checkpointing](./cli/checkpointing.md):** Save and restore workspace state
70
- to recover from experimental changes.
71
- - **[Custom commands](./cli/custom-commands.md):** Create shortcuts for
72
- frequently used prompts.
73
- - **[System prompt override](./cli/system-prompt.md):** Customize the core
74
- instructions given to the model.
75
- - **[Telemetry](./cli/telemetry.md):** Understand how usage data is collected
76
- and managed.
77
- - **[Enterprise](./cli/enterprise.md):** Manage configurations and policies for
78
- large teams.
79
-
80
- ## Extensions
81
-
82
- Extend Gemini CLI's capabilities with new tools and behaviors using extensions.
83
-
84
- - **[Introduction](./extensions/index.md):** Learn about the extension system
85
- and how to manage extensions.
86
- - **[Writing extensions](./extensions/writing-extensions.md):** Learn how to
87
- create your first extension.
88
- - **[Extensions reference](./extensions/reference.md):** Deeply understand the
89
- extension format, commands, and configuration.
90
- - **[Best practices](./extensions/best-practices.md):** Learn strategies for
91
- building great extensions.
92
- - **[Extensions releasing](./extensions/releasing.md):** Learn how to share your
93
- extensions with the world.
94
-
95
- ## Ecosystem and extensibility
96
-
97
- Connect Gemini CLI to external services and other development tools.
98
-
99
- - **[MCP servers](./tools/mcp-server.md):** Connect to external services using
100
- the Model Context Protocol.
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.
@@ -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 ~2000 UTC new Stable and Preview releases will be cut. The
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 0000. This will be all changes
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