UNPKG

@bonginkan/maria

Version:

Intelligent CLI Assistant with Multi-Model AI Support - Zero Configuration, Privacy First

16 lines (12 loc) 289 B
#!/usr/bin/env node import { Command } from 'commander'; /** * MARIA CLI - Command Line Interface * OSS Version with core functionality */ interface CLIOptions { model?: string; debug?: boolean; } declare function createCLI(): Command; export { type CLIOptions, createCLI };