Agent Spaces are the visual AI agent builder for AI Workforce. They help you design internal multi-agent workflows and agentic automation without writing framework code.Documentation Index
Fetch the complete documentation index at: https://docs.sketricgen.ai/llms.txt
Use this file to discover all available pages before exploring further.
Agent Space Structure

- Main agent: the agent that talks to the user and owns the run.
- Sub agents: specialist helpers the main agent can call.
- Tools: built-in tools, app connectors, API requests, MCP servers, and Knowledge Bases.
- Testing: a playground for running the workflow before relying on it.
- Traces: execution history for debugging and optimization.
Building a Workflow
Start small:- Create an Agent Space.
- Configure the main agent.
- Add one specialist sub agent.
- Attach only the tools each agent needs.
- Describe when the main agent should call the sub agent.
- Run a test and inspect traces.
- Add more sub agents only when the responsibility boundary is clear.
Main Agent
The main agent is the only agent that directly talks to the user. Its job is to understand the request, plan the work, use tools, call sub agents when useful, and return the final answer. Give the main agent clear instructions about what it owns, what tools it can use, and when it should ask a follow-up question.

