write_project_file
Write content to a local file within the VS Code workspace directory, ensuring restricted file operations for secure project development.
Instructions
Write to a local file in the VS Code workspace (restricted to workspace directory)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
path | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"path": {
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}