chore(examples): root-level workflow descriptions + curated .correx project profile

This commit is contained in:
2026-06-11 21:47:39 +04:00
parent f521ac89e5
commit 8bf56604c7
3 changed files with 16 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
about = "CORREX — local-first, event-sourced orchestration kernel for LLM workflows. Kotlin 2.0 / JVM 21, Gradle multi-module, kotlinx.serialization, Ktor."
conventions = [
"Event log is the only source of truth; projections are disposable and rebuilt from events",
"Dependency direction: apps -> core -> infrastructure; no cross-core imports",
"No bare try-catch; use runCatching and sealed domain error types",
"Every new EventPayload must be registered in the eventModule polymorphic block (Serialization.kt)",
]
[commands]
test-all = "./gradlew check --rerun-tasks"
test-module = "./gradlew :core:<module>:test --rerun-tasks"
context-lookup = "python scripts/ctx.py <query>"
epic-status = "bash scripts/epic-status.sh"
+1
View File
@@ -1,4 +1,5 @@
id = "healthcheck" id = "healthcheck"
description = "Two-stage system healthcheck: writes a diagnostic shell script, then executes it and reports the result."
start = "write_script" start = "write_script"
[[stages]] [[stages]]
+1
View File
@@ -1,4 +1,5 @@
id = "qa_ping" id = "qa_ping"
description = "Minimal one-stage smoke test: writes a single ping file to verify the pipeline runs end to end."
start = "ping" start = "ping"
[[stages]] [[stages]]