Skip to main content

getRecommendedAgents

client.agents.getRecommendedAgents(): Promise<Agent[]>

Retrieves recommended agents based on the current context.

Returns agents that are suggested based on the current project type, user preferences, or usage patterns.

Parameters

No parameters.

Returns

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

Example

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

const client = new CodeBoltClient();

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