{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://harnlang.com/schemas/hostlib/tools/enable.request.json",
"title": "tools.enable request",
"description": "Per-session opt-in for a compiled hostlib surface. Terminal sessions remain unavailable when the hostlib was built without its Cargo feature.",
"type": "object",
"properties": {
"feature": {
"type": "string",
"enum": ["tools:deterministic", "terminal:session"]
}
},
"required": ["feature"],
"additionalProperties": false
}