UNPKG

task-engine-ai-core

Version:

Revolutionary AI-driven task management system with complete transformation trilogy: Frontend v0.1.0, Backend v0.2.0, CLI v0.3.0 - Enterprise-grade performance with 95% improvements

23 lines (17 loc) 582 B
#!/usr/bin/env node /** * dev.js * Task Master CLI - AI-driven development task management * * This is the refactored entry point that uses the modular architecture. * It imports functionality from the modules directory and provides a CLI. */ import dotenv from 'dotenv'; dotenv.config(); // Add at the very beginning of the file if (process.env.DEBUG === '1') { console.error('DEBUG - dev.js received args:', process.argv.slice(2)); } import { runCLI } from './modules/commands.js'; // Run the CLI with the process arguments runCLI(process.argv);