Files
wehub-resource-sync 680cc63b3d
Relay Deploy Dev / Deploy Relay Dev (push) Failing after 1s
Remote Deploy Dev / Deploy Remote Dev (push) Failing after 2s
Test / frontend-checks (push) Blocked by required conditions
Test / changes (push) Waiting to run
Test / backend-schema-checks (push) Blocked by required conditions
Test / backend-remote-checks (push) Blocked by required conditions
Test / backend-clippy (push) Blocked by required conditions
Test / backend-test (push) Blocked by required conditions
Test / tauri-checks (push) Blocked by required conditions
chore: import upstream snapshot with attribution
2026-07-13 12:12:58 +08:00

74 lines
1.6 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"append_prompt": {
"title": "Append Prompt",
"description": "Extra text appended to the prompt",
"type": [
"string",
"null"
],
"format": "textarea",
"default": null
},
"model": {
"type": [
"string",
"null"
]
},
"variant": {
"type": [
"string",
"null"
]
},
"agent": {
"type": [
"string",
"null"
]
},
"auto_approve": {
"description": "Auto-approve agent actions",
"type": "boolean",
"default": true
},
"auto_compact": {
"description": "Enable auto-compaction when the context length approaches the model's context window limit",
"type": "boolean",
"default": true
},
"base_command_override": {
"title": "Base Command Override",
"description": "Override the base command with a custom command",
"type": [
"string",
"null"
]
},
"additional_params": {
"title": "Additional Parameters",
"description": "Additional parameters to append to the base command",
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
},
"env": {
"title": "Environment Variables",
"description": "Environment variables to set when running the executor",
"type": [
"object",
"null"
],
"additionalProperties": {
"type": "string"
}
}
},
"type": "object"
}