run_build
Compile the project at the workspace directory using the detected language. Returns success status and detailed error information including file, line, and column.
Instructions
Compile the project at workspace_dir using the detected workspace language. Language-specific dispatch (no arbitrary shell execution): go build ./..., cargo build, tsc --noEmit, mypy . (Python typecheck proxy). Optional path param narrows scope. Returns: { success: bool, errors: [{file, line, column, message}], raw: string }. Does not require start_lsp.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | ||
| language | No | ||
| workspace_dir | Yes |