Build Your First Agent
Create a complete agent from scratch
Build Your First Agent
Now it's your turn. Create a complete agent from scratch and watch it execute.
Your Task
- Choose a trigger type (Manual is fine for testing)
- Write a clear goal (e.g., "Scan workspace and notify team")
- Select at least one tool
- Click "Run Agent" and observe the full execution
What to Watch For
- Planning phase: Agent considers the goal and available tools
- Tool calls: Agent executes each tool and receives results
- Reasoning: Agent decides if goal is met or if more work is needed
- Completion: Final result card shows success
Experiment: Try different goals and tool combinations. Notice how the agent adapts its execution based on what tools are available.
Example Goals to Try
- "List all project files and write summary to notes.txt"
- "Send a status ping to the monitoring channel"
- "Scan directory, create report, and notify team"
This simulated agent is deterministic, but real agents would use LLMs to plan dynamically. The structure is the same: trigger → goal → tools → result.