autogpt-agents

Build and deploy continuous autonomous agents using AutoGPT's visual workflow builder and Forge toolkit.

13.0k|930|Updated Nov 3, 2025
One-click install
npx skills add https://github.com/Orchestra-Research/AI-research-SKILLs --skill autogpt-agents-orchestra-research
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: autogpt-agents
Source: https://github.com/Orchestra-Research/AI-research-SKILLs/tree/main/14-agents/autogpt
Command: npx skills add https://github.com/Orchestra-Research/AI-research-SKILLs --skill autogpt-agents-orchestra-research

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires autogpt-platform, and includes references (resource) components.

What problem does it solve? Building autonomous AI agents that run continuously with external triggers, multi-step workflows, and integrations typically requires assembling orchestration, scheduling, and credential management from scratch. This Skill provides the operational knowledge to build, deploy, and monitor such agents on the AutoGPT platform. ## Core Features & Use Cases - Visual Agent Builder: Compose agents as graphs of connected blocks (LLM calls, webhooks, integrations) through a drag-and-drop interface. - Continuous Execution & Triggers: Run agents persistently via manual API calls, webhook triggers, or cron-style schedules, with WebSocket-based monitoring. - Forge Development Toolkit: Create custom agents and abilities programmatically, then validate them with the agbenchmark benchmarking framework. - Use Case: Deploy an agent that listens for GitHub webhook events, summarizes pull requests with an LLM block, and posts results to Discord on a schedule. ## Quick Start Set up an AutoGPT agent with Docker that triggers on a webhook, processes the payload with an LLM block, and sends the result to an output block.

Frequently Asked Questions about autogpt-agents

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build an autonomous agent with AutoGPT?▼

Clone the AutoGPT repository, start the backend with docker compose, and run the frontend with npm. Then open the visual builder at localhost:3000, add blocks from the BlocksControl panel, connect nodes, configure inputs, and run the agent.

AutoGPT vs LangChain vs CrewAI for building agents?▼

AutoGPT suits continuous agents with visual workflows, triggers, and a marketplace of reusable blocks. LangChain offers more control over agent logic in code, while CrewAI focuses on role-based multi-agent collaboration.

How do I trigger an AutoGPT agent on a schedule?▼

Create a scheduled execution by posting a cron expression with the graph_id and inputs to the platform API, for example "0 */2 * * *" to run every two hours. Agents can also be triggered manually via the execute endpoint or through webhooks.

Why is my AutoGPT agent execution stuck in queued status?▼

Stuck executions usually mean the executor service is down or the RabbitMQ queue is backlogged. Check executor logs with docker compose logs executor, inspect queues at the RabbitMQ management UI on port 15672, and restart or scale the executor service.

Can AutoGPT blocks use my OpenAI or GitHub credentials?▼

Yes, add credentials under Profile > Integrations using API keys or OAuth for providers like OpenAI, Anthropic, GitHub, Google, Discord, and Notion. Blocks automatically access stored credentials, which are encrypted at rest.

When should I not use AutoGPT for agent development?▼

Avoid AutoGPT when you need fine-grained programmatic control over agent logic, simple hosted assistants, or Microsoft ecosystem integration. In those cases LangChain, OpenAI Assistants, or Semantic Kernel are better fits.