7cfb4e92d1
QA runs clear frontend/ before each run, taking node_modules with it. With #263 making the terminal build gate actually fire, the gate would fail on absent dependencies instead of on the code it exists to verify. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
28 lines
2.4 KiB
TOML
28 lines
2.4 KiB
TOML
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)",
|
|
"Track multi-session or handoff work as native tasks: search before creating to avoid duplicates (task_search), task_context before starting, claim before working, submit_for_review when ready, complete after review. Don't open a task for a single self-contained edit you finish now. When a goal has dependency seams or independent review points, task_decompose it into a parent + DEPENDS_ON-linked children (one approval) instead of one big task; a session works one task at a time, so siblings are claimed by later runs as they unblock.",
|
|
"UI uses the Ethos design system in ./design-system. COPY design-system/ethos.tokens.css and ethos-icons.svg into the project and import them — do NOT read their contents. All colors/spacing/radii come from the token CSS vars (never hardcode). Read design-system/SKILL.md only for component/layout rules.",
|
|
]
|
|
|
|
[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"
|
|
# Build-gate aliases (BuildExpectation → commandAlias): MODULE→typecheck, PROJECT→build, TESTS→test.
|
|
# The gate runner is whitespace-split / no-shell and runs at workspace_root (the repo), so `--prefix
|
|
# frontend` targets the Node subproject without a `cd`. `npm run build` = `tsc && vite build` (npm's
|
|
# own shell handles the &&), which fails on a dangling asset import — exactly the COMPLETED-lie hole.
|
|
# QA runs clear frontend/ before each run, so node_modules is absent when the terminal build gate
|
|
# fires. Without this the gate fails on missing deps instead of on the code it exists to verify.
|
|
# `install`, not `ci`: a fresh scaffold has no package-lock.json yet.
|
|
setup = "npm --prefix frontend install"
|
|
typecheck = "npm --prefix frontend run build"
|
|
build = "npm --prefix frontend run build"
|
|
test = "npm --prefix frontend test"
|