update_project_config
Modify project-specific settings such as allowed commands, auto-formatting, Git auto-commit, and AI instructions in VS Code. Streamlines configuration updates for AI-assisted development environments.
Instructions
Update specific project configuration settings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
allowedCommands | No | Commands that are allowed to run | |
formatCommand | No | Format command (use {{file}} as placeholder) | |
formatOnSave | No | Auto-format files after editing | |
gitAutoCommit | No | Auto-commit AI changes | |
projectInstructions | No | Project-specific instructions for AI |
Input Schema (JSON Schema)
{
"properties": {
"allowedCommands": {
"description": "Commands that are allowed to run",
"items": {
"type": "string"
},
"type": "array"
},
"formatCommand": {
"description": "Format command (use {{file}} as placeholder)",
"type": "string"
},
"formatOnSave": {
"description": "Auto-format files after editing",
"type": "boolean"
},
"gitAutoCommit": {
"description": "Auto-commit AI changes",
"type": "boolean"
},
"projectInstructions": {
"description": "Project-specific instructions for AI",
"type": "string"
}
},
"type": "object"
}