UNPKG

humanbehavior-js

Version:

SDK for HumanBehavior session and event recording

27 lines 765 B
#!/usr/bin/env node /** * AI-Enhanced HumanBehavior SDK Auto-Installation CLI * * Usage: npx humanbehavior-js ai-auto-install [api-key] * * This tool uses AI to intelligently detect frameworks, analyze code patterns, * and generate optimal integration code that's both future-proof and backward-compatible. */ interface AICLIOptions { apiKey?: string; projectPath?: string; yes?: boolean; dryRun?: boolean; framework?: string; } declare class AIAutoInstallCLI { private options; constructor(options: AICLIOptions); run(): Promise<void>; private getApiKey; private confirmInstallation; private chooseFramework; private displayResults; } export { AIAutoInstallCLI }; //# sourceMappingURL=ai-auto-install.d.ts.map