Files
correx/settings.gradle
T
kami 219e2c762e feat(cas): content-addressed artifact store (steps 1–8)
New core:artifacts-store interface + infrastructure/artifacts-cas
implementation: segment files + SQLite index, Blake3 hashing,
group-commit fsync via flushBefore, recovery tail-scan, manual
compactor, and oldest-first disk-cap evictor.

Inference events now carry promptArtifactId / responseArtifactId;
orchestrators put bytes before emitting. SqliteEventStore wraps
its txn in artifactStore.flushBefore so segment data is fsynced
before the event commit, making the crash window non-corrupting
(TailScanner re-indexes orphan tail records on reopen).

Compactor and evictor are mutually exclusive via maintenanceMutex.
Step 9 (cloud sync) deferred to a later epic.

See docs/reviews/2026-05-18-cas-steps-1-8-review.md for the final
review.
2026-05-18 12:22:38 +04:00

68 lines
1.6 KiB
Groovy

pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = 'correx'
include ':apps:cli'
include ':apps:server'
include ':apps:tui'
include ':apps:worker'
include ':apps:desktop'
include ':core:kernel'
include ':core:events'
include ':core:transitions'
include ':core:context'
include ':core:inference'
include ':core:stages'
include ':core:agents'
include ':core:artifacts'
include ':core:artifacts-store'
include ':core:validation'
include ':core:approvals'
include ':core:tools'
include ':core:router'
include ':core:sessions'
include ':core:policies'
include ':core:observability'
include ':core:config'
include ':core:risk'
include ':infrastructure:persistence'
include ':infrastructure:inference'
include ':infrastructure:inference:commons'
include ':infrastructure:inference:llama_cpp'
include ':infrastructure:tools'
include ':infrastructure:tools:filesystem'
include ':infrastructure:security'
include ':infrastructure:scheduler'
include ':infrastructure:telemetry'
include ':infrastructure:workflow'
include ':infrastructure:artifacts-cas'
include ':interfaces:api'
include ':interfaces:cli'
include ':interfaces:sdk'
include ':plugins:tools'
include ':plugins:validators'
include ':plugins:compressors'
include ':plugins:providers'
include ':plugins:transitions'
include ':plugins:stages'
include ':plugins:policies'
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'