@thacio/auditaria 0.28.0 → 0.30.1

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
@@ -1,32 +0,0 @@
1
- (version 1)
2
-
3
- ;; allow everything by default
4
- (allow default)
5
-
6
- ;; deny all writes EXCEPT under specific paths
7
- (deny file-write*)
8
- (allow file-write*
9
- (subpath (param "TARGET_DIR"))
10
- (subpath (param "TMP_DIR"))
11
- (subpath (param "CACHE_DIR"))
12
- (subpath (string-append (param "HOME_DIR") "/.gemini"))
13
- (subpath (string-append (param "HOME_DIR") "/.npm"))
14
- (subpath (string-append (param "HOME_DIR") "/.cache"))
15
- (subpath (string-append (param "HOME_DIR") "/.gitconfig"))
16
- ;; Allow writes to included directories from --include-directories
17
- (subpath (param "INCLUDE_DIR_0"))
18
- (subpath (param "INCLUDE_DIR_1"))
19
- (subpath (param "INCLUDE_DIR_2"))
20
- (subpath (param "INCLUDE_DIR_3"))
21
- (subpath (param "INCLUDE_DIR_4"))
22
- (literal "/dev/stdout")
23
- (literal "/dev/stderr")
24
- (literal "/dev/null")
25
- )
26
-
27
- ;; deny all inbound network traffic EXCEPT on debugger port
28
- (deny network-inbound)
29
- (allow network-inbound (local ip "localhost:9229"))
30
-
31
- ;; deny all outbound network traffic
32
- (deny network-outbound)