Documentation & Guides

Give AI a job in 60 seconds.

Everything you need to set up AGNT Community Core, connect model providers, build autonomous node workflows, and audit every execution receipt.

API & Reference Documentation

Generated from the docs pipeline — always current with what is published.

Loading documentation…

Quickstart Guide

AGNT is a local-first operational workspace. It runs directly on your machine, connects to local models (Ollama/LM Studio) or cloud APIs (OpenAI, Anthropic), and produces verified receipts for every job completed.

Step 1

Install Community Core

Download and launch AGNT for your operating system. Community Core is free forever and requires zero account sign-up to operate locally.

# Windows (winget)
winget install agnt-gg.community-core

# macOS (Homebrew)
brew install --cask agnt

# Docker / Headless
docker run -d -p 3333:3333 --name agnt ghcr.io/agnt-gg/agnt:latest

# Linux / Desktop
download from https://agnt.gg/downloads
Step 2

Connect Your Model Provider

AGNT connects natively to 15+ AI providers (cloud & 100% offline local). For total privacy, launch Ollama or LM Studio locally on port 11434/1234. For cloud models, store API keys in your encrypted OS keychain vault (OpenAI, Anthropic, Google Gemini, Grok, DeepSeek, Mistral, Bedrock, Azure, Cohere, Perplexity, Together AI, Replicate, Fireworks AI, Hugging Face).

// Example: Setting up Ollama in AGNT settings
{
  "provider": "ollama",
  "baseUrl": "http://localhost:11434",
  "defaultModel": "llama3.3:70b"
}
Step 3

Run Your First Verified Job

Prompt AGNT from the chat or visual canvas. AGNT plans the task, executes tools, and outputs a complete receipt showing sources, tool calls, and evidence.

# Example prompt
"Read C:/logs/app.log, find all HTTP 500 errors from today, summarize the stack traces, and write the report to C:/reports/errors.md"

API Reference

The reference is generated from the product's own API documentation, so it cannot drift from the runtime. Start here:

New to AGNT

Getting started

Install, connect a model, give an agent its first job — the ten-minute path.

Use the API

API Quickstart

Base URLs, authentication in ten lines, first call — then every endpoint family: agents, workflows, goals & autonomy, skills, memory, receipts & wallets and the rest of the catalogue below.

Run it headless

Docker guide

Container image for servers and VPSes, from the product quickstarts.

Frequently Asked Questions

Is my data sent to AGNT servers when using Community Core?

No. Community Core runs 100% locally. Your prompts, code files, credentials, and receipts stay on your machine unless you explicitly connect a remote cloud provider.

Can I use AGNT without an internet connection?

Yes. When connected to local models via Ollama or LM Studio, AGNT functions completely offline for all filesystem, local shell, and code editing operations.

How do approval gates work for dangerous operations?

Any action that modifies system settings, executes arbitrary shell scripts, or sends external emails triggers a visual approval modal in AGNT before execution.