Skip to main content

getAvailableToolBoxes

codebolt.tool.getAvailableToolBoxes(): Promise

Retrieves all available toolboxes from the CodeBolt registry.

Returns

  • Promise: A promise resolving to an array of registry toolbox configurations

Example

const codebolt = require('@codebolt/codeboltjs');


try {
const getTools= await codebolt.tools.getEnabledToolBoxes();
console.log('✅ Toolbox configuration result:', JSON.stringify(getTools, null, 2));
} catch (error) {
console.log('⚠️ Toolbox configuration failed:', error.message);
}

Status

Comming Soon....