auth-yes/.forum/src/core/transitions.json
Tyler Gillispie 6a3c988030
feat(forum): Implement v4 agent scaffolding and the 6 core agents (#74)
- 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>
2026-08-29 15:04:05 -07:00

21 lines
251 B
JSON

{
"Gatekeeper": {
"requires": []
},
"Coder": {
"requires": [
"Gatekeeper_Approval"
]
},
"Adversary": {
"requires": [
"Coder_Commit"
]
},
"Evaluator": {
"requires": [
"Adversary_Pass"
]
}
}