merge: integrate sonnet-vikunja (#299,#300,#297,#301) into codex handoff HEAD
# Conflicts: # core/kernel/src/main/kotlin/com/correx/core/kernel/orchestration/OrchestrationTuning.kt # examples/workflows/prompts/analyst_freestyle.md
This commit is contained in:
@@ -66,6 +66,21 @@ data class OutsidePathAccessGrantedEvent(
|
||||
val path: String,
|
||||
) : EventPayload
|
||||
|
||||
/**
|
||||
* Records that the operator approved widening the write scope/manifest to admit [path], after
|
||||
* the same path was rejected `escalate_scope_after_n` times in a row (small models frequently
|
||||
* fail to comply with the WRITE_SCOPE/PATH_OUTSIDE_MANIFEST remediation and thrash instead —
|
||||
* see #301). Folded the same way [OutsidePathAccessGrantedEvent] widens out-of-workspace reads:
|
||||
* subsequent writes to this path this session are admitted without re-prompting.
|
||||
*/
|
||||
@Serializable
|
||||
@SerialName("WriteScopeGranted")
|
||||
data class WriteScopeGrantedEvent(
|
||||
val sessionId: SessionId,
|
||||
val stageId: StageId,
|
||||
val path: String,
|
||||
) : EventPayload
|
||||
|
||||
@Serializable
|
||||
@SerialName("OrchestrationPaused")
|
||||
data class OrchestrationPausedEvent(
|
||||
|
||||
Reference in New Issue
Block a user