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 +12 -0
- package/core/commands.js +20 -13
- package/package.json +1 -1
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
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
)
|
|
1978
|
-
|
|
1979
|
-
console.log(
|
|
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
|
-
|
|
2004
|
+
const editorName = commandInstaller.editors[key]?.name || key
|
|
2005
|
+
console.log(chalk.green(` [✓] ${editorName} (${info.path})`))
|
|
1999
2006
|
})
|
|
2000
2007
|
console.log('')
|
|
2001
2008
|
|