@trukhinyuri/gemini-pp 0.27.4 → 0.27.6

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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trukhinyuri/gemini-pp",
3
- "version": "0.27.1",
3
+ "version": "0.27.5",
4
4
  "description": "Gemini CLI",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -23,14 +23,15 @@
23
23
  "typecheck": "tsc --noEmit"
24
24
  },
25
25
  "files": [
26
- "dist"
26
+ "dist",
27
+ "node_modules/@google/gemini-cli-core"
27
28
  ],
28
29
  "config": {
29
30
  "sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.27.0-nightly.20260121.97aac696f"
30
31
  },
31
32
  "dependencies": {
32
33
  "@agentclientprotocol/sdk": "^0.12.0",
33
- "@google/gemini-cli-core": "^0.25.1",
34
+ "@google/gemini-cli-core": "*",
34
35
  "@google/genai": "1.30.0",
35
36
  "@iarna/toml": "^2.2.5",
36
37
  "@modelcontextprotocol/sdk": "^1.23.0",
@@ -1,4 +1,4 @@
1
1
  {
2
- "name": "context-example",
3
- "version": "1.0.0"
2
+ "name": "context-example",
3
+ "version": "1.0.0"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
- "name": "custom-commands",
3
- "version": "1.0.0"
2
+ "name": "custom-commands",
3
+ "version": "1.0.0"
4
4
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "excludeTools",
3
- "version": "1.0.0",
4
- "excludeTools": ["run_shell_command(rm -rf)"]
2
+ "name": "excludeTools",
3
+ "version": "1.0.0",
4
+ "excludeTools": ["run_shell_command(rm -rf)"]
5
5
  }
@@ -1,4 +1,4 @@
1
1
  {
2
- "name": "hooks-example",
3
- "version": "1.0.0"
2
+ "name": "hooks-example",
3
+ "version": "1.0.0"
4
4
  }
@@ -1,14 +1,14 @@
1
1
  {
2
- "hooks": {
3
- "SessionStart": [
4
- {
5
- "hooks": [
6
- {
7
- "type": "command",
8
- "command": "node ${extensionPath}/scripts/on-start.js"
9
- }
2
+ "hooks": {
3
+ "SessionStart": [
4
+ {
5
+ "hooks": [
6
+ {
7
+ "type": "command",
8
+ "command": "node ${extensionPath}/scripts/on-start.js"
9
+ }
10
+ ]
11
+ }
10
12
  ]
11
- }
12
- ]
13
- }
13
+ }
14
14
  }
@@ -1,11 +1,11 @@
1
1
  {
2
- "name": "mcp-server-example",
3
- "version": "1.0.0",
4
- "mcpServers": {
5
- "nodeServer": {
6
- "command": "node",
7
- "args": ["${extensionPath}${/}example.js"],
8
- "cwd": "${extensionPath}"
2
+ "name": "mcp-server-example",
3
+ "version": "1.0.0",
4
+ "mcpServers": {
5
+ "nodeServer": {
6
+ "command": "node",
7
+ "args": ["${extensionPath}${/}example.js"],
8
+ "cwd": "${extensionPath}"
9
+ }
9
10
  }
10
- }
11
11
  }
@@ -1,11 +1,11 @@
1
1
  {
2
- "name": "mcp-server-example",
3
- "version": "1.0.0",
4
- "description": "Example MCP Server for Gemini CLI Extension",
5
- "type": "module",
6
- "main": "example.js",
7
- "dependencies": {
8
- "@modelcontextprotocol/sdk": "^1.23.0",
9
- "zod": "^3.22.4"
10
- }
2
+ "name": "mcp-server-example",
3
+ "version": "1.0.0",
4
+ "description": "Example MCP Server for Gemini CLI Extension",
5
+ "type": "module",
6
+ "main": "example.js",
7
+ "dependencies": {
8
+ "@modelcontextprotocol/sdk": "^1.23.0",
9
+ "zod": "^3.22.4"
10
+ }
11
11
  }
@@ -1,4 +1,4 @@
1
1
  {
2
- "name": "skills-example",
3
- "version": "1.0.0"
2
+ "name": "skills-example",
3
+ "version": "1.0.0"
4
4
  }
@@ -655,7 +655,7 @@ declare const SETTINGS_SCHEMA: {
655
655
  readonly label: "Model Configs";
656
656
  readonly category: "Model";
657
657
  readonly requiresRestart: false;
658
- readonly default: import("@google/gemini-cli-core/src/services/modelConfigService.js").ModelConfigServiceConfig;
658
+ readonly default: import("@google/gemini-cli-core/dist/src/services/modelConfigService.js").ModelConfigServiceConfig;
659
659
  readonly description: "Model configurations.";
660
660
  readonly showInDialog: false;
661
661
  readonly properties: {
@@ -664,7 +664,7 @@ declare const SETTINGS_SCHEMA: {
664
664
  readonly label: "Model Config Aliases";
665
665
  readonly category: "Model";
666
666
  readonly requiresRestart: false;
667
- readonly default: Record<string, import("@google/gemini-cli-core/src/services/modelConfigService.js").ModelConfigAlias> | undefined;
667
+ readonly default: Record<string, import("@google/gemini-cli-core/dist/src/services/modelConfigService.js").ModelConfigAlias> | undefined;
668
668
  readonly description: "Named presets for model configs. Can be used in place of a model name and can inherit from other aliases using an `extends` property.";
669
669
  readonly showInDialog: false;
670
670
  };
@@ -991,7 +991,7 @@ declare const SETTINGS_SCHEMA: {
991
991
  readonly label: "Tool Output Truncation Threshold";
992
992
  readonly category: "General";
993
993
  readonly requiresRestart: true;
994
- readonly default: 100000000;
994
+ readonly default: 4000000;
995
995
  readonly description: "Truncate tool output if it is larger than this many characters. Set to -1 to disable.";
996
996
  readonly showInDialog: true;
997
997
  };
@@ -1000,7 +1000,7 @@ declare const SETTINGS_SCHEMA: {
1000
1000
  readonly label: "Tool Output Truncation Lines";
1001
1001
  readonly category: "General";
1002
1002
  readonly requiresRestart: true;
1003
- readonly default: 100000;
1003
+ readonly default: 1000;
1004
1004
  readonly description: "The number of lines to keep when truncating tool output.";
1005
1005
  readonly showInDialog: true;
1006
1006
  };
@@ -97,7 +97,7 @@ const SETTINGS_SCHEMA = {
97
97
  label: 'Enable Auto Update',
98
98
  category: 'General',
99
99
  requiresRestart: false,
100
- default: true,
100
+ default: false,
101
101
  description: 'Enable automatic updates.',
102
102
  showInDialog: true,
103
103
  },
@@ -106,7 +106,7 @@ const SETTINGS_SCHEMA = {
106
106
  label: 'Enable Auto Update Notification',
107
107
  category: 'General',
108
108
  requiresRestart: false,
109
- default: true,
109
+ default: false,
110
110
  description: 'Enable update notification prompts.',
111
111
  showInDialog: false,
112
112
  },