docs: typography hygiene + 2 in-body H1 removals across 5 pages

This commit is contained in:
Vincent Koc
2026-05-05 21:01:08 -07:00
parent f35fb7288a
commit 0d73f174a9
5 changed files with 24 additions and 28 deletions

View File

@@ -6,8 +6,8 @@ read_when:
title: "Agent loop"
---
An agentic loop is the full real run of an agent: intake → context assembly → model inference →
tool execution → streaming replies → persistence. Its the authoritative path that turns a message
An agentic loop is the full "real" run of an agent: intake → context assembly → model inference →
tool execution → streaming replies → persistence. It's the authoritative path that turns a message
into actions and a final reply, while keeping session state consistent.
In OpenClaw, a loop is a single, serialized run per session that emits lifecycle and stream events
@@ -67,7 +67,7 @@ wired end-to-end.
## Prompt assembly + system prompt
- System prompt is built from OpenClaws base prompt, skills prompt, bootstrap context, and per-run overrides.
- System prompt is built from OpenClaw's base prompt, skills prompt, bootstrap context, and per-run overrides.
- Model-specific limits and compaction reserve tokens are enforced.
- See [System prompt](/concepts/system-prompt) for what the model sees.