getInstalled
client.agents.getInstalled(): Promise<Agent[]>
Retrieves all installed agents.
Returns every agent that has been installed in the current CodeBolt environment, whether from the registry or locally.
Parameters
No parameters.
Returns
Promise<Agent[]> — A promise that resolves to an array of installed Agent objects
Example
import { CodeBoltClient } from '@codebolt/clientsdk';
const client = new CodeBoltClient();
const result = await client.agents.getInstalled();
console.log(result);