Supyagent
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
  • uv package 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:

LayerWhat It DoesInstall
SupypowersTurn Python scripts into callable toolsuv pip install supypowers
SupyagentAgent framework with LLM loop + toolsuv pip install supyagent
CloudConnect 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.