---
published: true
id: human-gate
title: Human Gate
description: Knowledge captured in João Lopes' learning graph.
tags:
- ai-engineering
- agent-design
locale: en
resource: https://joaolopes.dev.br/knowledge/concepts/en/human-gate/
created: '2026-03-27'
---

# Human Gate
A point in an agent loop where the model pauses and waits for human input before continuing.

## Definition
A human gate is a point in an agent loop where the model presents a result or proposal and waits for human input before continuing. Human gates are specified in skills — a skill defines where in the workflow the agent should stop and ask. The model produces a response with no tool calls, which ends the current loop and returns control to the user. Human gates are where the user exercises judgment while the agent handles the mechanical work.

## Source
- [Human-in-the-loop - Wikipedia](https://en.wikipedia.org/wiki/Human-in-the-loop)
- [Extend Claude with skills - Claude Code Docs](https://docs.anthropic.com/en/docs/claude-code/skills)

## Related
- [AI Agent](/concepts/en/ai-agent.md)
- [Skills](/concepts/en/skills.md)
