Skip to main content

getInstalledAgentsAction

client.agents.getInstalledAgentsAction(): Promise<AgentConfig[]>

Retrieves action configurations for all installed agents.

Returns the action capability definitions for each installed agent, describing what actions they can perform.

Parameters

No parameters.

Returns

Promise<AgentConfig[]> — A promise that resolves to an array of AgentConfig objects

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.agents.getInstalledAgentsAction();
console.log(result);