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

# Systems

<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 focuses on production-minded system concerns, which is one of the
main opportunities for this repository to stand apart from lighter agent
courses and cookbook repos.

## What belongs here

* Context engineering
* Protocol interoperability
* Evaluation
* Observability
* Reliability
* Safety and governance
* Deployment and operations

## Editorial intent

Pages in this lane should move beyond demos. The goal is to explain how agent
systems behave as real software systems with interfaces, traces, boundaries,
and operational tradeoffs.

## Current pages

* [Context Engineering](/systems/context-engineering): how systems write, select,
  compress, and isolate context for reliable multi-step work.
* [Agent Security And Prompt Injection](/systems/agent-security-and-prompt-injection):
  how teams contain untrusted inputs, dangerous tools, and external side
  effects in production-minded agent systems.
* [Agent UI Protocols And Generative UI](/systems/agent-ui-protocols-and-generative-ui):
  how AG-UI and A2UI separate user-facing interaction from tool and agent
  protocols.
* [Protocols And Interoperability](/systems/protocols-and-interoperability): how
  tool access, agent collaboration, and network discovery fit together.
* [Evaluation And Observability](/systems/evaluation-and-observability): how to
  measure capability, turn written intent into runnable evals, and explain
  failures in production-minded agent systems.

## Example starters

* [Weather MCP Server Starter](/systems/examples/weather-mcp-server-starter):
  a thin protocol-facing tool service sketch for future interop examples.
