read_file_content
Retrieve content from specified project files using a prefixed path, enabling direct access to local code repositories for analysis and integration.
Instructions
读取项目内指定文件的内容,文件路径必须包含前缀,例如 '[backend/src]/main.ts'
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | 带前缀的完整文件路径, e.g., '[backend/src]/main.ts' |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "带前缀的完整文件路径, e.g., '[backend/src]/main.ts'",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}