diff --git a/_manifests/critic-anti-pattern.toml b/_manifests/critic-anti-pattern.toml index 853a485..763bbef 100644 --- a/_manifests/critic-anti-pattern.toml +++ b/_manifests/critic-anti-pattern.toml @@ -21,15 +21,18 @@ domain_in = ["task scope (verbatim user prompt)", "target paths / files"] forbidden_domain = ["hardcoded secrets (RULE 0.8)", "cross-language drift (use the matching sibling)"] output_extra_fields = ["Largest file LOC", "Tests pass count"] -[[handoff]] -target = "validator" -trigger = "general fact-check fallback" [references] extra = [ "path:user-rules/code-style.md", "path:user-rules/karpathy-behavioral.md", ] +# IMPORTANT (TOML spec): all [table] sections must precede [[array]] sections. +# Adding a new [section] BELOW [[handoff]] makes it a sub-table of the last handoff. +[[handoff]] +target = "validator" +trigger = "general fact-check fallback" + [taxonomy] kingdom = "manifest" mechanism = "compose" diff --git a/_manifests/critic-perf.toml b/_manifests/critic-perf.toml index afee1c8..fe0794f 100644 --- a/_manifests/critic-perf.toml +++ b/_manifests/critic-perf.toml @@ -21,15 +21,18 @@ domain_in = ["task scope (verbatim user prompt)", "target paths / files"] forbidden_domain = ["hardcoded secrets (RULE 0.8)", "cross-language drift (use the matching sibling)"] output_extra_fields = ["Largest file LOC", "Tests pass count"] -[[handoff]] -target = "validator" -trigger = "general fact-check fallback" [references] extra = [ "path:user-rules/code-style.md", "path:user-rules/karpathy-behavioral.md", ] +# IMPORTANT (TOML spec): all [table] sections must precede [[array]] sections. +# Adding a new [section] BELOW [[handoff]] makes it a sub-table of the last handoff. +[[handoff]] +target = "validator" +trigger = "general fact-check fallback" + [taxonomy] kingdom = "manifest" mechanism = "compose" diff --git a/_manifests/ml-implementer.toml b/_manifests/ml-implementer.toml index 94851b2..83bacdb 100644 --- a/_manifests/ml-implementer.toml +++ b/_manifests/ml-implementer.toml @@ -12,7 +12,7 @@ role = """ You are a senior ML implementation engineer. You write training scripts, inference code, Modal jobs, \ and experiment runners, enforcing Math-First (Level 0), the Pre-Experiment Check, and the \ Modal Protocol on every paid run. You own experiment observability and immediate result logging. \ -You are NOT a theory writer (hand off to `physics-deriver`), NOT a generic code writer (hand off to \ +You are NOT a theory writer (hand off to `architect`), NOT a generic code writer (hand off to \ `code-implementer`), NOT a deploy/infra engineer (hand off to `infra-implementer`). Your output is \ tested training/inference code with exact param counts, displayed cost estimates, and results already \ logged in `memory/{project}.md` before analysis. @@ -107,9 +107,9 @@ trigger = "multi-node composition design, experiment matrix layout, benchmark/ba [references] extra = [ "path:user-rules/ml-protocol.md", - "path:user-rules/specialized-node-training.md", + "path:user-rules/cfc-specialized-nodes.md", "path:user-rules/api-cost-guard.md", - "path:user-rules/observable-classification.md", + "path:user-rules/paradigm-native-measurement.md", "path:user-rules/manifold-tangent-sanity.md", "path:user-rules/no-downgrade-constructive.md", "path:user-memory/wrong-paths-specialized-ml.md", # TODO verify path:user-memory exists in assembler resolver diff --git a/_manifests/ml-researcher.toml b/_manifests/ml-researcher.toml index b2fb1f6..b6321fc 100644 --- a/_manifests/ml-researcher.toml +++ b/_manifests/ml-researcher.toml @@ -13,7 +13,7 @@ You are the ML/physics research specialist. You own literature review, tooling-r search, reproducibility audit, and math-first formulation for any ML/RL \ question. You are READ-ONLY — you never run experiments, never train models, never \ edit code. Reuse beats reinvention; math beats vibes; synthetic-to-real gap is always \ -disclosed. You hand off to `ml-implementer` for experiments, `physics-deriver` for \ +disclosed. You hand off to `ml-implementer` for experiments, `architect` for \ theorem writing, `validator` for citation gating. """ @@ -38,7 +38,7 @@ domain_in = [ forbidden_domain = [ "Running experiments, training models, or editing code (read-only agent — hand off to `ml-implementer`)", - "Writing theorems / derivations (hand off to `physics-deriver`)", + "Writing theorems / derivations (hand off to `architect`)", "Recommending code BEFORE writing the math expression (Math-First violation)", "Proposing a custom env / training loop / dataset loader without first searching MyoSuite / Menagerie / CleanRL / HuggingFace / Ninapro", "Reporting a sim/benchmark number without the synthetic-to-real disclaimer", @@ -91,8 +91,8 @@ trigger = "question is about ML-system architecture (node graph, data-flow, modu [references] extra = [ "path:user-rules/ml-protocol.md", - "path:user-rules/specialized-node-training.md", - "path:user-rules/observable-classification.md", + "path:user-rules/cfc-specialized-nodes.md", + "path:user-rules/paradigm-native-measurement.md", "path:user-rules/api-cost-guard.md", "path:user-rules/no-downgrade-constructive.md", "path:user-memory/wrong-paths-specialized-ml.md", # TODO verify path:user-memory exists in assembler resolver