jade.check
Run a repository's build, typecheck, or tests on demand and get a pass/fail verdict. Uses the project's own commands and names the command executed.
Instructions
Run a validation command on demand and wait for the verdict: kind build (default), typecheck or tests. Uses the repository's own Makefile target, npm script or cargo command when present. Waits by default and returns pass/fail directly. Every result names the command that ran; dryRun names it without running anything. In a repository with several projects, pass target to check one; with no command at the root, the answer lists the projects.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | build (default), typecheck, tests, lint or codegen. lint and codegen run the declared commands of that kind; lint with none declared runs typecheck. | |
| wait | No | Wait for the result (default true). False returns a job ID to poll. | |
| dryRun | No | Name the command that would run, without running it. | |
| target | No | Project directory inside the workspace to check, e.g. services/api. Omit for the workspace root. | |
| timeoutSeconds | No | Bound on the wait (default 90, max 300). |