UNPKG

aicm

Version:

A TypeScript CLI tool for managing AI IDE rules across different projects and teams

10 lines (9 loc) 445 B
import { InstallOptions, InstallResult } from "./commands/install"; /** * Install AICM rules based on configuration * @param options Installation options * @returns Result of the install operation */ export declare function install(options?: InstallOptions): Promise<InstallResult>; export type { InstallOptions, InstallResult } from "./commands/install"; export type { ResolvedConfig, Config, RuleFile, MCPServers, } from "./utils/config";