implements complexity-report so it can show in the cli.

This commit is contained in:
Eyal Toledano
2025-03-22 03:16:12 -04:00
parent 2b2564a40a
commit 6a0517b4e5
4 changed files with 342 additions and 20 deletions

View File

@@ -40,7 +40,7 @@ const warmGradient = gradient(['#fb8b24', '#e36414', '#9a031e']);
// Display a fancy banner
function displayBanner() {
console.clear();
const bannerText = figlet.textSync('Claude Task Master', {
const bannerText = figlet.textSync('Task Master AI', {
font: 'Standard',
horizontalLayout: 'default',
verticalLayout: 'default'
@@ -48,6 +48,9 @@ function displayBanner() {
console.log(coolGradient(bannerText));
// Add creator credit line below the banner
console.log(chalk.dim('by ') + chalk.cyan.underline('https://x.com/eyaltoledano'));
console.log(boxen(chalk.white(`${chalk.bold('Initializing')} your new project`), {
padding: 1,
margin: { top: 0, bottom: 1 },