appiq-solution 1.4.9 → 1.5.1

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.
@@ -3,6 +3,7 @@ version: "1.4.0"
3
3
  description: "Flutter mobile app development with Clean Architecture, Cubit state management, and best practices"
4
4
  bmad_compatibility: "v4+"
5
5
  author: "BMad Team"
6
+ slashPrefix: "BMad"
6
7
 
7
8
  dependencies:
8
9
  core: "bmad-core"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appiq-solution",
3
- "version": "1.4.9",
3
+ "version": "1.5.1",
4
4
  "description": "APPIQ SOLUTION: Flutter Mobile Development Extension for BMAD Method",
5
5
  "main": "tools/cli.js",
6
6
  "bin": {
@@ -93,15 +93,26 @@ class IdeSetup extends BaseIdeSetup {
93
93
 
94
94
  // Setup expansion pack commands
95
95
  const expansionPacks = await this.getInstalledExpansionPacks(installDir);
96
+ console.log(chalk.blue(`📦 Found ${expansionPacks.length} expansion packs`));
97
+
96
98
  for (const packInfo of expansionPacks) {
99
+ console.log(chalk.blue(`🔍 Processing expansion pack: ${packInfo.name} at ${packInfo.path}`));
100
+
97
101
  const packSlashPrefix = await this.getExpansionPackSlashPrefix(packInfo.path);
98
102
  const packAgents = await this.getExpansionPackAgents(packInfo.path);
99
103
  const packTasks = await this.getExpansionPackTasks(packInfo.path);
100
104
 
105
+ console.log(chalk.blue(` - Slash prefix: ${packSlashPrefix}`));
106
+ console.log(chalk.blue(` - Found ${packAgents.length} agents: ${packAgents.join(', ')}`));
107
+ console.log(chalk.blue(` - Found ${packTasks.length} tasks: ${packTasks.join(', ')}`));
108
+
101
109
  if (packAgents.length > 0 || packTasks.length > 0) {
102
110
  // Use the actual directory name where the expansion pack is installed
103
111
  const rootPath = path.relative(installDir, packInfo.path);
112
+ console.log(chalk.green(`✓ Setting up commands for ${packInfo.name} with root path: ${rootPath}`));
104
113
  await this.setupClaudeCodeForPackage(installDir, packInfo.name, packSlashPrefix, packAgents, packTasks, rootPath);
114
+ } else {
115
+ console.log(chalk.yellow(`⚠ No agents or tasks found for ${packInfo.name}`));
105
116
  }
106
117
  }
107
118