Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions assets/aft.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,30 @@
"minimum": 5000,
"default": 8000,
"description": "How long foreground bash blocks before auto-promoting the task to background, in milliseconds. Minimum 5000; values below the floor are clamped up."
},
"deferred_completion_fallback_ms": {
"type": "integer",
"minimum": 1,
"default": 500,
"description": "Safety-net delay before a completion deferred for same-turn delivery wakes the session without waiting for OpenCode session.idle."
},
"wake_retry_max_attempts": {
"type": "integer",
"minimum": 1,
"default": 5,
"description": "Maximum prompt-delivery retry attempts before wake delivery hard-stops and leaves completions pending for explicit in-turn drain."
},
"wake_debounce_step_ms": {
"type": "integer",
"minimum": 1,
"default": 200,
"description": "Initial wake debounce delay and retry backoff floor for background-completion prompts."
},
"wake_debounce_cap_ms": {
"type": "integer",
"minimum": 1,
"default": 1000,
"description": "Maximum wake debounce delay and retry backoff cap for background-completion prompts."
}
},
"additionalProperties": false
Expand Down
Loading