$ cat node-template.py
H
Human Codex Analysis
// Analysis half of the Human Codex Interview as a headless macro: takes an already-typed interview transcript and the report settings, runs the four-pass Human Codex engine with the built-in Knowledge Base v2 (48 dimensions, 398 signed causal relations) and returns the schema v2.0 profile JSON, the second-person Markdown report, the headline archetype and validation notes. No interview loop, no Drive writes.
Process
Utility
#human-codex#personality#psychological-profile#report#json
template.py
1import json2import sys345def main():6 print(json.dumps({7 "error": "Macro nodes are executed by the macro executor, not directly. "8 "Please configure the macro using the wizard.",9 }), file=sys.stderr)10 sys.exit(1)111213if __name__ == "__main__":14 main()15$ git log --oneline
v1.0.0
HEAD
2026-09-231.0.0: cut from the Human Codex Interview workspace template 1.1.0 (Pass 1-4 + Assemble, Knowledge Base v2).