Agents are programs that accept input, use tools and LLMs, and produce output. They range from simple prompt-driven assistants to deterministic TypeScript workflows. There are two ways to get agents into your workspace:Documentation Index
Fetch the complete documentation index at: https://docs.guild.ai/llms.txt
Use this file to discover all available pages before exploring further.
Install from the Agent Hub
The Agent Hub contains pre-built agents ready to use. Browse the Agent Hub from your workspace, install an agent, and start a session — no code required.- Open your workspace at app.guild.ai
- Go to Agents and click Add agent
- Browse the Agent Hub, select an agent, and install it
Build your own
Use the Agent SDK to build custom agents tailored to your team’s workflows. The SDK supports three agent types:LLM agents
Pair a system prompt with tools — the LLM decides how to accomplish the task. The simplest way to build an agent.
Auto-managed state agents
Write deterministic TypeScript with automatic state management. Best for algorithmic, cost-predictable workflows.
Self-managed state agents
Event-driven state machines with parallel tool calls and explicit state control. Most flexible, but more complex.