aicm
Version:
A TypeScript CLI tool for managing AI IDE rules across different projects and teams
13 lines (12 loc) • 374 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.install = install;
const install_1 = require("./commands/install");
/**
* Install AICM rules based on configuration
* @param options Installation options
* @returns Result of the install operation
*/
async function install(options = {}) {
return (0, install_1.install)(options);
}