prjct-cli 0.4.6 → 0.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -15,6 +15,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
15
  - Cross-platform file operations
16
16
  - Windows Terminal integration
17
17
 
18
+ ## [0.4.7] - 2025-10-02
19
+
20
+ ### Fixed
21
+ - **`prjct start` ASCII Art** - Restored beautiful Catppuccin-inspired colors
22
+ - Original design from install.sh with (ノ◕ヮ◕)ノ*:・゚✧
23
+ - Vibrant magenta, cyan, and blue gradient for logo
24
+ - Clean, professional look with value propositions
25
+ - Better visual hierarchy and branding
26
+ - **`prjct start` Display Bug** - Fixed editor names showing as "undefined"
27
+ - Now correctly displays editor names (Claude Code, Cursor, etc.)
28
+ - Uses `commandInstaller.editors[key].name` to get proper editor names
29
+
18
30
  ## [0.4.6] - 2025-10-02
19
31
 
20
32
  ### Added
package/core/commands.js CHANGED
@@ -1965,18 +1965,24 @@ ${diagram}
1965
1965
 
1966
1966
  // ASCII Art
1967
1967
  const chalk = require('chalk')
1968
- console.log(
1969
- chalk.cyan(`
1970
- ___ ____ _ ____ _____
1971
- / _ \\| _ \\ | / ___|_ _|
1972
- | |_| | |_) |_| | | | |
1973
- | __/| _ <| | | |___ | |
1974
- | | | |_) | | |\\____| | |
1975
- |_| |____/|_| | |_|
1976
- `)
1977
- )
1978
-
1979
- console.log(chalk.cyan('\n📦 Welcome to prjct-cli!\n'))
1968
+ console.log('')
1969
+ console.log('')
1970
+ console.log(chalk.bold.magenta(' (ノ◕ヮ◕)ノ*:・゚✧'))
1971
+ console.log(chalk.bold.cyan(' ██████╗ ██████╗ ██╗ ██████╗████████╗'))
1972
+ console.log(chalk.bold.cyan(' ██╔══██╗██╔══██╗ ██║██╔════╝╚══██╔══╝'))
1973
+ console.log(chalk.bold.blue(' ██████╔╝██████╔╝ ██║██║ ██║'))
1974
+ console.log(chalk.bold.blue(' ██╔═══╝ ██╔══██╗██ ██║██║ ██║'))
1975
+ console.log(chalk.bold.magenta(' ██║ ██║ ██║╚█████╔╝╚██████╗ ██║'))
1976
+ console.log(chalk.bold.magenta(' ╚═╝ ╚═╝ ╚═╝ ╚════╝ ╚═════╝ ╚═╝'))
1977
+ console.log('')
1978
+ console.log(chalk.dim.white(' Turn ideas into AI-ready roadmaps'))
1979
+ console.log('')
1980
+ console.log(chalk.yellow(' ⚡ Ship faster with zero friction'))
1981
+ console.log(chalk.green(' 📝 From idea to technical tasks in minutes'))
1982
+ console.log(chalk.cyan(' 🤖 Perfect context for AI agents'))
1983
+ console.log('')
1984
+
1985
+ console.log(chalk.bold.magenta('📦 Setup - Install Commands to AI Editors\n'))
1980
1986
 
1981
1987
  // Detect editors
1982
1988
  const commandInstaller = require('./command-installer')
@@ -1995,7 +2001,8 @@ ${diagram}
1995
2001
 
1996
2002
  console.log(chalk.cyan('🔍 Detected AI editors:'))
1997
2003
  detectedEditors.forEach(([key, info]) => {
1998
- console.log(chalk.green(` [] ${info.name} (${info.path})`))
2004
+ const editorName = commandInstaller.editors[key]?.name || key
2005
+ console.log(chalk.green(` [✓] ${editorName} (${info.path})`))
1999
2006
  })
2000
2007
  console.log('')
2001
2008
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prjct-cli",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "description": "AI-integrated project management for indie hackers - works with Claude Code, Cursor, and Warp",
5
5
  "main": "core/index.js",
6
6
  "bin": {