harn-hostlib 0.8.26

Opt-in code-intelligence and deterministic-tool host builtins for the Harn VM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://harnlang.com/schemas/hostlib/tools/run_build_command.request.json",
  "title": "tools.run_build_command request",
  "type": "object",
  "properties": {
    "argv": {
      "type": "array",
      "items": { "type": "string" }
    },
    "cwd": { "type": "string" },
    "target": { "type": "string" },
    "release": { "type": "boolean", "default": false },
    "timeout_ms": { "type": "integer", "minimum": 0 },
    "long_running": { "type": "boolean", "default": false }
  },
  "additionalProperties": false
}