@devobsessed/code-captain 0.0.5 → 0.0.6
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/bin/install.js +8 -5
- package/package.json +1 -1
package/bin/install.js
CHANGED
|
@@ -54,11 +54,14 @@ class CodeCaptainInstaller {
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
// Display welcome banner
|
|
57
|
-
showWelcome() {
|
|
57
|
+
async showWelcome() {
|
|
58
|
+
const version = await this.getPackageVersion();
|
|
58
59
|
const banner = boxen(
|
|
59
|
-
chalk.bold.green(
|
|
60
|
-
chalk.gray('
|
|
61
|
-
chalk.
|
|
60
|
+
chalk.bold.green(`Code Captain ${version}`) + '\n' +
|
|
61
|
+
chalk.gray('AI Development Agent System') + '\n' +
|
|
62
|
+
chalk.dim('brought to you by DevObsessed') + '\n' +
|
|
63
|
+
chalk.dim.blue('https://www.devobsessed.com/') + '\n\n' +
|
|
64
|
+
chalk.blue('⚓ Interactive Installation Wizard'),
|
|
62
65
|
{
|
|
63
66
|
padding: 1,
|
|
64
67
|
margin: 1,
|
|
@@ -1034,7 +1037,7 @@ class CodeCaptainInstaller {
|
|
|
1034
1037
|
async run() {
|
|
1035
1038
|
try {
|
|
1036
1039
|
// Show welcome
|
|
1037
|
-
this.showWelcome();
|
|
1040
|
+
await this.showWelcome();
|
|
1038
1041
|
|
|
1039
1042
|
// Check compatibility
|
|
1040
1043
|
const systemInfo = await this.checkCompatibility();
|