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.
- 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/activate-appiq.js +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/appiq-installer.js +31 -34
- package/#Tools/APPIQ-METHOD/tools/epic-solution-installer.js +47 -49
- 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/appiq-installer.js +31 -34
- package/tools/epic-solution-installer.js +47 -49
- package/tools/setup-ide-commands.js +40 -37
- package/tools/smart-installer.js +16 -13
@@ -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
|
|
package/tools/smart-installer.js
CHANGED
@@ -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
|