Use an agent
Sign in
Go to app.guild.ai and sign in with your Google account.
Install an agent
Inside your workspace, go to Agents and click Add agent. Browse the catalog and install one — try
github-issues if you have a GitHub integration, or any public agent.Build your own agent
Ready to build a custom agent? The Guild CLI handles the full workflow: create, test, save, publish.Prerequisites
- Node.js 18+ and npm — nodejs.org
- Google Cloud SDK (gcloud) — cloud.google.com/sdk/docs/install
- The Guild CLI tarball — available from the Guild CLI Google Drive shared with your team
Install and authenticate
Authenticate with Guild
Create, test, publish
Create the agent
Edit the agent
Open
agent.ts and replace the contents:mode: "multi-turn" keeps the conversation going after each response. llmAgent automatically includes userInterfaceTools, so the agent can interact with users without extra setup.Test it
--ephemeral creates a temporary version for testing without saving. This opens an interactive chat session:Ctrl+C to exit.Next steps
CLI reference
Full development loop: templates, testing, publishing, troubleshooting.
Agent SDK
Build advanced agents with typed inputs, tool sets, and platform services.
LLM agents
Prompt-driven agents with tools — the simplest way to build.
Coded agents
Deterministic TypeScript agents for algorithmic workflows.