Getting Started
Getting Started
Learn what supyagent is, how it works, and get up and running in minutes.
Getting Started
Supyagent is a framework for building AI agents that can use tools, delegate tasks, and connect to cloud services. This section will get you from zero to a working agent in under 5 minutes.
What You'll Learn
- Installation — Install supypowers, supyagent, and verify your setup
- Quickstart — Create and chat with your first agent
- Core Concepts — Understand agents, tools, delegation, and sessions
Prerequisites
- Python 3.11 or higher
uvpackage manager (for isolated tool execution)- An API key for at least one LLM provider (Anthropic, OpenAI, Google, etc.)
The Three Layers
Supyagent is built in three layers, each usable independently:
| Layer | What It Does | Install |
|---|---|---|
| Supypowers | Turn Python scripts into callable tools | uv pip install supypowers |
| Supyagent | Agent framework with LLM loop + tools | uv pip install supyagent |
| Cloud | Connect to Gmail, Slack, GitHub, etc. | Sign up at supyagent.com |
You can use supypowers alone as a tool system, supyagent as a full agent framework, or add cloud integrations for third-party service access.