check_file
Analyze text files for style and grammar issues using Vale's linting rules. Identifies problems with location details and severity levels to help improve writing quality.
Instructions
Lint a file at a specific path against Vale style rules. Returns issues found with their locations and severity. If Vale is not installed, returns error with installation guidance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Absolute or relative path to the file to check |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Absolute or relative path to the file to check",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}