run_build
Compile projects using detected languages like Go, Rust, TypeScript, or Python with language-specific commands. Returns build success status and error details without arbitrary shell execution.
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 |
|---|---|---|---|
| workspace_dir | Yes | ||
| path | No | ||
| language | No |