Orbit Logo
Agent Services

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

Single Source of Truth

Centralizes all agent data, removing duplication and fragmentation.

Governance & Compliance

Ensures agents meet compliance requirements with auditable registration and updates.

Cross-Platform Compatibility

Works seamlessly across Orbit Console and Hosted platforms.

Agent Discovery

Allows admins and developers to quickly find and enable agents from a central catalog.


Typical Lifecycle

  1. Register Agent
    Developer or admin adds the agent definition to the registry with metadata and access rules.

  2. Assign Access
    Registry applies RBAC so only authorized orgs/accounts/users can use the agent.

  3. Discover
    Agents appear in Orbit Flow, Console, or Marketplace based on permissions.

  4. Update
    Agents can be versioned and updated while preserving compatibility.

  5. 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