@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.
Files changed (38) hide show
  1. package/bundle/docs/CONTRIBUTING.md +7 -6
  2. package/bundle/docs/changelogs/index.md +20 -0
  3. package/bundle/docs/changelogs/latest.md +294 -426
  4. package/bundle/docs/changelogs/preview.md +343 -283
  5. package/bundle/docs/cli/cli-reference.md +23 -23
  6. package/bundle/docs/cli/commands.md +2 -0
  7. package/bundle/docs/cli/enterprise.md +18 -15
  8. package/bundle/docs/cli/keyboard-shortcuts.md +17 -8
  9. package/bundle/docs/cli/plan-mode.md +92 -12
  10. package/bundle/docs/cli/sandbox.md +3 -2
  11. package/bundle/docs/cli/settings.md +28 -19
  12. package/bundle/docs/cli/telemetry.md +18 -4
  13. package/bundle/docs/core/policy-engine.md +13 -3
  14. package/bundle/docs/extensions/reference.md +0 -3
  15. package/bundle/docs/get-started/configuration-v1.md +5 -3
  16. package/bundle/docs/get-started/configuration.md +85 -41
  17. package/bundle/docs/tools/ask-user.md +95 -0
  18. package/bundle/docs/tools/index.md +3 -0
  19. package/bundle/docs/tools/mcp-server.md +1 -12
  20. package/bundle/docs/tools/planning.md +55 -0
  21. package/bundle/docs/tools/shell.md +7 -6
  22. package/bundle/gemini.js +30500 -18105
  23. package/bundle/mcp-bridge.js +2 -2
  24. package/bundle/policies/plan.toml +3 -3
  25. package/bundle/policies/yolo.toml +13 -2
  26. package/bundle/{sandbox-macos-restrictive-closed.sb → sandbox-macos-strict-open.sb} +42 -4
  27. package/bundle/sandbox-macos-strict-proxied.sb +133 -0
  28. package/bundle/web-client/client.js +96 -3
  29. package/bundle/web-client/components/DiffContextMenu.js +252 -0
  30. package/bundle/web-client/components/DiffModal.js +85 -38
  31. package/bundle/web-client/components/EditorPanel.js +12 -2
  32. package/bundle/web-client/managers/EditorManager.js +32 -0
  33. package/bundle/web-client/managers/InputHistoryManager.js +139 -0
  34. package/bundle/web-client/managers/WebSocketManager.js +19 -4
  35. package/bundle/web-client/styles/editor-panel.css +32 -24
  36. package/bundle/web-client/styles/overhaul.css +30 -0
  37. package/package.json +4 -4
  38. 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
- `restrictive-closed` profile (see
413
- `packages/cli/src/utils/sandbox-macos-restrictive-closed.sb`) that declines all
414
- operations and outbound network traffic ("closed") by default by setting
415
- `SEATBELT_PROFILE=restrictive-closed` in your environment or `.env` file.
416
- Available built-in profiles are `{permissive,restrictive}-{open,closed,proxied}`
417
- (see below for proxied networking). You can also switch to a custom profile
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