1017bfffef
Rebuild the Go TUI transcript from the event stream instead of optimistic local echoes. ChatTurnEvent now maps to ServerMessage.ChatTurn (chat.turn); the TUI auto-vivifies sessions and renders user+router turns from events. SessionStarted is de-special-cased into SessionAnnounced (still carries workflowId), dropping the router.response shadow and optimistic echoes. Delete the unused Kotlin TUI (apps/tui) and add a kotlinx<->Go golden-fixture test to lock the wire protocol. Gitignore server runtime logs.
51 lines
1.2 KiB
Groovy
51 lines
1.2 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'correx'
|
|
|
|
include ':apps:cli'
|
|
include ':apps:server'
|
|
include ':apps:worker'
|
|
include ':apps:desktop'
|
|
|
|
include ':core:kernel'
|
|
include ':core:events'
|
|
include ':core:transitions'
|
|
include ':core:context'
|
|
include ':core:inference'
|
|
include ':core:artifacts'
|
|
include ':core:artifacts-store'
|
|
include ':core:validation'
|
|
include ':core:approvals'
|
|
include ':core:tools'
|
|
include ':core:toolintent'
|
|
include ':core:router'
|
|
include ':core:sessions'
|
|
include ':core:config'
|
|
include ':core:risk'
|
|
|
|
include ':infrastructure:persistence'
|
|
include ':infrastructure:inference'
|
|
include ':infrastructure:inference:commons'
|
|
include ':infrastructure:inference:llama_cpp'
|
|
include ':infrastructure:router'
|
|
include ':infrastructure:router:turbovec'
|
|
include ':infrastructure:tools'
|
|
include ':infrastructure:tools:filesystem'
|
|
include ':infrastructure:workflow'
|
|
include ':infrastructure:artifacts-cas'
|
|
|
|
include ':testing:replay'
|
|
include ':testing:contracts'
|
|
include ':testing:kernel'
|
|
include ':testing:integration'
|
|
include ':testing:fixtures'
|
|
include ':testing:projections'
|
|
include ':testing:transitions'
|
|
include ':testing:approvals'
|
|
include ':testing:deterministic'
|