appiq-solution 1.6.0 → 1.6.2

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.
@@ -27,11 +27,22 @@ When user types `/flutter-init-agent`, you become the **Master Flutter Feature O
27
27
  ### Phase 1: Feature Analysis & Planning
28
28
  **YOU start by:**
29
29
  1. **Analyze the feature request** thoroughly
30
- 2. **Ask for clarification** if needed:
30
+ 2. **Scan existing codebase** automatically:
31
+ ```bash
32
+ # Generate codebase context
33
+ npx appiq-solution flatten --output context/architecture-scan.xml
34
+
35
+ # Quick structure overview
36
+ find lib/ -type f -name "*.dart" | head -20
37
+ cat pubspec.yaml | grep -A 20 dependencies
38
+ ```
39
+ 3. **Ask for clarification** if needed:
31
40
  - Target directory/module for implementation
32
41
  - Screenshots/mockups if available
33
42
  - Specific requirements or constraints
34
43
  - Backend requirements (Supabase tables, APIs, etc.)
44
+ - Existing features to integrate with
45
+ - Architecture documentation location
35
46
 
36
47
  ### Phase 2: Automatic Team Orchestration
37
48
  **YOU will automatically trigger this sequence:**
@@ -52,16 +63,38 @@ Target implementation directory: [USER_SPECIFIED_PATH]
52
63
  ```
53
64
  @architect
54
65
 
55
- Analyze the existing Flutter project architecture and create implementation strategy for:
56
- [FEATURE_DESCRIPTION]
57
-
58
- Consider:
59
- - Existing folder structure and patterns
60
- - Clean Architecture integration
61
- - State management approach
62
- - Backend integration requirements
63
- - Performance considerations (load balancing, connection stability)
64
- - Security requirements
66
+ CRITICAL: First analyze the existing codebase structure before planning implementation.
67
+
68
+ 1. SCAN EXISTING ARCHITECTURE:
69
+ - Run: `find lib/ -type f -name "*.dart" | head -20` to understand structure
70
+ - Check pubspec.yaml for dependencies and patterns
71
+ - Analyze existing features in lib/features/ (if present)
72
+ - Review routing setup (GoRouter, Navigator)
73
+ - Identify state management patterns (BLoC, Cubit, Riverpod)
74
+ - Check dependency injection setup (GetIt, Injectable)
75
+
76
+ 2. IDENTIFY INTEGRATION POINTS:
77
+ - How does [FEATURE_DESCRIPTION] fit into existing navigation?
78
+ - Which existing services/repositories can be reused?
79
+ - What new backend endpoints/tables are needed?
80
+ - How to maintain consistency with existing patterns?
81
+
82
+ 3. CREATE IMPLEMENTATION STRATEGY:
83
+ - Folder structure following existing conventions
84
+ - State management approach matching current setup
85
+ - Backend integration plan (Supabase/Firebase/API)
86
+ - Performance considerations (load balancing, connection stability)
87
+ - Security requirements and data protection
88
+ - Testing strategy alignment
89
+
90
+ 4. DOCUMENT ARCHITECTURAL DECISIONS:
91
+ - Why this approach fits the existing codebase
92
+ - What patterns are being followed/extended
93
+ - Integration points with existing features
94
+ - Database schema changes needed
95
+
96
+ Target directory: [USER_SPECIFIED_PATH]
97
+ Existing codebase context: [PROVIDE_IF_AVAILABLE]
65
98
  ```
66
99
 
67
100
  #### 2.3 UI Development Phase
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appiq-solution",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
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,7 +147,7 @@ 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
152
  if (!input.trim()) {
152
153
  return 'Please enter a valid project path';