- Updated `pre-commit` hook to use genuine tools (`tree-sitter`, `semgrep`). - Enhanced `meta_state_manager.ts` to fully write Git Note telemetry on commit. - Implemented the 6 core agents as per the v4 blueprint: Gatekeeper, Historian, Adversary, Translator, Analyst, and Evaluator. - Ensured agents respect Git-Native principles, interacting with `.forum/` directories and the `meta-state` orphan branch via standard Deno Commands. - Addressed all Deno linting rules (no unused vars). Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> Co-authored-by: mrteye <1945243+mrteye@users.noreply.github.com>
21 lines
251 B
JSON
21 lines
251 B
JSON
{
|
|
"Gatekeeper": {
|
|
"requires": []
|
|
},
|
|
"Coder": {
|
|
"requires": [
|
|
"Gatekeeper_Approval"
|
|
]
|
|
},
|
|
"Adversary": {
|
|
"requires": [
|
|
"Coder_Commit"
|
|
]
|
|
},
|
|
"Evaluator": {
|
|
"requires": [
|
|
"Adversary_Pass"
|
|
]
|
|
}
|
|
}
|