[research@ai4se] : ~ $
cd ../
[harmony] | | 11 min

# HITL / HOTL / HOOL: AI4SE's Spectrum of Human-Machine Oversight

Neither full HITL nor complete autonomy — true Harmony is an oversight spectrum routed by action risk: human-in-the-loop, on-the-loop, and out-of-the-loop each have their own place.

[hitl-hotl][harmony]

Three Modes of Oversight

ModeDefinitionTypical scenarios
HITLAgent proposes → blocks → human approves → executesMerges, releases, deletions, compliance operations
HOTLAgent executes autonomously, human oversees with overrideCode exploration, test runs, draft generation
HOOLFully autonomous within policy + post-hoc auditAuto-formatting, dependency updates, templated tasks

Why Static HITL Isn’t Enough

Problems with full-time HITL:

  • Humans become the bottleneck — waiting for approval at every step drains process efficiency
  • Approval fatigue — too many trivial approvals means high-risk items get rubber-stamped too
  • NIST AI RMF explicitly states: oversight should be “proportionate to risk”

Routing Strategy

if action.is_irreversible or action.is_compliance_critical:
    → HITL
elif action.is_exploratory or action.has_rollback:
    → HOTL
elif action.is_templated and action.has_gates:
    → HOOL

References

  • NIST AI Risk Management Framework
  • Sheridan: Supervisory Control (1992)
  • neurals.ca: HITL vs HOTL
  • 2026 Taxonomy of Human-AI Interaction: HITL, HOTL, HIC