> ## 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.

# Builder

<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>

Best for engineers who want to design and build professional agent
applications.

## Shared starting points

* [Environment Setup](./environment-setup.mdx): the shared local setup guide for
  running starter-code checks before deeper implementation work.
* [Sample Projects](./sample-projects.mdx): the public guide to current example
  starters and where they live in the repo.

## Suggested sequence

1. [The Agent Systems](../foundations/the-agent-system.mdx)
2. [History Of Agent Ideas](../foundations/history-of-agent-ideas.mdx)
3. [LLM Foundations For Agent Systems](../foundations/llm-foundations-for-agent-systems.mdx)
4. [Agents Vs Workflows](../foundations/agents-vs-workflows.mdx)
5. [Reasoning And Control Patterns](../patterns/reasoning-and-control-patterns.mdx)
6. [Planning And Reflection](../patterns/planning-and-reflection.mdx)
7. [Agent Memory And Retrieval](../patterns/agent-memory-and-retrieval.mdx)
8. [Agent Runtime Building Blocks](../patterns/agent-runtime-building-blocks.mdx)
9. [Context Engineering](../systems/context-engineering.mdx)
10. [Protocols And Interoperability](../systems/protocols-and-interoperability.mdx)
11. [Evaluation And Observability](../systems/evaluation-and-observability.mdx)
12. [Deep Research Agents](../case-studies/deep-research-agents.mdx)
13. [Agent Frameworks](../ecosystem/agent-frameworks.mdx)
14. [Agent Platforms And Low-Code Builders](../ecosystem/agent-platforms-and-low-code-builders.mdx)
15. [Radar](../radar/index.mdx)

## What this path optimizes for

* Reusable implementation patterns
* Production-minded system design
* Concrete examples that connect ideas to real builds
* Comparative awareness of tools and platforms
