@google/gemini-cli 0.36.0-preview.0 → 0.36.0-preview.2

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 (45) hide show
  1. package/bundle/{chunk-K2M7OTIP.js → chunk-25V3TYNR.js} +9 -10
  2. package/bundle/{chunk-N7MAJ3JD.js → chunk-6F64DR53.js} +6 -6
  3. package/bundle/{chunk-6UAL5KXG.js → chunk-EUXACAGL.js} +9 -12
  4. package/bundle/{chunk-BE2CAP4N.js → chunk-HLML5SVJ.js} +29 -27
  5. package/bundle/{chunk-3HNPGRRW.js → chunk-IOJJTEIC.js} +2 -2
  6. package/bundle/{chunk-S36ET7IB.js → chunk-KGPUJGU6.js} +6 -6
  7. package/bundle/{chunk-3XQWOVPH.js → chunk-MRJRXC63.js} +2 -2
  8. package/bundle/{chunk-HXZPARYO.js → chunk-MXNIJ4RK.js} +2 -2
  9. package/bundle/{chunk-4NIOHPQN.js → chunk-NKTSTYJO.js} +72 -60
  10. package/bundle/chunk-NT4MG3B6.js +93175 -0
  11. package/bundle/chunk-OOZG4FMQ.js +137 -0
  12. package/bundle/{chunk-PVQN7ZVP.js → chunk-PXG3YTLU.js} +42 -27
  13. package/bundle/{chunk-CDXJ3P4V.js → chunk-SV2TJWFU.js} +5596 -10443
  14. package/bundle/chunk-WHT3ZS7S.js +354051 -0
  15. package/bundle/{cleanup-6R6IEU7T.js → cleanup-2WKEMFXG.js} +3 -3
  16. package/bundle/{cleanup-I7KFQ3LC.js → cleanup-B67M5WAO.js} +3 -3
  17. package/bundle/{cleanup-R6KR4XCS.js → cleanup-PJ323T24.js} +3 -3
  18. package/bundle/cleanup-PKVUY3XO.js +29 -0
  19. package/bundle/{core-IZK42CWE.js → core-7GUY3XKQ.js} +2 -2
  20. package/bundle/{devtoolsService-HLM6BC5R.js → devtoolsService-B7OD724C.js} +3 -3
  21. package/bundle/{devtoolsService-GIESJD2E.js → devtoolsService-JGPJ2GN4.js} +5 -4
  22. package/bundle/{devtoolsService-PGDD2J4F.js → devtoolsService-LU3DLIVB.js} +3 -3
  23. package/bundle/devtoolsService-RGAOIVMN.js +854 -0
  24. package/bundle/{core-J3CTNETR.js → dist-DTCLJTHN.js} +2 -2
  25. package/bundle/{dist-6WEZWPRQ.js → dist-X3ESBKEG.js} +2 -2
  26. package/bundle/dist-YQXQRQYA.js +1882 -0
  27. package/bundle/docs/reference/configuration.md +1 -1
  28. package/bundle/{gemini-AI362DTR.js → gemini-7BPDTLSV.js} +7 -7
  29. package/bundle/{gemini-GZFHIDDH.js → gemini-CJ5HU32O.js} +155 -140
  30. package/bundle/{gemini-5ARDVELJ.js → gemini-GA5SXGI6.js} +7 -7
  31. package/bundle/gemini-RFUB3W5S.js +14455 -0
  32. package/bundle/gemini.js +4 -4
  33. package/bundle/{interactiveCli-OYO74BPW.js → interactiveCli-2EVI7UVZ.js} +5 -5
  34. package/bundle/{interactiveCli-LGOLNK44.js → interactiveCli-2OAVBJCC.js} +253 -236
  35. package/bundle/{interactiveCli-PXX77G77.js → interactiveCli-CRDA6GQ7.js} +5 -5
  36. package/bundle/interactiveCli-SHFDAMKC.js +49314 -0
  37. package/bundle/{memoryDiscovery-WPGC7DAZ.js → memoryDiscovery-JXHCZBWK.js} +1 -1
  38. package/bundle/{memoryDiscovery-FNLUOGLO.js → memoryDiscovery-VQKOP6YW.js} +1 -1
  39. package/bundle/node_modules/@google/gemini-cli-devtools/package.json +1 -1
  40. package/bundle/{oauth2-provider-X3F7PSVB.js → oauth2-provider-D6HJJAVX.js} +2 -2
  41. package/bundle/{oauth2-provider-I6AYNUSI.js → oauth2-provider-KEZJCOYM.js} +39 -73
  42. package/bundle/oauth2-provider-TSEQG63I.js +237 -0
  43. package/bundle/{oauth2-provider-G7GIGUQF.js → oauth2-provider-ZT3CIEZO.js} +2 -2
  44. package/bundle/policies/plan.toml +10 -0
  45. package/package.json +1 -1
package/bundle/gemini.js CHANGED
@@ -3,7 +3,7 @@ const require = (await import('node:module')).createRequire(import.meta.url); co
3
3
 
4
4
  // packages/cli/index.ts
5
5
  if (process.argv.includes("--version") || process.argv.includes("-v")) {
6
- console.log("0.36.0-preview.0");
6
+ console.log("0.36.0-preview.2");
7
7
  process.exit(0);
8
8
  }
9
9
  var writeToStderrFn = (msg) => process.stderr.write(msg);
@@ -19,9 +19,9 @@ process.on("uncaughtException", (error) => {
19
19
  process.exit(1);
20
20
  });
21
21
  var [{ main }, { FatalError, writeToStderr }, { runExitCleanup }] = await Promise.all([
22
- import("./gemini-5ARDVELJ.js"),
23
- import("./dist-6WEZWPRQ.js"),
24
- import("./cleanup-I7KFQ3LC.js")
22
+ import("./gemini-CJ5HU32O.js"),
23
+ import("./dist-DTCLJTHN.js"),
24
+ import("./cleanup-2WKEMFXG.js")
25
25
  ]);
26
26
  writeToStderrFn = writeToStderr;
27
27
  main().catch(async (error) => {
@@ -178,12 +178,12 @@ import {
178
178
  widestLineFromStyledChars,
179
179
  wordBreakStyledChars,
180
180
  wrapStyledChars
181
- } from "./chunk-N7MAJ3JD.js";
181
+ } from "./chunk-NT4MG3B6.js";
182
182
  import {
183
183
  registerCleanup,
184
184
  runExitCleanup,
185
185
  setupTtyCheck
186
- } from "./chunk-3HNPGRRW.js";
186
+ } from "./chunk-MXNIJ4RK.js";
187
187
  import {
188
188
  ApiKeyUpdatedEvent,
189
189
  AsyncFzf,
@@ -302,7 +302,7 @@ import {
302
302
  validatePlanContent,
303
303
  validatePlanPath,
304
304
  writeToStdout
305
- } from "./chunk-6UAL5KXG.js";
305
+ } from "./chunk-WHT3ZS7S.js";
306
306
  import {
307
307
  ACTIVATE_SKILL_TOOL_NAME,
308
308
  ASK_USER_TOOL_NAME,
@@ -348,7 +348,7 @@ import {
348
348
  safeJsonToMarkdown,
349
349
  shortenPath,
350
350
  tildeifyPath
351
- } from "./chunk-BE2CAP4N.js";
351
+ } from "./chunk-HLML5SVJ.js";
352
352
  import "./chunk-664ZODQF.js";
353
353
  import "./chunk-RJTRUG2J.js";
354
354
  import "./chunk-IUUIT4SU.js";
@@ -48385,7 +48385,7 @@ ${queuedText}` : queuedText;
48385
48385
  if (keyMatchers["app.showErrorDetails" /* SHOW_ERROR_DETAILS */](key)) {
48386
48386
  if (settings.merged.general.devtools) {
48387
48387
  void (async () => {
48388
- const { toggleDevToolsPanel } = await import("./devtoolsService-HLM6BC5R.js");
48388
+ const { toggleDevToolsPanel } = await import("./devtoolsService-RGAOIVMN.js");
48389
48389
  await toggleDevToolsPanel(
48390
48390
  config,
48391
48391
  showErrorDetails,