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
@@ -0,0 +1,304 @@
1
+ # Create Brownfield Story Task
2
+
3
+ ## Purpose
4
+
5
+ Create detailed, implementation-ready stories for brownfield projects where traditional sharded PRD/architecture documents may not exist. This task bridges the gap between various documentation formats (document-project output, brownfield PRDs, epics, or user documentation) and executable stories for the Dev agent.
6
+
7
+ ## When to Use This Task
8
+
9
+ **Use this task when:**
10
+
11
+ - Working on brownfield projects with non-standard documentation
12
+ - Stories need to be created from document-project output
13
+ - Working from brownfield epics without full PRD/architecture
14
+ - Existing project documentation doesn't follow BMad v4+ structure
15
+ - Need to gather additional context from user during story creation
16
+
17
+ **Use create-next-story when:**
18
+
19
+ - Working with properly sharded PRD and v4 architecture documents
20
+ - Following standard greenfield or well-documented brownfield workflow
21
+ - All technical context is available in structured format
22
+
23
+ ## Task Execution Instructions
24
+
25
+ ### 0. Documentation Context
26
+
27
+ Check for available documentation in this order:
28
+
29
+ 1. **Sharded PRD/Architecture** (docs/prd/, docs/architecture/)
30
+ - If found, recommend using create-next-story task instead
31
+
32
+ 2. **Brownfield Architecture Document** (docs/brownfield-architecture.md or similar)
33
+ - Created by document-project task
34
+ - Contains actual system state, technical debt, workarounds
35
+
36
+ 3. **Brownfield PRD** (docs/prd.md)
37
+ - May contain embedded technical details
38
+
39
+ 4. **Epic Files** (docs/epics/ or similar)
40
+ - Created by brownfield-create-epic task
41
+
42
+ 5. **User-Provided Documentation**
43
+ - Ask user to specify location and format
44
+
45
+ ### 1. Story Identification and Context Gathering
46
+
47
+ #### 1.1 Identify Story Source
48
+
49
+ Based on available documentation:
50
+
51
+ - **From Brownfield PRD**: Extract stories from epic sections
52
+ - **From Epic Files**: Read epic definition and story list
53
+ - **From User Direction**: Ask user which specific enhancement to implement
54
+ - **No Clear Source**: Work with user to define the story scope
55
+
56
+ #### 1.2 Gather Essential Context
57
+
58
+ CRITICAL: For brownfield stories, you MUST gather enough context for safe implementation. Be prepared to ask the user for missing information.
59
+
60
+ **Required Information Checklist:**
61
+
62
+ - [ ] What existing functionality might be affected?
63
+ - [ ] What are the integration points with current code?
64
+ - [ ] What patterns should be followed (with examples)?
65
+ - [ ] What technical constraints exist?
66
+ - [ ] Are there any "gotchas" or workarounds to know about?
67
+
68
+ If any required information is missing, list the missing information and ask the user to provide it.
69
+
70
+ ### 2. Extract Technical Context from Available Sources
71
+
72
+ #### 2.1 From Document-Project Output
73
+
74
+ If using brownfield-architecture.md from document-project:
75
+
76
+ - **Technical Debt Section**: Note any workarounds affecting this story
77
+ - **Key Files Section**: Identify files that will need modification
78
+ - **Integration Points**: Find existing integration patterns
79
+ - **Known Issues**: Check if story touches problematic areas
80
+ - **Actual Tech Stack**: Verify versions and constraints
81
+
82
+ #### 2.2 From Brownfield PRD
83
+
84
+ If using brownfield PRD:
85
+
86
+ - **Technical Constraints Section**: Extract all relevant constraints
87
+ - **Integration Requirements**: Note compatibility requirements
88
+ - **Code Organization**: Follow specified patterns
89
+ - **Risk Assessment**: Understand potential impacts
90
+
91
+ #### 2.3 From User Documentation
92
+
93
+ Ask the user to help identify:
94
+
95
+ - Relevant technical specifications
96
+ - Existing code examples to follow
97
+ - Integration requirements
98
+ - Testing approaches used in the project
99
+
100
+ ### 3. Story Creation with Progressive Detail Gathering
101
+
102
+ #### 3.1 Create Initial Story Structure
103
+
104
+ Start with the story template, filling in what's known:
105
+
106
+ ```markdown
107
+ # Story {{Enhancement Title}}
108
+
109
+ ## Status: Draft
110
+
111
+ ## Story
112
+
113
+ As a {{user_type}},
114
+ I want {{enhancement_capability}},
115
+ so that {{value_delivered}}.
116
+
117
+ ## Context Source
118
+
119
+ - Source Document: {{document name/type}}
120
+ - Enhancement Type: {{single feature/bug fix/integration/etc}}
121
+ - Existing System Impact: {{brief assessment}}
122
+ ```
123
+
124
+ #### 3.2 Develop Acceptance Criteria
125
+
126
+ Critical: For brownfield, ALWAYS include criteria about maintaining existing functionality
127
+
128
+ Standard structure:
129
+
130
+ 1. New functionality works as specified
131
+ 2. Existing {{affected feature}} continues to work unchanged
132
+ 3. Integration with {{existing system}} maintains current behavior
133
+ 4. No regression in {{related area}}
134
+ 5. Performance remains within acceptable bounds
135
+
136
+ #### 3.3 Gather Technical Guidance
137
+
138
+ Critical: This is where you'll need to be interactive with the user if information is missing
139
+
140
+ Create Dev Technical Guidance section with available information:
141
+
142
+ ```markdown
143
+ ## Dev Technical Guidance
144
+
145
+ ### Existing System Context
146
+ [Extract from available documentation]
147
+
148
+ ### Integration Approach
149
+ [Based on patterns found or ask user]
150
+
151
+ ### Technical Constraints
152
+ [From documentation or user input]
153
+
154
+ ### Missing Information
155
+
156
+ Critical: List anything you couldn't find that dev will need and ask for the missing information
157
+
158
+ ### 4. Task Generation with Safety Checks
159
+
160
+ #### 4.1 Generate Implementation Tasks
161
+
162
+ Based on gathered context, create tasks that:
163
+
164
+ - Include exploration tasks if system understanding is incomplete
165
+ - Add verification tasks for existing functionality
166
+ - Include rollback considerations
167
+ - Reference specific files/patterns when known
168
+
169
+ Example task structure for brownfield:
170
+
171
+ ```markdown
172
+ ## Tasks / Subtasks
173
+
174
+ - [ ] Task 1: Analyze existing {{component/feature}} implementation
175
+ - [ ] Review {{specific files}} for current patterns
176
+ - [ ] Document integration points
177
+ - [ ] Identify potential impacts
178
+
179
+ - [ ] Task 2: Implement {{new functionality}}
180
+ - [ ] Follow pattern from {{example file}}
181
+ - [ ] Integrate with {{existing component}}
182
+ - [ ] Maintain compatibility with {{constraint}}
183
+
184
+ - [ ] Task 3: Verify existing functionality
185
+ - [ ] Test {{existing feature 1}} still works
186
+ - [ ] Verify {{integration point}} behavior unchanged
187
+ - [ ] Check performance impact
188
+
189
+ - [ ] Task 4: Add tests
190
+ - [ ] Unit tests following {{project test pattern}}
191
+ - [ ] Integration test for {{integration point}}
192
+ - [ ] Update existing tests if needed
193
+ ```
194
+
195
+ ### 5. Risk Assessment and Mitigation
196
+
197
+ CRITICAL: for brownfield - always include risk assessment
198
+
199
+ Add section for brownfield-specific risks:
200
+
201
+ ```markdown
202
+ ## Risk Assessment
203
+
204
+ ### Implementation Risks
205
+ - **Primary Risk**: {{main risk to existing system}}
206
+ - **Mitigation**: {{how to address}}
207
+ - **Verification**: {{how to confirm safety}}
208
+
209
+ ### Rollback Plan
210
+ - {{Simple steps to undo changes if needed}}
211
+
212
+ ### Safety Checks
213
+ - [ ] Existing {{feature}} tested before changes
214
+ - [ ] Changes can be feature-flagged or isolated
215
+ - [ ] Rollback procedure documented
216
+ ```
217
+
218
+ ### 6. Final Story Validation
219
+
220
+ Before finalizing:
221
+
222
+ 1. **Completeness Check**:
223
+ - [ ] Story has clear scope and acceptance criteria
224
+ - [ ] Technical context is sufficient for implementation
225
+ - [ ] Integration approach is defined
226
+ - [ ] Risks are identified with mitigation
227
+
228
+ 2. **Safety Check**:
229
+ - [ ] Existing functionality protection included
230
+ - [ ] Rollback plan is feasible
231
+ - [ ] Testing covers both new and existing features
232
+
233
+ 3. **Information Gaps**:
234
+ - [ ] All critical missing information gathered from user
235
+ - [ ] Remaining unknowns documented for dev agent
236
+ - [ ] Exploration tasks added where needed
237
+
238
+ ### 7. Story Output Format
239
+
240
+ Save the story with appropriate naming:
241
+
242
+ - If from epic: `docs/stories/epic-{n}-story-{m}.md`
243
+ - If standalone: `docs/stories/brownfield-{feature-name}.md`
244
+ - If sequential: Follow existing story numbering
245
+
246
+ Include header noting documentation context:
247
+
248
+ ```markdown
249
+ # Story: {{Title}}
250
+
251
+ <!-- Source: {{documentation type used}} -->
252
+ <!-- Context: Brownfield enhancement to {{existing system}} -->
253
+
254
+ ## Status: Draft
255
+ [Rest of story content...]
256
+ ```
257
+
258
+ ### 8. Handoff Communication
259
+
260
+ Provide clear handoff to the user:
261
+
262
+ ```text
263
+ Brownfield story created: {{story title}}
264
+
265
+ Source Documentation: {{what was used}}
266
+ Story Location: {{file path}}
267
+
268
+ Key Integration Points Identified:
269
+ - {{integration point 1}}
270
+ - {{integration point 2}}
271
+
272
+ Risks Noted:
273
+ - {{primary risk}}
274
+
275
+ {{If missing info}}:
276
+ Note: Some technical details were unclear. The story includes exploration tasks to gather needed information during implementation.
277
+
278
+ Next Steps:
279
+ 1. Review story for accuracy
280
+ 2. Verify integration approach aligns with your system
281
+ 3. Approve story or request adjustments
282
+ 4. Dev agent can then implement with safety checks
283
+ ```
284
+
285
+ ## Success Criteria
286
+
287
+ The brownfield story creation is successful when:
288
+
289
+ 1. Story can be implemented without requiring dev to search multiple documents
290
+ 2. Integration approach is clear and safe for existing system
291
+ 3. All available technical context has been extracted and organized
292
+ 4. Missing information has been identified and addressed
293
+ 5. Risks are documented with mitigation strategies
294
+ 6. Story includes verification of existing functionality
295
+ 7. Rollback approach is defined
296
+
297
+ ## Important Notes
298
+
299
+ - This task is specifically for brownfield projects with non-standard documentation
300
+ - Always prioritize existing system stability over new features
301
+ - When in doubt, add exploration and verification tasks
302
+ - It's better to ask the user for clarification than make assumptions
303
+ - Each story should be self-contained for the dev agent
304
+ - Include references to existing code patterns when available
@@ -0,0 +1,289 @@
1
+ # Create Deep Research Prompt Task
2
+
3
+ This task helps create comprehensive research prompts for various types of deep analysis. It can process inputs from brainstorming sessions, project briefs, market research, or specific research questions to generate targeted prompts for deeper investigation.
4
+
5
+ ## Purpose
6
+
7
+ Generate well-structured research prompts that:
8
+
9
+ - Define clear research objectives and scope
10
+ - Specify appropriate research methodologies
11
+ - Outline expected deliverables and formats
12
+ - Guide systematic investigation of complex topics
13
+ - Ensure actionable insights are captured
14
+
15
+ ## Research Type Selection
16
+
17
+ CRITICAL: First, help the user select the most appropriate research focus based on their needs and any input documents they've provided.
18
+
19
+ ### 1. Research Focus Options
20
+
21
+ Present these numbered options to the user:
22
+
23
+ 1. **Product Validation Research**
24
+
25
+ - Validate product hypotheses and market fit
26
+ - Test assumptions about user needs and solutions
27
+ - Assess technical and business feasibility
28
+ - Identify risks and mitigation strategies
29
+
30
+ 2. **Market Opportunity Research**
31
+
32
+ - Analyze market size and growth potential
33
+ - Identify market segments and dynamics
34
+ - Assess market entry strategies
35
+ - Evaluate timing and market readiness
36
+
37
+ 3. **User & Customer Research**
38
+
39
+ - Deep dive into user personas and behaviors
40
+ - Understand jobs-to-be-done and pain points
41
+ - Map customer journeys and touchpoints
42
+ - Analyze willingness to pay and value perception
43
+
44
+ 4. **Competitive Intelligence Research**
45
+
46
+ - Detailed competitor analysis and positioning
47
+ - Feature and capability comparisons
48
+ - Business model and strategy analysis
49
+ - Identify competitive advantages and gaps
50
+
51
+ 5. **Technology & Innovation Research**
52
+
53
+ - Assess technology trends and possibilities
54
+ - Evaluate technical approaches and architectures
55
+ - Identify emerging technologies and disruptions
56
+ - Analyze build vs. buy vs. partner options
57
+
58
+ 6. **Industry & Ecosystem Research**
59
+
60
+ - Map industry value chains and dynamics
61
+ - Identify key players and relationships
62
+ - Analyze regulatory and compliance factors
63
+ - Understand partnership opportunities
64
+
65
+ 7. **Strategic Options Research**
66
+
67
+ - Evaluate different strategic directions
68
+ - Assess business model alternatives
69
+ - Analyze go-to-market strategies
70
+ - Consider expansion and scaling paths
71
+
72
+ 8. **Risk & Feasibility Research**
73
+
74
+ - Identify and assess various risk factors
75
+ - Evaluate implementation challenges
76
+ - Analyze resource requirements
77
+ - Consider regulatory and legal implications
78
+
79
+ 9. **Custom Research Focus**
80
+
81
+ - User-defined research objectives
82
+ - Specialized domain investigation
83
+ - Cross-functional research needs
84
+
85
+ ### 2. Input Processing
86
+
87
+ **If Project Brief provided:**
88
+
89
+ - Extract key product concepts and goals
90
+ - Identify target users and use cases
91
+ - Note technical constraints and preferences
92
+ - Highlight uncertainties and assumptions
93
+
94
+ **If Brainstorming Results provided:**
95
+
96
+ - Synthesize main ideas and themes
97
+ - Identify areas needing validation
98
+ - Extract hypotheses to test
99
+ - Note creative directions to explore
100
+
101
+ **If Market Research provided:**
102
+
103
+ - Build on identified opportunities
104
+ - Deepen specific market insights
105
+ - Validate initial findings
106
+ - Explore adjacent possibilities
107
+
108
+ **If Starting Fresh:**
109
+
110
+ - Gather essential context through questions
111
+ - Define the problem space
112
+ - Clarify research objectives
113
+ - Establish success criteria
114
+
115
+ ## Process
116
+
117
+ ### 3. Research Prompt Structure
118
+
119
+ CRITICAL: collaboratively develop a comprehensive research prompt with these components.
120
+
121
+ #### A. Research Objectives
122
+
123
+ CRITICAL: collaborate with the user to articulate clear, specific objectives for the research.
124
+
125
+ - Primary research goal and purpose
126
+ - Key decisions the research will inform
127
+ - Success criteria for the research
128
+ - Constraints and boundaries
129
+
130
+ #### B. Research Questions
131
+
132
+ CRITICAL: collaborate with the user to develop specific, actionable research questions organized by theme.
133
+
134
+ **Core Questions:**
135
+
136
+ - Central questions that must be answered
137
+ - Priority ranking of questions
138
+ - Dependencies between questions
139
+
140
+ **Supporting Questions:**
141
+
142
+ - Additional context-building questions
143
+ - Nice-to-have insights
144
+ - Future-looking considerations
145
+
146
+ #### C. Research Methodology
147
+
148
+ **Data Collection Methods:**
149
+
150
+ - Secondary research sources
151
+ - Primary research approaches (if applicable)
152
+ - Data quality requirements
153
+ - Source credibility criteria
154
+
155
+ **Analysis Frameworks:**
156
+
157
+ - Specific frameworks to apply
158
+ - Comparison criteria
159
+ - Evaluation methodologies
160
+ - Synthesis approaches
161
+
162
+ #### D. Output Requirements
163
+
164
+ **Format Specifications:**
165
+
166
+ - Executive summary requirements
167
+ - Detailed findings structure
168
+ - Visual/tabular presentations
169
+ - Supporting documentation
170
+
171
+ **Key Deliverables:**
172
+
173
+ - Must-have sections and insights
174
+ - Decision-support elements
175
+ - Action-oriented recommendations
176
+ - Risk and uncertainty documentation
177
+
178
+ ### 4. Prompt Generation
179
+
180
+ **Research Prompt Template:**
181
+
182
+ ```markdown
183
+ ## Research Objective
184
+
185
+ [Clear statement of what this research aims to achieve]
186
+
187
+ ## Background Context
188
+
189
+ [Relevant information from project brief, brainstorming, or other inputs]
190
+
191
+ ## Research Questions
192
+
193
+ ### Primary Questions (Must Answer)
194
+
195
+ 1. [Specific, actionable question]
196
+ 2. [Specific, actionable question]
197
+ ...
198
+
199
+ ### Secondary Questions (Nice to Have)
200
+
201
+ 1. [Supporting question]
202
+ 2. [Supporting question]
203
+ ...
204
+
205
+ ## Research Methodology
206
+
207
+ ### Information Sources
208
+
209
+ - [Specific source types and priorities]
210
+
211
+ ### Analysis Frameworks
212
+
213
+ - [Specific frameworks to apply]
214
+
215
+ ### Data Requirements
216
+
217
+ - [Quality, recency, credibility needs]
218
+
219
+ ## Expected Deliverables
220
+
221
+ ### Executive Summary
222
+
223
+ - Key findings and insights
224
+ - Critical implications
225
+ - Recommended actions
226
+
227
+ ### Detailed Analysis
228
+
229
+ [Specific sections needed based on research type]
230
+
231
+ ### Supporting Materials
232
+
233
+ - Data tables
234
+ - Comparison matrices
235
+ - Source documentation
236
+
237
+ ## Success Criteria
238
+
239
+ [How to evaluate if research achieved its objectives]
240
+
241
+ ## Timeline and Priority
242
+
243
+ [If applicable, any time constraints or phasing]
244
+ ```
245
+
246
+ ### 5. Review and Refinement
247
+
248
+ 1. **Present Complete Prompt**
249
+
250
+ - Show the full research prompt
251
+ - Explain key elements and rationale
252
+ - Highlight any assumptions made
253
+
254
+ 2. **Gather Feedback**
255
+
256
+ - Are the objectives clear and correct?
257
+ - Do the questions address all concerns?
258
+ - Is the scope appropriate?
259
+ - Are output requirements sufficient?
260
+
261
+ 3. **Refine as Needed**
262
+ - Incorporate user feedback
263
+ - Adjust scope or focus
264
+ - Add missing elements
265
+ - Clarify ambiguities
266
+
267
+ ### 6. Next Steps Guidance
268
+
269
+ **Execution Options:**
270
+
271
+ 1. **Use with AI Research Assistant**: Provide this prompt to an AI model with research capabilities
272
+ 2. **Guide Human Research**: Use as a framework for manual research efforts
273
+ 3. **Hybrid Approach**: Combine AI and human research using this structure
274
+
275
+ **Integration Points:**
276
+
277
+ - How findings will feed into next phases
278
+ - Which team members should review results
279
+ - How to validate findings
280
+ - When to revisit or expand research
281
+
282
+ ## Important Notes
283
+
284
+ - The quality of the research prompt directly impacts the quality of insights gathered
285
+ - Be specific rather than general in research questions
286
+ - Consider both current state and future implications
287
+ - Balance comprehensiveness with focus
288
+ - Document assumptions and limitations clearly
289
+ - Plan for iterative refinement based on initial findings