> ## Documentation Index
> Fetch the complete documentation index at: https://labs.prompthon.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Foundations

<div className="not-prose my-4 rounded-md border border-gray-200 bg-gray-50 p-2 text-sm dark:border-gray-800 dark:bg-gray-900/40">
  <div className="mb-2 px-1 text-xs font-semibold uppercase tracking-wide text-gray-500 dark:text-gray-400">Need help?</div>

  <div className="flex flex-wrap gap-2">
    <a className="inline-flex items-center gap-2 rounded-md border border-gray-200 bg-white px-3 py-1.5 font-medium text-gray-700 no-underline shadow-sm hover:border-gray-300 hover:bg-gray-50 dark:border-gray-800 dark:bg-gray-950/60 dark:text-gray-200 dark:hover:bg-gray-900" href="https://discord.gg/sDE2HhGTg4" target="_blank" rel="noreferrer">
      <Icon icon="discord" iconType="brands" size={14} />

      <span>Ask in Discord</span>
    </a>

    <a className="inline-flex items-center gap-2 rounded-md border border-gray-200 bg-white px-3 py-1.5 font-medium text-gray-700 no-underline shadow-sm hover:border-gray-300 hover:bg-gray-50 dark:border-gray-800 dark:bg-gray-950/60 dark:text-gray-200 dark:hover:bg-gray-900" href="https://github.com/Prompthon-IO/agent-systems-handbook/issues/new/choose" target="_blank" rel="noreferrer">
      <Icon icon="github" iconType="brands" size={14} />

      <span>Open a GitHub issue</span>
    </a>

    <a className="inline-flex items-center gap-2 rounded-md border border-gray-200 bg-white px-3 py-1.5 font-medium text-gray-700 no-underline shadow-sm hover:border-gray-300 hover:bg-gray-50 dark:border-gray-800 dark:bg-gray-950/60 dark:text-gray-200 dark:hover:bg-gray-900" href="https://github.com/Prompthon-IO/agent-systems-handbook/blob/main/SUPPORT.md" target="_blank" rel="noreferrer">
      <Icon icon="life-ring" size={14} />

      <span>Support guide</span>
    </a>
  </div>
</div>

This lane explains the core concepts behind agent systems before readers need
to care about any specific framework, vendor, or implementation stack.

## What belongs here

* What agent systems are
* When not to use agents
* Agents versus deterministic workflows
* Tool use and environment boundaries
* Memory and context at a conceptual level
* Single-agent and multi-agent basics

## Editorial intent

Start with universal questions, plain language, and durable mental models.
This is the first stop for global readers who want conceptual clarity before
they go deeper into implementation details.

## Current pages

* [The Agent System](/foundations/the-agent-system): a practical definition
  of agent systems as software loops, not just chat surfaces.
* [Agents Vs Workflows](/foundations/agents-vs-workflows): when to use deterministic
  orchestration, bounded autonomy, or a hybrid design.
* [History Of Agent Ideas](/foundations/history-of-agent-ideas): a short problem-driven
  history from symbolic systems to modern agent stacks.
* [LLM Foundations For Agent Systems](/foundations/llm-foundations-for-agent-systems):
  the minimum model concepts needed to design agent systems well.
