erosolar-cli
Version:
Unified AI agent framework for the command line - Multi-provider support with schema-driven tools, code intelligence, and transparent reasoning
12 lines • 513 B
JavaScript
import { DependencySecurityCapabilityModule } from '../../../capabilities/dependencySecurityCapability.js';
export function createDependencyToolPlugin() {
return {
id: 'tool.dependency.security',
description: 'Dependency analysis, lockfile insights, and npm audit orchestration.',
targets: ['node'],
create: async (context) => new DependencySecurityCapabilityModule({
workingDir: context.workingDir,
}),
};
}
//# sourceMappingURL=dependencyPlugin.js.map