Reference · Glossary

Glossary

The shared vocabulary of this course. Every lesson uses these words exactly this way.

TermMeaningSource
Loop engineeringReplacing yourself as the person who prompts the agent, by designing the system that prompts it instead.Osmani
LoopA recursive goal. You define a purpose; the AI iterates until it is complete.Osmani
AutomationA scheduled run that does discovery and triage by itself. The heartbeat of a loop.Osmani
WorktreeA separate working directory on its own branch, sharing one repo history. Stops parallel agents colliding.git
SkillProject knowledge written down in a SKILL.md folder, so the agent reads it instead of guessing. The authoring format.Osmani
PluginHow you ship skills and connectors — bundled so a teammate installs the setup in one go.Osmani
ConnectorAn MCP-based link from the agent to a real tool: issue tracker, database, staging API, Slack.Osmani
Sub-agentA separate agent with its own instructions and possibly its own model, so the maker is not the checker.Osmani
StateThe sixth piece. On-disk memory of what is done and what is next, outside any conversation.Osmani
Agent harness engineeringDesigning the environment a single agent runs inside. Loop engineering sits one floor above it.Osmani
Factory modelThe system that builds the software, as distinct from the software.Osmani
Orchestration taxYour review bandwidth, not the tool, is the real ceiling on how many agents you can run.Osmani
Intent debtWhat accrues when intent is unwritten: an agent starts cold and fills every hole with a confident guess.Osmani
Comprehension debtThe growing gap between code that exists and code you understand.Osmani
Cognitive surrenderCeasing to hold an opinion, and taking whatever the loop returns.Osmani
/loopRe-runs a prompt on a cadence. Stops when you stop it.Claude Code / Codex
/goalRuns until a verifiable condition holds. A separate small model judges completion after each turn.Claude Code / Codex
MCPThe protocol connectors are built on. Shared by both tools, so a connector usually ports across.Osmani