Agent Registry
The Agent Registry is the central catalog of all AI agents available within your Orbit environment.
It acts as the single source of truth for agent metadata, configuration, and discovery—ensuring that agents are consistently managed across organizations, accounts, and users.
What the Agent Registry Provides
-
Centralized Catalog
Stores all registered agents in one place for easy search, discovery, and governance. -
Metadata Management
Each agent includes details such as name, description, owner, version, capabilities, and permissions. -
Access Control
Works with role-based access (RBAC) to ensure the right users, accounts, and organizations can access the right agents. -
Multi-Tenant Support
Supports BUs (business units), organizations, and accounts—allowing agents to be scoped globally or restricted locally. -
Interoperability
Provides standardized schemas and identifiers so agents can work together and integrate with Orbit Flow, Console, and Hosted platforms.
Key Benefits
Centralizes all agent data, removing duplication and fragmentation.
Ensures agents meet compliance requirements with auditable registration and updates.
Cross-Platform Compatibility
Works seamlessly across Orbit Console and Hosted platforms.
Allows admins and developers to quickly find and enable agents from a central catalog.
Typical Lifecycle
-
Register Agent
Developer or admin adds the agent definition to the registry with metadata and access rules. -
Assign Access
Registry applies RBAC so only authorized orgs/accounts/users can use the agent. -
Discover
Agents appear in Orbit Flow, Console, or Marketplace based on permissions. -
Update
Agents can be versioned and updated while preserving compatibility. -
Audit & Monitor
Registry maintains logs of registration, updates, and usage for governance.
Example Entry
{
"id": "agent-analytics-001",
"name": "Analytics Agent",
"description": "Provides BI dashboards and KPIs for club performance.",
"version": "1.2.0",
"owner": "Clubwise",
"permissions": {
"orgs": ["clubwise"],
"accounts": ["account-123"],
"roles": ["admin", "analyst"]
},
"capabilities": ["charting", "metrics", "alerts"]
}
Last updated on