appiq-solution 1.6.1 → 1.6.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appiq-solution",
3
- "version": "1.6.1",
3
+ "version": "1.6.3",
4
4
  "description": "APPIQ SOLUTION: Flutter Mobile Development Extension for BMAD Method",
5
5
  "main": "tools/cli.js",
6
6
  "bin": {
@@ -33,12 +33,12 @@ try {
33
33
 
34
34
  program
35
35
  .version(version)
36
- .description('BMad Method installer - Universal AI agent framework for any domain');
36
+ .description('Appiq-Solution installer - Flutter Mobile Development Extension\nBased on and credits go to BMAD Method');
37
37
 
38
38
  program
39
39
  .command('install')
40
- .description('Install BMad Method agents and tools')
41
- .option('-f, --full', 'Install complete BMad Method')
40
+ .description('Install Appiq-Solution Flutter agents and tools')
41
+ .option('-f, --full', 'Install complete Appiq-Solution')
42
42
  .option('-x, --expansion-only', 'Install only expansion packs (no bmad-core)')
43
43
  .option('-d, --directory <path>', 'Installation directory')
44
44
  .option('-i, --ide <ide...>', 'Configure for specific IDE(s) - can specify multiple (cursor, claude-code, windsurf, trae, roo, cline, gemini, github-copilot, other)')
@@ -136,8 +136,9 @@ async function promptInstallation() {
136
136
  ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝
137
137
  `));
138
138
 
139
- console.log(chalk.bold.magenta('🚀 Universal AI Agent Framework for Any Domain'));
140
- console.log(chalk.bold.blue(`✨ Installer v${version}\n`));
139
+ console.log(chalk.bold.magenta('🚀 Appiq-Solution - Flutter Mobile Development Extension'));
140
+ console.log(chalk.gray(' Based on and credits go to BMAD Method'));
141
+ console.log(chalk.bold.blue(`✨ Appiq-Solution Installer v${version}\n`));
141
142
 
142
143
  const answers = {};
143
144
 
@@ -146,11 +147,9 @@ async function promptInstallation() {
146
147
  {
147
148
  type: 'input',
148
149
  name: 'directory',
149
- message: 'Enter the full path to your project directory where BMad should be installed:',
150
+ message: 'Enter the full path to your project directory where Appiq-Solution should be installed (leave empty to install in the current folder):',
150
151
  validate: (input) => {
151
- if (!input.trim()) {
152
- return 'Please enter a valid project path';
153
- }
152
+ // Allow empty input for current folder
154
153
  return true;
155
154
  }
156
155
  }