appiq-solution 1.4.3 → 1.4.5

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.
Files changed (95) hide show
  1. package/#Tools/APPIQ-METHOD/.cursor/commands/analyze.md +1 -1
  2. package/#Tools/APPIQ-METHOD/.cursor/commands/appiq.md +1 -1
  3. package/#Tools/APPIQ-METHOD/.cursor/commands/help.md +1 -1
  4. package/#Tools/APPIQ-METHOD/.cursor/commands/story.md +1 -1
  5. package/#Tools/APPIQ-METHOD/activate-appiq.js +1 -1
  6. package/#Tools/APPIQ-METHOD/bmad-core/agents/init-flow-po.md +219 -0
  7. package/#Tools/APPIQ-METHOD/commands/analyze.md +1 -1
  8. package/#Tools/APPIQ-METHOD/commands/appiq.md +1 -1
  9. package/#Tools/APPIQ-METHOD/commands/help.md +1 -1
  10. package/#Tools/APPIQ-METHOD/commands/story.md +1 -1
  11. package/#Tools/APPIQ-METHOD/package.json +1 -1
  12. package/#Tools/APPIQ-METHOD/tools/appiq-installer.js +31 -34
  13. package/#Tools/APPIQ-METHOD/tools/epic-solution-installer.js +47 -49
  14. package/#Tools/APPIQ-METHOD/tools/setup-ide-commands.js +40 -37
  15. package/#Tools/APPIQ-METHOD/tools/smart-installer.js +16 -13
  16. package/bmad-core/agent-teams/team-all.yaml +14 -0
  17. package/bmad-core/agent-teams/team-flutter-mobile.yaml +114 -0
  18. package/bmad-core/agent-teams/team-fullstack.yaml +28 -0
  19. package/bmad-core/agent-teams/team-ide-minimal.yaml +10 -0
  20. package/bmad-core/agent-teams/team-no-ui.yaml +13 -0
  21. package/bmad-core/agents/analyst.md +85 -0
  22. package/bmad-core/agents/architect.md +90 -0
  23. package/bmad-core/agents/bmad-master.md +108 -0
  24. package/bmad-core/agents/bmad-orchestrator.md +150 -0
  25. package/bmad-core/agents/bmad-smart-launcher.md +170 -0
  26. package/bmad-core/agents/dev.md +95 -0
  27. package/bmad-core/agents/init-flow-po.md +219 -0
  28. package/bmad-core/agents/pm.md +85 -0
  29. package/bmad-core/agents/po.md +76 -0
  30. package/bmad-core/agents/qa.md +86 -0
  31. package/bmad-core/agents/sm.md +67 -0
  32. package/bmad-core/agents/ux-expert.md +71 -0
  33. package/bmad-core/bmad-core/user-guide.md +0 -0
  34. package/bmad-core/checklists/architect-checklist.md +443 -0
  35. package/bmad-core/checklists/change-checklist.md +182 -0
  36. package/bmad-core/checklists/pm-checklist.md +375 -0
  37. package/bmad-core/checklists/po-master-checklist.md +441 -0
  38. package/bmad-core/checklists/security-validation-checklist.md +332 -0
  39. package/bmad-core/checklists/story-dod-checklist.md +101 -0
  40. package/bmad-core/checklists/story-draft-checklist.md +156 -0
  41. package/bmad-core/core-config.yaml +20 -0
  42. package/bmad-core/core-config.yaml.bak +20 -0
  43. package/bmad-core/data/backend-services-integration.md +686 -0
  44. package/bmad-core/data/bmad-kb.md +803 -0
  45. package/bmad-core/data/brainstorming-techniques.md +36 -0
  46. package/bmad-core/data/elicitation-methods.md +134 -0
  47. package/bmad-core/data/shadcn-ui-integration.md +388 -0
  48. package/bmad-core/data/technical-preferences.md +149 -0
  49. package/bmad-core/enhanced-ide-development-workflow.md +43 -0
  50. package/bmad-core/tasks/advanced-elicitation.md +117 -0
  51. package/bmad-core/tasks/brownfield-create-epic.md +160 -0
  52. package/bmad-core/tasks/brownfield-create-story.md +147 -0
  53. package/bmad-core/tasks/correct-course.md +70 -0
  54. package/bmad-core/tasks/create-brownfield-story.md +304 -0
  55. package/bmad-core/tasks/create-deep-research-prompt.md +289 -0
  56. package/bmad-core/tasks/create-flutter-story.md +197 -0
  57. package/bmad-core/tasks/create-next-story.md +112 -0
  58. package/bmad-core/tasks/document-project.md +341 -0
  59. package/bmad-core/tasks/facilitate-brainstorming-session.md +136 -0
  60. package/bmad-core/tasks/generate-ai-frontend-prompt.md +51 -0
  61. package/bmad-core/tasks/index-docs.md +179 -0
  62. package/bmad-core/tasks/intelligent-epic-creation.md +234 -0
  63. package/bmad-core/tasks/kb-mode-interaction.md +75 -0
  64. package/bmad-core/tasks/review-story.md +145 -0
  65. package/bmad-core/tasks/shard-doc.md +187 -0
  66. package/bmad-core/tasks/smart-project-analysis.md +289 -0
  67. package/bmad-core/tasks/validate-next-story.md +134 -0
  68. package/bmad-core/templates/architecture-tmpl.yaml +650 -0
  69. package/bmad-core/templates/brainstorming-output-tmpl.yaml +156 -0
  70. package/bmad-core/templates/brownfield-architecture-tmpl.yaml +476 -0
  71. package/bmad-core/templates/brownfield-prd-tmpl.yaml +280 -0
  72. package/bmad-core/templates/competitor-analysis-tmpl.yaml +293 -0
  73. package/bmad-core/templates/flutter-mobile-prd-tmpl.yaml +330 -0
  74. package/bmad-core/templates/flutter-story-tmpl.yaml +376 -0
  75. package/bmad-core/templates/flutter-ui-spec-tmpl.yaml +415 -0
  76. package/bmad-core/templates/front-end-architecture-tmpl.yaml +206 -0
  77. package/bmad-core/templates/front-end-spec-tmpl.yaml +349 -0
  78. package/bmad-core/templates/fullstack-architecture-tmpl.yaml +812 -0
  79. package/bmad-core/templates/market-research-tmpl.yaml +252 -0
  80. package/bmad-core/templates/prd-tmpl.yaml +202 -0
  81. package/bmad-core/templates/project-brief-tmpl.yaml +221 -0
  82. package/bmad-core/templates/story-tmpl.yaml +137 -0
  83. package/bmad-core/user-guide.md +251 -0
  84. package/bmad-core/workflows/brownfield-fullstack.yaml +311 -0
  85. package/bmad-core/workflows/brownfield-service.yaml +187 -0
  86. package/bmad-core/workflows/brownfield-ui.yaml +197 -0
  87. package/bmad-core/workflows/greenfield-fullstack.yaml +284 -0
  88. package/bmad-core/workflows/greenfield-service.yaml +206 -0
  89. package/bmad-core/workflows/greenfield-ui.yaml +235 -0
  90. package/bmad-core/working-in-the-brownfield.md +373 -0
  91. package/package.json +1 -1
  92. package/tools/appiq-installer.js +31 -34
  93. package/tools/epic-solution-installer.js +47 -49
  94. package/tools/setup-ide-commands.js +40 -37
  95. package/tools/smart-installer.js +16 -13
@@ -211,50 +211,53 @@ class IDECommandsSetup {
211
211
 
212
212
  getCommandDefinitions() {
213
213
  return {
214
- 'appiq': {
215
- description: 'Start intelligent project creation with automatic tech stack detection',
216
- agent: 'bmad-smart-launcher',
217
- workflow: 'appiq_launcher',
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
- 'Analyzes your project automatically',
220
- 'Guides through PRD creation',
221
- 'Sets up optimal agent team',
222
- 'Configures framework-specific workflows'
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
- 'story': {
226
- description: 'Create a new development story with context-aware template selection',
227
- agent: 'bmad-smart-launcher',
228
- workflow: 'story_creator',
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
- 'Context-aware story template selection',
231
- 'Automatic task breakdown based on tech stack',
232
- 'Integration with existing epics',
233
- 'Smart dependency detection'
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
- 'analyze': {
237
- description: 'Analyze current project structure and recommend optimal workflow',
238
- agent: 'bmad-smart-launcher',
239
- workflow: 'project_analyzer',
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
- 'Comprehensive project structure analysis',
242
- 'Tech stack compatibility assessment',
243
- 'Workflow optimization recommendations',
244
- 'Missing component identification'
245
- ]
244
+ "Comprehensive project structure analysis",
245
+ "Tech stack compatibility assessment",
246
+ "Workflow optimization recommendations",
247
+ "Missing component identification",
248
+ ],
246
249
  },
247
- 'help': {
248
- description: 'Show all available commands with examples',
249
- agent: 'bmad-smart-launcher',
250
- workflow: 'help_system',
250
+ help: {
251
+ description: "Show all available commands with examples",
252
+ agent: "init-flow-po",
253
+ workflow: "help_system",
251
254
  examples: [
252
- 'List all available commands',
253
- 'Show command usage examples',
254
- 'Provide context-aware assistance',
255
- 'Guide through APPIQ workflows'
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
- 'appiq': {
384
- description: 'Start intelligent project creation with automatic tech stack detection',
385
- agent: 'bmad-smart-launcher'
383
+ appiq: {
384
+ description:
385
+ "Start intelligent project creation with automatic tech stack detection",
386
+ agent: "init-flow-po",
386
387
  },
387
- 'story': {
388
- description: 'Create a new development story with context-aware template selection',
389
- agent: 'bmad-smart-launcher'
388
+ story: {
389
+ description:
390
+ "Create a new development story with context-aware template selection",
391
+ agent: "init-flow-po",
390
392
  },
391
- 'analyze': {
392
- description: 'Analyze current project structure and recommend optimal workflow',
393
- agent: 'bmad-smart-launcher'
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