codeFileRead
Read and display code file content with line numbers to verify and edit file structure accurately, ensuring clarity without unnecessary formatting changes.
Instructions
讀取程式碼檔案並顯示行號,用於確認檔案實際行數以便編輯操作。(如果不影響編譯器的話,不需要針對縮排等小問題修改。提醒User就好了)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}