UNPKG

research-informed-ai-workflow

Version:

Research-Informed AI Workflow Module for comprehensive codebase analysis and improvement using Gemini AI and GitHub Copilot

30 lines (21 loc) • 1.23 kB
#!/usr/bin/env node const { Command } = require('commander'); const chalk = require('chalk'); const program = new Command(); program .name('research-informed-ai-workflow') .description('Research-Informed AI Workflow Module - Comprehensive codebase analysis and improvement') .version('1.0.0'); // This serves as the main entry point for the npm package // The actual CLI commands are in the bin/ directory console.log(chalk.bold.blue('\nšŸ¤– Research-Informed AI Workflow Module\n')); console.log(chalk.gray('A comprehensive system for AI-assisted software development and analysis.\n')); console.log(chalk.yellow('šŸ“¦ This is an NPM package! Use the CLI commands:')); console.log(' ai-workflow setup - Initialize in a new project'); console.log(' ai-workflow validate - Validate setup and dependencies'); console.log(' ai-workflow generate - Generate analysis bundles'); console.log(' ai-workflow recommend - Get smart task recommendations'); console.log(' ai-workflow troubleshoot - Diagnose and fix issues\n'); console.log(chalk.cyan('šŸ“– For more information:')); console.log(' https://github.com/Baebu/analysis-workflow-module\n'); program.parse();