Skip to content

Aigentic Documentation

Aigentic is a cloud platform for building, deploying, and managing AI agents. Create agents powered by 25 models from 7 providers, connect them to Discord, Telegram, and Slack, orchestrate multi-agent swarms, give agents their own crypto wallets, and generate custom skills with SkillForge — all from your browser.

Get up and running in three steps:

  1. Sign up at aigentic.life — No downloads, no installations. Everything runs in your browser.

  2. Create your first agent — Pick a model (free NVIDIA NIM models are pre-configured), customize your agent’s personality, and start chatting instantly.

  3. Scale and connect — Connect your agent to Discord, Telegram, or Slack. Create multi-agent swarms, schedule automated tasks, and set up crypto wallets.

Prerequisites

What you need before getting started — just a browser and optionally an API key. Read more →

Sign Up & Setup

Create your account and explore the console for the first time. Read more →

Create Your First Agent

Step-by-step guide to creating and chatting with your first AI agent. Read more →

Security

How Aigentic keeps your data safe with encryption, sandboxing, and audit logs. Read more →

Agents are AI-powered assistants that you create and configure from the console. Each agent has its own model, personality (defined via a system prompt), and set of tools. Agents can chat with you directly, connect to external channels, or run automated tasks on a schedule.

Skills extend what agents can do. Browse the ClawHub catalog to install community-built skills, use SkillForge to generate custom skills from plain English, or create your own with the SkillCreator wizard. Skills can add new tools, integrate with third-party services, or define multi-step workflows.

Plugins extend the platform with capabilities like persistent memory, web search, file I/O, code execution, rate limiting, and more. Plugins come built-in or can be installed from npm packages, local paths, or archives. Gateway plugins run on every request; per-agent plugins are assigned individually from the agent profile dialog.

Channels let your agents communicate on platforms beyond the Aigentic console. Connect an agent to Discord, Telegram, or Slack and it will respond to messages on those platforms using the same personality and tools you configured.

Swarms orchestrate multiple agents working together on complex tasks. Define a swarm with a research question and let the agents collaborate in parallel, with AI-synthesized results and web search integration.

Scheduling allows agents to perform tasks on a recurring basis using cron expressions. Schedule an agent to run a report every morning, check a website for changes hourly, or post a weekly summary. Agents can also create and manage their own schedules via chat.

Wallets give agents their own crypto wallets on Base blockchain via Coinbase CDP. Send, receive, and manage USDC and ETH — programmatically.

Context Compaction automatically summarizes older messages in long conversations to reduce token costs while preserving key context. This works across all channels including Telegram and Discord.

Vault is the encrypted store where all sensitive data lives. API keys, bot tokens, and credentials are encrypted server-side and never exposed in the browser.

┌──────────────────────────────────────────────────────┐
│ Your Browser │
│ (aigentic.life console) │
├──────────────────────────────────────────────────────┤
│ Aigentic Cloud │
│ │
│ ┌─────────┐ ┌──────────┐ ┌───────────────────┐ │
│ │ Caddy │──►│ Bridge │──►│ Tenant Gateways │ │
│ │ (TLS) │ │ (Rust) │ │ (per-user) │ │
│ └─────────┘ └──────────┘ └────────┬──────────┘ │
│ │ │
│ ┌──────────┐ ┌──────────┐ ┌─────────┼───────────┐ │
│ │ Encrypted│ │ Audit │ │ ┌──────┴────────┐ │ │
│ │ Vault │ │ Log │ │ │ Agent Engine │ │ │
│ │ │ │ │ │ │ + LLM Client │ │ │
│ └──────────┘ └──────────┘ │ └───────────────┘ │ │
│ └──────────────────────┘ │
└──────────────────────────────────────────────────────┘

The React frontend communicates with the Rust backend over WebSocket. The bridge server orchestrates per-tenant gateways, each running in its own isolated Docker container. The gateway manages agent execution, handles encryption, routes messages, connects to external channels, and executes scheduled tasks. Each tenant’s data is fully isolated.