mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-02-01 22:48:03 +00:00
Agent Skills: Implement Core Skill Infrastructure & Tiered Discovery (#15698)
This commit is contained in:
@@ -1373,6 +1373,13 @@
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
},
|
||||
"skills": {
|
||||
"title": "Agent Skills",
|
||||
"description": "Enable Agent Skills (experimental).",
|
||||
"markdownDescription": "Enable Agent Skills (experimental).\n\n- Category: `Experimental`\n- Requires restart: `yes`\n- Default: `false`",
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
},
|
||||
"codebaseInvestigatorSettings": {
|
||||
"title": "Codebase Investigator Settings",
|
||||
"description": "Configuration for Codebase Investigator.",
|
||||
@@ -1468,6 +1475,26 @@
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"skills": {
|
||||
"title": "Skills",
|
||||
"description": "Settings for agent skills.",
|
||||
"markdownDescription": "Settings for agent skills.\n\n- Category: `Advanced`\n- Requires restart: `yes`\n- Default: `{}`",
|
||||
"default": {},
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"disabled": {
|
||||
"title": "Disabled Skills",
|
||||
"description": "List of disabled skills.",
|
||||
"markdownDescription": "List of disabled skills.\n\n- Category: `Advanced`\n- Requires restart: `yes`\n- Default: `[]`",
|
||||
"default": [],
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"hooks": {
|
||||
"title": "Hooks",
|
||||
"description": "Hook configurations for intercepting and customizing agent behavior.",
|
||||
|
||||
Reference in New Issue
Block a user