Blocks for managing agents in your personal AutoGPT library.
Add To Library From Store
Add an agent from the store to your personal library
This block copies an agent from the public store into your personal library using its store_listing_version_id. Optionally provide a custom agent_name to rename it in your library.
The block returns the library entry ID and agent graph ID, which can be used to execute the agent or manage your library.
Input
Description
Type
Required
The ID of the store listing version to add to library
Optional custom name for the agent in your library
Error message if the operation failed
Whether the agent was successfully added to library
The ID of the library agent entry
The ID of the agent graph
The version number of the agent graph
Possible use case
Agent Provisioning: Automatically add recommended agents to a user's library.
Onboarding Flows: Set up a user's library with starter agents during onboarding.
Dynamic Agent Access: Add agents on-demand when users request specific capabilities.
List Library Agents
List all agents in your personal library
This block retrieves all agents stored in your personal library. Use search_query to filter by name, and limit/page for pagination through large libraries.
Results include each agent's metadata and are output both as a complete list and individually for iteration.
Input
Description
Type
Required
Optional search query to filter agents
Maximum number of agents to return
Page number for pagination
Error message if the operation failed
List of agents in the library
Individual library agent (yielded for each agent)
Total number of agents in library
Possible use case
Agent Selection: Display available agents for users to choose from in a workflow.
Library Management: Build interfaces for users to manage and organize their agent library.
Agent Inventory: Check what agents are available before deciding which to execute.