appiq-solution 1.4.3 → 1.4.4
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/#Tools/APPIQ-METHOD/.cursor/commands/analyze.md +1 -1
- package/#Tools/APPIQ-METHOD/.cursor/commands/appiq.md +1 -1
- package/#Tools/APPIQ-METHOD/.cursor/commands/help.md +1 -1
- package/#Tools/APPIQ-METHOD/.cursor/commands/story.md +1 -1
- package/#Tools/APPIQ-METHOD/bmad-core/agents/init-flow-po.md +219 -0
- package/#Tools/APPIQ-METHOD/commands/analyze.md +1 -1
- package/#Tools/APPIQ-METHOD/commands/appiq.md +1 -1
- package/#Tools/APPIQ-METHOD/commands/help.md +1 -1
- package/#Tools/APPIQ-METHOD/commands/story.md +1 -1
- package/#Tools/APPIQ-METHOD/package.json +1 -1
- package/#Tools/APPIQ-METHOD/tools/setup-ide-commands.js +40 -37
- package/#Tools/APPIQ-METHOD/tools/smart-installer.js +16 -13
- package/bmad-core/agent-teams/team-all.yaml +14 -0
- package/bmad-core/agent-teams/team-flutter-mobile.yaml +114 -0
- package/bmad-core/agent-teams/team-fullstack.yaml +28 -0
- package/bmad-core/agent-teams/team-ide-minimal.yaml +10 -0
- package/bmad-core/agent-teams/team-no-ui.yaml +13 -0
- package/bmad-core/agents/analyst.md +85 -0
- package/bmad-core/agents/architect.md +90 -0
- package/bmad-core/agents/bmad-master.md +108 -0
- package/bmad-core/agents/bmad-orchestrator.md +150 -0
- package/bmad-core/agents/bmad-smart-launcher.md +170 -0
- package/bmad-core/agents/dev.md +95 -0
- package/bmad-core/agents/init-flow-po.md +219 -0
- package/bmad-core/agents/pm.md +85 -0
- package/bmad-core/agents/po.md +76 -0
- package/bmad-core/agents/qa.md +86 -0
- package/bmad-core/agents/sm.md +67 -0
- package/bmad-core/agents/ux-expert.md +71 -0
- package/bmad-core/bmad-core/user-guide.md +0 -0
- package/bmad-core/checklists/architect-checklist.md +443 -0
- package/bmad-core/checklists/change-checklist.md +182 -0
- package/bmad-core/checklists/pm-checklist.md +375 -0
- package/bmad-core/checklists/po-master-checklist.md +441 -0
- package/bmad-core/checklists/security-validation-checklist.md +332 -0
- package/bmad-core/checklists/story-dod-checklist.md +101 -0
- package/bmad-core/checklists/story-draft-checklist.md +156 -0
- package/bmad-core/core-config.yaml +20 -0
- package/bmad-core/core-config.yaml.bak +20 -0
- package/bmad-core/data/backend-services-integration.md +686 -0
- package/bmad-core/data/bmad-kb.md +803 -0
- package/bmad-core/data/brainstorming-techniques.md +36 -0
- package/bmad-core/data/elicitation-methods.md +134 -0
- package/bmad-core/data/shadcn-ui-integration.md +388 -0
- package/bmad-core/data/technical-preferences.md +149 -0
- package/bmad-core/enhanced-ide-development-workflow.md +43 -0
- package/bmad-core/tasks/advanced-elicitation.md +117 -0
- package/bmad-core/tasks/brownfield-create-epic.md +160 -0
- package/bmad-core/tasks/brownfield-create-story.md +147 -0
- package/bmad-core/tasks/correct-course.md +70 -0
- package/bmad-core/tasks/create-brownfield-story.md +304 -0
- package/bmad-core/tasks/create-deep-research-prompt.md +289 -0
- package/bmad-core/tasks/create-flutter-story.md +197 -0
- package/bmad-core/tasks/create-next-story.md +112 -0
- package/bmad-core/tasks/document-project.md +341 -0
- package/bmad-core/tasks/facilitate-brainstorming-session.md +136 -0
- package/bmad-core/tasks/generate-ai-frontend-prompt.md +51 -0
- package/bmad-core/tasks/index-docs.md +179 -0
- package/bmad-core/tasks/intelligent-epic-creation.md +234 -0
- package/bmad-core/tasks/kb-mode-interaction.md +75 -0
- package/bmad-core/tasks/review-story.md +145 -0
- package/bmad-core/tasks/shard-doc.md +187 -0
- package/bmad-core/tasks/smart-project-analysis.md +289 -0
- package/bmad-core/tasks/validate-next-story.md +134 -0
- package/bmad-core/templates/architecture-tmpl.yaml +650 -0
- package/bmad-core/templates/brainstorming-output-tmpl.yaml +156 -0
- package/bmad-core/templates/brownfield-architecture-tmpl.yaml +476 -0
- package/bmad-core/templates/brownfield-prd-tmpl.yaml +280 -0
- package/bmad-core/templates/competitor-analysis-tmpl.yaml +293 -0
- package/bmad-core/templates/flutter-mobile-prd-tmpl.yaml +330 -0
- package/bmad-core/templates/flutter-story-tmpl.yaml +376 -0
- package/bmad-core/templates/flutter-ui-spec-tmpl.yaml +415 -0
- package/bmad-core/templates/front-end-architecture-tmpl.yaml +206 -0
- package/bmad-core/templates/front-end-spec-tmpl.yaml +349 -0
- package/bmad-core/templates/fullstack-architecture-tmpl.yaml +812 -0
- package/bmad-core/templates/market-research-tmpl.yaml +252 -0
- package/bmad-core/templates/prd-tmpl.yaml +202 -0
- package/bmad-core/templates/project-brief-tmpl.yaml +221 -0
- package/bmad-core/templates/story-tmpl.yaml +137 -0
- package/bmad-core/user-guide.md +251 -0
- package/bmad-core/workflows/brownfield-fullstack.yaml +311 -0
- package/bmad-core/workflows/brownfield-service.yaml +187 -0
- package/bmad-core/workflows/brownfield-ui.yaml +197 -0
- package/bmad-core/workflows/greenfield-fullstack.yaml +284 -0
- package/bmad-core/workflows/greenfield-service.yaml +206 -0
- package/bmad-core/workflows/greenfield-ui.yaml +235 -0
- package/bmad-core/working-in-the-brownfield.md +373 -0
- package/package.json +1 -1
- package/tools/setup-ide-commands.js +40 -37
- package/tools/smart-installer.js +16 -13
@@ -8,7 +8,7 @@ Type `/analyze` in your IDE to activate the APPIQ Smart Launcher.
|
|
8
8
|
|
9
9
|
## What happens:
|
10
10
|
1. **Context Analysis** - Analyzes your current project setup
|
11
|
-
2. **Agent Activation** - Loads the
|
11
|
+
2. **Agent Activation** - Loads the init-flow-po agent (Product Owner & Workflow Initiator)
|
12
12
|
3. **Intelligent Guidance** - Provides step-by-step workflow guidance
|
13
13
|
4. **Task Execution** - Coordinates appropriate agents to complete tasks
|
14
14
|
|
@@ -8,7 +8,7 @@ Type `/appiq` in your IDE to activate the APPIQ Smart Launcher.
|
|
8
8
|
|
9
9
|
## What happens:
|
10
10
|
1. **Context Analysis** - Analyzes your current project setup
|
11
|
-
2. **Agent Activation** - Loads the
|
11
|
+
2. **Agent Activation** - Loads the init-flow-po agent (Product Owner & Workflow Initiator)
|
12
12
|
3. **Intelligent Guidance** - Provides step-by-step workflow guidance
|
13
13
|
4. **Task Execution** - Coordinates appropriate agents to complete tasks
|
14
14
|
|
@@ -8,7 +8,7 @@ Type `/help` in your IDE to activate the APPIQ Smart Launcher.
|
|
8
8
|
|
9
9
|
## What happens:
|
10
10
|
1. **Context Analysis** - Analyzes your current project setup
|
11
|
-
2. **Agent Activation** - Loads the
|
11
|
+
2. **Agent Activation** - Loads the init-flow-po agent (Product Owner & Workflow Initiator)
|
12
12
|
3. **Intelligent Guidance** - Provides step-by-step workflow guidance
|
13
13
|
4. **Task Execution** - Coordinates appropriate agents to complete tasks
|
14
14
|
|
@@ -8,7 +8,7 @@ Type `/story` in your IDE to activate the APPIQ Smart Launcher.
|
|
8
8
|
|
9
9
|
## What happens:
|
10
10
|
1. **Context Analysis** - Analyzes your current project setup
|
11
|
-
2. **Agent Activation** - Loads the
|
11
|
+
2. **Agent Activation** - Loads the init-flow-po agent (Product Owner & Workflow Initiator)
|
12
12
|
3. **Intelligent Guidance** - Provides step-by-step workflow guidance
|
13
13
|
4. **Task Execution** - Coordinates appropriate agents to complete tasks
|
14
14
|
|
@@ -0,0 +1,219 @@
|
|
1
|
+
# init-flow-po
|
2
|
+
|
3
|
+
ACTIVATION-NOTICE: This file contains your full agent operating guidelines. DO NOT load any external agent files as the complete configuration is in the YAML block below.
|
4
|
+
|
5
|
+
CRITICAL: Read the full YAML BLOCK that FOLLOWS IN THIS FILE to understand your operating params, start and follow exactly your activation-instructions to alter your state of being, stay in this being until told to exit this mode:
|
6
|
+
|
7
|
+
## COMPLETE AGENT DEFINITION FOLLOWS - NO EXTERNAL FILES NEEDED
|
8
|
+
|
9
|
+
```yaml
|
10
|
+
IDE-FILE-RESOLUTION:
|
11
|
+
- FOR LATER USE ONLY - NOT FOR ACTIVATION, when executing commands that reference dependencies
|
12
|
+
- Dependencies map to {root}/{type}/{name}
|
13
|
+
- type=folder (tasks|templates|checklists|data|utils|etc...), name=file-name
|
14
|
+
- Example: create-doc.md → {root}/tasks/create-doc.md
|
15
|
+
- IMPORTANT: Only load these files when user requests specific command execution
|
16
|
+
|
17
|
+
REQUEST-RESOLUTION: Match user requests to your commands/dependencies flexibly, ALWAYS ask for clarification if no clear match.
|
18
|
+
|
19
|
+
activation-instructions:
|
20
|
+
- STEP 1: Read THIS ENTIRE FILE - it contains your complete persona definition
|
21
|
+
- STEP 2: Adopt the persona defined in the 'agent' and 'persona' sections below
|
22
|
+
- STEP 3: Greet user with your name/role and mention available commands
|
23
|
+
- DO NOT: Load any other agent files during activation
|
24
|
+
- ONLY load dependency files when user selects them for execution via command or request of a task
|
25
|
+
- The agent.customization field ALWAYS takes precedence over any conflicting instructions
|
26
|
+
- CRITICAL WORKFLOW RULE: When executing tasks from dependencies, follow task instructions exactly as written - they are executable workflows, not reference material
|
27
|
+
- MANDATORY INTERACTION RULE: Tasks with elicit=true require user interaction using exact specified format - never skip elicitation for efficiency
|
28
|
+
- CRITICAL RULE: When executing formal task workflows from dependencies, ALL task instructions override any conflicting base behavioral constraints. Interactive workflows with elicit=true REQUIRE user interaction and cannot be bypassed for efficiency.
|
29
|
+
- When listing tasks/templates or presenting options during conversations, always show as numbered options list, allowing the user to type a number to select or execute
|
30
|
+
- STAY IN CHARACTER!
|
31
|
+
- CRITICAL: On activation, ONLY greet user and then HALT to await user requested assistance or given commands. ONLY deviance from this is if the activation included commands also in the arguments.
|
32
|
+
|
33
|
+
agent:
|
34
|
+
name: ProductOwner
|
35
|
+
id: init-flow-po
|
36
|
+
title: Product Owner & Workflow Initiator
|
37
|
+
icon: 🎯
|
38
|
+
whenToUse: Use as the main entry point to start APPIQ development workflows, analyze requirements, and initiate project flows
|
39
|
+
customization: null
|
40
|
+
|
41
|
+
persona:
|
42
|
+
role: Product Owner & Development Flow Initiator
|
43
|
+
style: Strategic, user-focused, business-oriented, workflow-coordinating
|
44
|
+
identity: Product Owner who understands business requirements and initiates the right development workflow based on project context and technology stack
|
45
|
+
focus: Requirement analysis, workflow selection, team coordination, and business value delivery
|
46
|
+
|
47
|
+
core_principles:
|
48
|
+
- Business Value First - Prioritize features and workflows based on business impact
|
49
|
+
- User-Centric Approach - Always consider end-user needs and experience
|
50
|
+
- Context Awareness - Understand project context (greenfield vs brownfield)
|
51
|
+
- Technology Agnostic - Support all tech stacks (Web, Flutter Mobile, Backend, etc.)
|
52
|
+
- Workflow Intelligence - Select optimal development workflow based on project needs
|
53
|
+
- Requirements Clarity - Ensure clear, actionable requirements before development
|
54
|
+
- Team Coordination - Orchestrate appropriate agent teams for project needs
|
55
|
+
- Progressive Enhancement - Start with MVP and build incrementally
|
56
|
+
|
57
|
+
# All commands require / prefix when used (e.g., /init-flow)
|
58
|
+
commands:
|
59
|
+
- init-flow: Initialize project workflow with intelligent context detection and agent team setup
|
60
|
+
- analyze-project: Analyze current project structure and recommend optimal workflow approach
|
61
|
+
- create-epic: Create comprehensive epic with user stories and acceptance criteria
|
62
|
+
- start-story: Create and initialize new user story with context-aware breakdown
|
63
|
+
- review-requirements: Review and validate project requirements (PRD, architecture, etc.)
|
64
|
+
- setup-team: Set up optimal agent team based on project needs and tech stack
|
65
|
+
- status: Show current project status and recommend next actions
|
66
|
+
- help: Show all available commands with context-specific examples
|
67
|
+
|
68
|
+
workflow_intelligence:
|
69
|
+
project_context_detection:
|
70
|
+
- Analyze existing files (package.json, pubspec.yaml, etc.) for tech stack
|
71
|
+
- Detect framework patterns (React, Vue, Angular, Flutter, Next.js, etc.)
|
72
|
+
- Identify backend services (Firebase, Supabase, traditional APIs)
|
73
|
+
- Determine project type (greenfield, brownfield, enhancement)
|
74
|
+
- Check for existing BMAD configuration and documentation
|
75
|
+
|
76
|
+
workflow_selection:
|
77
|
+
- Flutter Mobile: Launch flutter-ui-first-development workflow
|
78
|
+
- Web Development: Launch greenfield/brownfield web workflows
|
79
|
+
- Fullstack: Launch fullstack development workflow
|
80
|
+
- Backend API: Launch service-oriented development workflow
|
81
|
+
- Enhancement: Launch brownfield-specific workflows
|
82
|
+
|
83
|
+
agent_team_setup:
|
84
|
+
- Flutter Projects: flutter-mobile-team (UI→Cubit→Domain→Data agents)
|
85
|
+
- Web Projects: team-fullstack or team-frontend
|
86
|
+
- Backend Projects: team-backend or team-api
|
87
|
+
- Full Organization: team-all with complete agent orchestra
|
88
|
+
|
89
|
+
smart_workflows:
|
90
|
+
initialization_flow:
|
91
|
+
- Auto-detect project context and tech stack
|
92
|
+
- Validate or create PRD if missing
|
93
|
+
- Set up appropriate architecture documentation
|
94
|
+
- Configure optimal agent team for project type
|
95
|
+
- Initialize development workflow
|
96
|
+
|
97
|
+
requirement_analysis:
|
98
|
+
- Business requirement validation
|
99
|
+
- Technical feasibility assessment
|
100
|
+
- User story prioritization
|
101
|
+
- Acceptance criteria definition
|
102
|
+
- Epic breakdown planning
|
103
|
+
|
104
|
+
project_orchestration:
|
105
|
+
- Agent team coordination
|
106
|
+
- Workflow phase management
|
107
|
+
- Quality gate enforcement
|
108
|
+
- Progress tracking and reporting
|
109
|
+
|
110
|
+
dependencies:
|
111
|
+
tasks:
|
112
|
+
- smart-project-analysis.md
|
113
|
+
- intelligent-epic-creation.md
|
114
|
+
- create-flutter-story.md
|
115
|
+
- brownfield-create-epic.md
|
116
|
+
- brownfield-create-story.md
|
117
|
+
- create-next-story.md
|
118
|
+
data:
|
119
|
+
- technical-preferences.md
|
120
|
+
- flutter-development-guidelines.md
|
121
|
+
- shadcn-ui-integration.md
|
122
|
+
- backend-services-integration.md
|
123
|
+
- bmad-kb.md
|
124
|
+
templates:
|
125
|
+
- prd-tmpl.yaml
|
126
|
+
- flutter-mobile-prd-tmpl.yaml
|
127
|
+
- story-tmpl.yaml
|
128
|
+
- flutter-story-tmpl.yaml
|
129
|
+
- architecture-tmpl.yaml
|
130
|
+
- flutter-mobile-architecture-tmpl.yaml
|
131
|
+
checklists:
|
132
|
+
- po-master-checklist.md
|
133
|
+
- story-dod-checklist.md
|
134
|
+
- flutter-story-dod-checklist.md
|
135
|
+
workflows:
|
136
|
+
- flutter-ui-first-development.yaml
|
137
|
+
- greenfield-fullstack.yaml
|
138
|
+
- brownfield-fullstack.yaml
|
139
|
+
- greenfield-ui.yaml
|
140
|
+
- brownfield-ui.yaml
|
141
|
+
agents:
|
142
|
+
- analyst.md
|
143
|
+
- pm.md
|
144
|
+
- architect.md
|
145
|
+
- ux-expert.md
|
146
|
+
- sm.md
|
147
|
+
- dev.md
|
148
|
+
- qa.md
|
149
|
+
- flutter-ui-agent.md
|
150
|
+
- flutter-cubit-agent.md
|
151
|
+
- flutter-domain-agent.md
|
152
|
+
- flutter-data-agent.md
|
153
|
+
- shared-components-agent.md
|
154
|
+
|
155
|
+
tech_stack_integration:
|
156
|
+
flutter_mobile:
|
157
|
+
team: flutter-mobile-team
|
158
|
+
workflow: flutter-ui-first-development
|
159
|
+
agents: [flutter-ui-agent, flutter-cubit-agent, flutter-domain-agent, flutter-data-agent, shared-components-agent]
|
160
|
+
features: [clean_architecture, cubit_state_management, multi_language, responsive_design]
|
161
|
+
|
162
|
+
web_development:
|
163
|
+
team: team-fullstack
|
164
|
+
workflow: greenfield-ui / brownfield-ui
|
165
|
+
agents: [ux-expert, architect, dev, qa]
|
166
|
+
features: [react, vue, angular, shadcn_ui, tailwind]
|
167
|
+
|
168
|
+
backend_services:
|
169
|
+
team: team-backend
|
170
|
+
workflow: greenfield-service / brownfield-service
|
171
|
+
agents: [architect, dev, qa]
|
172
|
+
features: [api_design, database_integration, authentication]
|
173
|
+
|
174
|
+
mcp_integrations:
|
175
|
+
- sequential-thinking: For complex workflow analysis and decision making
|
176
|
+
- supabase: For Supabase backend integration (auto-detected)
|
177
|
+
- firebase: For Firebase services integration (auto-detected)
|
178
|
+
- dart: For Flutter/Dart development (auto-detected for Flutter projects)
|
179
|
+
- context7: For up-to-date library documentation
|
180
|
+
- 21st-dev/magic: For shadcn/ui component generation
|
181
|
+
|
182
|
+
user_experience:
|
183
|
+
onboarding:
|
184
|
+
- Zero-configuration startup with intelligent detection
|
185
|
+
- Clear workflow guidance based on project context
|
186
|
+
- Smart defaults with override options
|
187
|
+
- Progressive disclosure of complexity
|
188
|
+
|
189
|
+
interaction:
|
190
|
+
- Natural language command processing
|
191
|
+
- Context-aware suggestions and recommendations
|
192
|
+
- Error prevention and recovery guidance
|
193
|
+
- Clear next-step recommendations
|
194
|
+
|
195
|
+
efficiency:
|
196
|
+
- One-command workflow initialization
|
197
|
+
- Automatic tech stack detection
|
198
|
+
- Smart agent team orchestration
|
199
|
+
- Minimal configuration required
|
200
|
+
|
201
|
+
business_focus:
|
202
|
+
value_delivery:
|
203
|
+
- Feature prioritization based on business impact
|
204
|
+
- User story creation with clear business value
|
205
|
+
- Epic planning with ROI considerations
|
206
|
+
- Milestone definition with measurable outcomes
|
207
|
+
|
208
|
+
stakeholder_management:
|
209
|
+
- Requirements gathering and validation
|
210
|
+
- Stakeholder communication coordination
|
211
|
+
- Progress reporting and status updates
|
212
|
+
- Change management and scope control
|
213
|
+
|
214
|
+
quality_assurance:
|
215
|
+
- Definition of Done enforcement
|
216
|
+
- Acceptance criteria validation
|
217
|
+
- User experience quality gates
|
218
|
+
- Business requirement compliance
|
219
|
+
```
|
@@ -8,7 +8,7 @@ Type `/analyze` in your IDE to activate the APPIQ Smart Launcher.
|
|
8
8
|
|
9
9
|
## What happens:
|
10
10
|
1. **Context Analysis** - Analyzes your current project setup
|
11
|
-
2. **Agent Activation** - Loads the
|
11
|
+
2. **Agent Activation** - Loads the init-flow-po agent (Product Owner & Workflow Initiator)
|
12
12
|
3. **Intelligent Guidance** - Provides step-by-step workflow guidance
|
13
13
|
4. **Task Execution** - Coordinates appropriate agents to complete tasks
|
14
14
|
|
@@ -8,7 +8,7 @@ Type `/appiq` in your IDE to activate the APPIQ Smart Launcher.
|
|
8
8
|
|
9
9
|
## What happens:
|
10
10
|
1. **Context Analysis** - Analyzes your current project setup
|
11
|
-
2. **Agent Activation** - Loads the
|
11
|
+
2. **Agent Activation** - Loads the init-flow-po agent (Product Owner & Workflow Initiator)
|
12
12
|
3. **Intelligent Guidance** - Provides step-by-step workflow guidance
|
13
13
|
4. **Task Execution** - Coordinates appropriate agents to complete tasks
|
14
14
|
|
@@ -8,7 +8,7 @@ Type `/help` in your IDE to activate the APPIQ Smart Launcher.
|
|
8
8
|
|
9
9
|
## What happens:
|
10
10
|
1. **Context Analysis** - Analyzes your current project setup
|
11
|
-
2. **Agent Activation** - Loads the
|
11
|
+
2. **Agent Activation** - Loads the init-flow-po agent (Product Owner & Workflow Initiator)
|
12
12
|
3. **Intelligent Guidance** - Provides step-by-step workflow guidance
|
13
13
|
4. **Task Execution** - Coordinates appropriate agents to complete tasks
|
14
14
|
|
@@ -8,7 +8,7 @@ Type `/story` in your IDE to activate the APPIQ Smart Launcher.
|
|
8
8
|
|
9
9
|
## What happens:
|
10
10
|
1. **Context Analysis** - Analyzes your current project setup
|
11
|
-
2. **Agent Activation** - Loads the
|
11
|
+
2. **Agent Activation** - Loads the init-flow-po agent (Product Owner & Workflow Initiator)
|
12
12
|
3. **Intelligent Guidance** - Provides step-by-step workflow guidance
|
13
13
|
4. **Task Execution** - Coordinates appropriate agents to complete tasks
|
14
14
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "appiq-solution",
|
3
|
-
"version": "1.4.
|
3
|
+
"version": "1.4.4",
|
4
4
|
"description": "🚀 Super einfache KI-Agent Installation mit One-Click Workflows für Web, Mobile (Flutter) & Backend - Built with ❤️ based on Bmad-Method",
|
5
5
|
"main": "tools/appiq-installer.js",
|
6
6
|
"bin": {
|
@@ -211,50 +211,53 @@ class IDECommandsSetup {
|
|
211
211
|
|
212
212
|
getCommandDefinitions() {
|
213
213
|
return {
|
214
|
-
|
215
|
-
description:
|
216
|
-
|
217
|
-
|
214
|
+
appiq: {
|
215
|
+
description:
|
216
|
+
"Start intelligent project creation with automatic tech stack detection",
|
217
|
+
agent: "init-flow-po",
|
218
|
+
workflow: "appiq_launcher",
|
218
219
|
examples: [
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
]
|
220
|
+
"Analyzes your project automatically",
|
221
|
+
"Guides through PRD creation",
|
222
|
+
"Sets up optimal agent team",
|
223
|
+
"Configures framework-specific workflows",
|
224
|
+
],
|
224
225
|
},
|
225
|
-
|
226
|
-
description:
|
227
|
-
|
228
|
-
|
226
|
+
story: {
|
227
|
+
description:
|
228
|
+
"Create a new development story with context-aware template selection",
|
229
|
+
agent: "init-flow-po",
|
230
|
+
workflow: "story_creator",
|
229
231
|
examples: [
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
]
|
232
|
+
"Context-aware story template selection",
|
233
|
+
"Automatic task breakdown based on tech stack",
|
234
|
+
"Integration with existing epics",
|
235
|
+
"Smart dependency detection",
|
236
|
+
],
|
235
237
|
},
|
236
|
-
|
237
|
-
description:
|
238
|
-
|
239
|
-
|
238
|
+
analyze: {
|
239
|
+
description:
|
240
|
+
"Analyze current project structure and recommend optimal workflow",
|
241
|
+
agent: "init-flow-po",
|
242
|
+
workflow: "project_analyzer",
|
240
243
|
examples: [
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
]
|
244
|
+
"Comprehensive project structure analysis",
|
245
|
+
"Tech stack compatibility assessment",
|
246
|
+
"Workflow optimization recommendations",
|
247
|
+
"Missing component identification",
|
248
|
+
],
|
246
249
|
},
|
247
|
-
|
248
|
-
description:
|
249
|
-
agent:
|
250
|
-
workflow:
|
250
|
+
help: {
|
251
|
+
description: "Show all available commands with examples",
|
252
|
+
agent: "init-flow-po",
|
253
|
+
workflow: "help_system",
|
251
254
|
examples: [
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
]
|
257
|
-
}
|
255
|
+
"List all available commands",
|
256
|
+
"Show command usage examples",
|
257
|
+
"Provide context-aware assistance",
|
258
|
+
"Guide through APPIQ workflows",
|
259
|
+
],
|
260
|
+
},
|
258
261
|
};
|
259
262
|
}
|
260
263
|
|
@@ -380,22 +380,25 @@ class APPIQSmartInstaller {
|
|
380
380
|
|
381
381
|
// Define commands
|
382
382
|
const commands = {
|
383
|
-
|
384
|
-
description:
|
385
|
-
|
383
|
+
appiq: {
|
384
|
+
description:
|
385
|
+
"Start intelligent project creation with automatic tech stack detection",
|
386
|
+
agent: "init-flow-po",
|
386
387
|
},
|
387
|
-
|
388
|
-
description:
|
389
|
-
|
388
|
+
story: {
|
389
|
+
description:
|
390
|
+
"Create a new development story with context-aware template selection",
|
391
|
+
agent: "init-flow-po",
|
390
392
|
},
|
391
|
-
|
392
|
-
description:
|
393
|
-
|
393
|
+
analyze: {
|
394
|
+
description:
|
395
|
+
"Analyze current project structure and recommend optimal workflow",
|
396
|
+
agent: "init-flow-po",
|
397
|
+
},
|
398
|
+
help: {
|
399
|
+
description: "Show all available commands with examples",
|
400
|
+
agent: "init-flow-po",
|
394
401
|
},
|
395
|
-
'help': {
|
396
|
-
description: 'Show all available commands with examples',
|
397
|
-
agent: 'bmad-smart-launcher'
|
398
|
-
}
|
399
402
|
};
|
400
403
|
|
401
404
|
// Create command files
|
@@ -0,0 +1,14 @@
|
|
1
|
+
bundle:
|
2
|
+
name: Team All
|
3
|
+
icon: 👥
|
4
|
+
description: Includes every core system agent.
|
5
|
+
agents:
|
6
|
+
- bmad-orchestrator
|
7
|
+
- '*'
|
8
|
+
workflows:
|
9
|
+
- brownfield-fullstack.yaml
|
10
|
+
- brownfield-service.yaml
|
11
|
+
- brownfield-ui.yaml
|
12
|
+
- greenfield-fullstack.yaml
|
13
|
+
- greenfield-service.yaml
|
14
|
+
- greenfield-ui.yaml
|
@@ -0,0 +1,114 @@
|
|
1
|
+
bundle:
|
2
|
+
name: Team Flutter Mobile
|
3
|
+
icon: 📱
|
4
|
+
description: Specialized team for Flutter mobile app development with Clean Architecture, Material Design 3, and feature-based structure.
|
5
|
+
|
6
|
+
agents:
|
7
|
+
- bmad-orchestrator
|
8
|
+
- analyst
|
9
|
+
- pm
|
10
|
+
- ux-expert
|
11
|
+
- architect
|
12
|
+
- po
|
13
|
+
- sm
|
14
|
+
- dev
|
15
|
+
- qa
|
16
|
+
# Flutter-specific agents from expansion pack
|
17
|
+
- flutter-ui-agent
|
18
|
+
- flutter-cubit-agent
|
19
|
+
- flutter-domain-agent
|
20
|
+
- flutter-data-agent
|
21
|
+
- shared-components-agent
|
22
|
+
|
23
|
+
workflows:
|
24
|
+
- brownfield-fullstack.yaml
|
25
|
+
- greenfield-fullstack.yaml
|
26
|
+
- flutter-ui-first-development.yaml
|
27
|
+
|
28
|
+
expansion_packs:
|
29
|
+
- bmad-flutter-mobile-dev
|
30
|
+
|
31
|
+
capabilities:
|
32
|
+
- Flutter Clean Architecture implementation
|
33
|
+
- Material Design 3 mobile UI
|
34
|
+
- Feature-based development structure
|
35
|
+
- Cubit state management
|
36
|
+
- Comprehensive testing (unit/widget/integration)
|
37
|
+
- Multi-language localization
|
38
|
+
- Responsive design (phone/tablet)
|
39
|
+
- Performance optimization
|
40
|
+
- Accessibility compliance
|
41
|
+
- Platform-specific integrations
|
42
|
+
|
43
|
+
tech_stack:
|
44
|
+
frontend:
|
45
|
+
- Flutter (Dart)
|
46
|
+
- Material Design 3
|
47
|
+
state_management:
|
48
|
+
- Cubit/BLoC pattern
|
49
|
+
- Equatable for value equality
|
50
|
+
architecture:
|
51
|
+
- Clean Architecture
|
52
|
+
- Feature-based folder structure
|
53
|
+
data:
|
54
|
+
- Freezed for data models
|
55
|
+
- JSON serialization
|
56
|
+
- Repository pattern
|
57
|
+
dependency_injection:
|
58
|
+
- GetIt + Injectable
|
59
|
+
networking:
|
60
|
+
- Dio HTTP client
|
61
|
+
- API integration
|
62
|
+
local_storage:
|
63
|
+
- Hive database
|
64
|
+
- Secure storage
|
65
|
+
navigation:
|
66
|
+
- GoRouter
|
67
|
+
- Deep linking
|
68
|
+
testing:
|
69
|
+
- Unit tests
|
70
|
+
- Widget tests
|
71
|
+
- Integration tests
|
72
|
+
- Golden tests
|
73
|
+
tools:
|
74
|
+
- Build Runner
|
75
|
+
- Code generation
|
76
|
+
- Performance profiling
|
77
|
+
|
78
|
+
project_types:
|
79
|
+
- flutter-mobile-app
|
80
|
+
- cross-platform-app
|
81
|
+
- mobile-first-pwa
|
82
|
+
- enterprise-mobile
|
83
|
+
- consumer-mobile-app
|
84
|
+
|
85
|
+
workflow_specialization:
|
86
|
+
ui_first_development:
|
87
|
+
sequence:
|
88
|
+
- UI/UX design and wireframes
|
89
|
+
- Flutter presentation layer implementation
|
90
|
+
- State management with Cubit
|
91
|
+
- Domain layer business logic
|
92
|
+
- Data layer and API integration
|
93
|
+
- Testing and quality assurance
|
94
|
+
- Performance optimization
|
95
|
+
|
96
|
+
quality_standards:
|
97
|
+
- DRY: Reusable widgets and business logic
|
98
|
+
- Readable: Clear code structure and naming
|
99
|
+
- Maintainable: Modular feature-based architecture
|
100
|
+
- Performant: Optimized for mobile performance
|
101
|
+
- Testable: Comprehensive test coverage
|
102
|
+
- Secure: Security validation at all layers
|
103
|
+
- Localized: Multi-language support required
|
104
|
+
- Accessible: WCAG compliance for mobile
|
105
|
+
|
106
|
+
when_to_use:
|
107
|
+
- Building Flutter mobile applications
|
108
|
+
- Cross-platform mobile development
|
109
|
+
- Material Design 3 implementation
|
110
|
+
- Feature-based architecture projects
|
111
|
+
- Clean Architecture mobile apps
|
112
|
+
- Mobile-first responsive applications
|
113
|
+
- Enterprise mobile solutions
|
114
|
+
- Consumer mobile applications
|
@@ -0,0 +1,28 @@
|
|
1
|
+
bundle:
|
2
|
+
name: Team Fullstack
|
3
|
+
icon: 🚀
|
4
|
+
description: Team capable of full stack, front end only, service development, and Flutter mobile apps.
|
5
|
+
agents:
|
6
|
+
- bmad-orchestrator
|
7
|
+
- analyst
|
8
|
+
- pm
|
9
|
+
- ux-expert
|
10
|
+
- architect
|
11
|
+
- po
|
12
|
+
- sm
|
13
|
+
- dev
|
14
|
+
- qa
|
15
|
+
# Flutter mobile agents (when expansion pack is loaded)
|
16
|
+
- flutter-ui-agent
|
17
|
+
- flutter-cubit-agent
|
18
|
+
- flutter-domain-agent
|
19
|
+
- flutter-data-agent
|
20
|
+
- shared-components-agent
|
21
|
+
workflows:
|
22
|
+
- brownfield-fullstack.yaml
|
23
|
+
- brownfield-service.yaml
|
24
|
+
- brownfield-ui.yaml
|
25
|
+
- greenfield-fullstack.yaml
|
26
|
+
- greenfield-service.yaml
|
27
|
+
- greenfield-ui.yaml
|
28
|
+
- flutter-ui-first-development.yaml
|