@thacio/auditaria 0.28.0 → 0.30.11
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/bundle/docs/CONTRIBUTING.md +7 -6
- package/bundle/docs/changelogs/index.md +20 -0
- package/bundle/docs/changelogs/latest.md +294 -426
- package/bundle/docs/changelogs/preview.md +343 -283
- package/bundle/docs/cli/cli-reference.md +23 -23
- package/bundle/docs/cli/commands.md +2 -0
- package/bundle/docs/cli/enterprise.md +18 -15
- package/bundle/docs/cli/keyboard-shortcuts.md +17 -8
- package/bundle/docs/cli/plan-mode.md +92 -12
- package/bundle/docs/cli/sandbox.md +3 -2
- package/bundle/docs/cli/settings.md +28 -19
- package/bundle/docs/cli/telemetry.md +18 -4
- package/bundle/docs/core/policy-engine.md +13 -3
- package/bundle/docs/extensions/reference.md +0 -3
- package/bundle/docs/get-started/configuration-v1.md +5 -3
- package/bundle/docs/get-started/configuration.md +85 -41
- package/bundle/docs/tools/ask-user.md +95 -0
- package/bundle/docs/tools/index.md +3 -0
- package/bundle/docs/tools/mcp-server.md +1 -12
- package/bundle/docs/tools/planning.md +55 -0
- package/bundle/docs/tools/shell.md +7 -6
- package/bundle/gemini.js +30500 -18105
- package/bundle/mcp-bridge.js +2 -2
- package/bundle/policies/plan.toml +3 -3
- package/bundle/policies/yolo.toml +13 -2
- package/bundle/{sandbox-macos-restrictive-closed.sb → sandbox-macos-strict-open.sb} +42 -4
- package/bundle/sandbox-macos-strict-proxied.sb +133 -0
- package/bundle/web-client/client.js +96 -3
- package/bundle/web-client/components/DiffContextMenu.js +252 -0
- package/bundle/web-client/components/DiffModal.js +85 -38
- package/bundle/web-client/components/EditorPanel.js +12 -2
- package/bundle/web-client/managers/EditorManager.js +32 -0
- package/bundle/web-client/managers/InputHistoryManager.js +139 -0
- package/bundle/web-client/managers/WebSocketManager.js +19 -4
- package/bundle/web-client/styles/editor-panel.css +32 -24
- package/bundle/web-client/styles/overhaul.css +30 -0
- package/package.json +4 -4
- package/bundle/sandbox-macos-permissive-closed.sb +0 -32
|
@@ -409,12 +409,13 @@ On macOS, `gemini` uses Seatbelt (`sandbox-exec`) under a `permissive-open`
|
|
|
409
409
|
profile (see `packages/cli/src/utils/sandbox-macos-permissive-open.sb`) that
|
|
410
410
|
restricts writes to the project folder but otherwise allows all other operations
|
|
411
411
|
and outbound network traffic ("open") by default. You can switch to a
|
|
412
|
-
`
|
|
413
|
-
`packages/cli/src/utils/sandbox-macos-
|
|
414
|
-
|
|
415
|
-
`SEATBELT_PROFILE=
|
|
416
|
-
Available built-in profiles are `
|
|
417
|
-
(see below for proxied
|
|
412
|
+
`strict-open` profile (see
|
|
413
|
+
`packages/cli/src/utils/sandbox-macos-strict-open.sb`) that restricts both reads
|
|
414
|
+
and writes to the working directory while allowing outbound network traffic by
|
|
415
|
+
setting `SEATBELT_PROFILE=strict-open` in your environment or `.env` file.
|
|
416
|
+
Available built-in profiles are `permissive-{open,proxied}`,
|
|
417
|
+
`restrictive-{open,proxied}`, and `strict-{open,proxied}` (see below for proxied
|
|
418
|
+
networking). You can also switch to a custom profile
|
|
418
419
|
`SEATBELT_PROFILE=<profile>` if you also create a file
|
|
419
420
|
`.gemini/sandbox-macos-<profile>.sb` under your project settings directory
|
|
420
421
|
`.gemini`.
|
|
@@ -18,6 +18,26 @@ on GitHub.
|
|
|
18
18
|
| [Preview](preview.md) | Experimental features ready for early feedback. |
|
|
19
19
|
| [Stable](latest.md) | Stable, recommended for general use. |
|
|
20
20
|
|
|
21
|
+
## Announcements: v0.28.0 - 2026-02-03
|
|
22
|
+
|
|
23
|
+
- **Slash Command:** We've added a new `/prompt-suggest` slash command to help
|
|
24
|
+
you generate prompt suggestions
|
|
25
|
+
([#17264](https://github.com/google-gemini/gemini-cli/pull/17264) by
|
|
26
|
+
@NTaylorMullen).
|
|
27
|
+
- **IDE Support:** Gemini CLI now supports the Positron IDE
|
|
28
|
+
([#15047](https://github.com/google-gemini/gemini-cli/pull/15047) by
|
|
29
|
+
@kapsner).
|
|
30
|
+
- **Customization:** You can now use custom themes in extensions, and we've
|
|
31
|
+
implemented automatic theme switching based on your terminal's background
|
|
32
|
+
([#17327](https://github.com/google-gemini/gemini-cli/pull/17327) by
|
|
33
|
+
@spencer426, [#17976](https://github.com/google-gemini/gemini-cli/pull/17976)
|
|
34
|
+
by @Abhijit-2592).
|
|
35
|
+
- **Authentication:** We've added interactive and non-interactive consent for
|
|
36
|
+
OAuth, and you can now include your auth method in bug reports
|
|
37
|
+
([#17699](https://github.com/google-gemini/gemini-cli/pull/17699) by
|
|
38
|
+
@ehedlund, [#17569](https://github.com/google-gemini/gemini-cli/pull/17569) by
|
|
39
|
+
@erikus).
|
|
40
|
+
|
|
21
41
|
## Announcements: v0.27.0 - 2026-02-03
|
|
22
42
|
|
|
23
43
|
- **Event-Driven Architecture:** The CLI now uses a new event-driven scheduler
|