Skip to main content

updateCodeboltYaml

client.projects.updateCodeboltYaml(data: UpdateCodeboltYamlRequest): Promise<void>

Updates the codebolt.yaml configuration file for the project.

Modifies the project's codebolt.yaml, which defines agent configurations, tool permissions, and workflow settings specific to the CodeBolt platform.

Parameters

ParameterTypeRequiredDescription
dataUpdateCodeboltYamlRequestYesThe YAML configuration updates to apply

Returns

Promise<void> — A promise that resolves when the YAML has been updated

Example

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

const client = new CodeBoltClient();

const result = await client.projects.updateCodeboltYaml(/* UpdateCodeboltYamlRequest */);
console.log(result);