fraim-framework 2.0.27 → 2.0.30

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 (98) hide show
  1. package/.github/workflows/deploy-fraim.yml +1 -1
  2. package/dist/registry/scripts/build-scripts-generator.js +205 -0
  3. package/dist/registry/scripts/cleanup-branch.js +258 -0
  4. package/dist/registry/scripts/evaluate-code-quality.js +66 -0
  5. package/dist/registry/scripts/exec-with-timeout.js +142 -0
  6. package/dist/registry/scripts/fraim-config.js +61 -0
  7. package/dist/registry/scripts/generate-engagement-emails.js +630 -0
  8. package/dist/registry/scripts/generic-issues-api.js +100 -0
  9. package/dist/registry/scripts/newsletter-helpers.js +731 -0
  10. package/dist/registry/scripts/openapi-generator.js +664 -0
  11. package/dist/registry/scripts/performance/profile-server.js +390 -0
  12. package/dist/registry/scripts/run-thank-you-workflow.js +92 -0
  13. package/dist/registry/scripts/send-newsletter-simple.js +85 -0
  14. package/dist/registry/scripts/send-thank-you-emails.js +54 -0
  15. package/dist/registry/scripts/validate-openapi-limits.js +311 -0
  16. package/dist/registry/scripts/validate-test-coverage.js +262 -0
  17. package/dist/registry/scripts/verify-test-coverage.js +66 -0
  18. package/dist/src/cli/commands/init.js +14 -14
  19. package/dist/src/cli/commands/sync.js +4 -4
  20. package/dist/src/cli/fraim.js +24 -22
  21. package/dist/src/cli/setup/first-run.js +13 -6
  22. package/dist/src/fraim/db-service.js +26 -15
  23. package/dist/src/fraim/issues.js +67 -0
  24. package/dist/src/fraim-mcp-server.js +272 -18
  25. package/dist/src/utils/git-utils.js +1 -1
  26. package/dist/tests/debug-tools.js +79 -0
  27. package/dist/tests/esm-compat.js +11 -0
  28. package/dist/tests/test-chalk-esm-issue.js +159 -0
  29. package/dist/tests/test-chalk-real-world.js +265 -0
  30. package/dist/tests/test-chalk-regression.js +327 -0
  31. package/dist/tests/test-chalk-resolution-issue.js +304 -0
  32. package/dist/tests/test-fraim-install-chalk-issue.js +254 -0
  33. package/dist/tests/test-fraim-issues.js +59 -0
  34. package/dist/tests/test-genericization.js +1 -1
  35. package/dist/tests/test-mcp-connection.js +166 -0
  36. package/dist/tests/test-mcp-issue-integration.js +144 -0
  37. package/dist/tests/test-mcp-lifecycle-methods.js +312 -0
  38. package/dist/tests/test-node-compatibility.js +71 -0
  39. package/dist/tests/test-npm-install.js +66 -0
  40. package/dist/tests/test-npm-resolution-diagnostic.js +140 -0
  41. package/dist/tests/test-session-rehydration.js +145 -0
  42. package/dist/tests/test-standalone.js +2 -8
  43. package/dist/tests/test-telemetry.js +190 -0
  44. package/package.json +10 -8
  45. package/registry/agent-guardrails.md +62 -54
  46. package/registry/rules/agent-success-criteria.md +52 -0
  47. package/registry/rules/agent-testing-guidelines.md +502 -502
  48. package/registry/rules/communication.md +121 -121
  49. package/registry/rules/continuous-learning.md +54 -54
  50. package/registry/rules/ephemeral-execution.md +10 -5
  51. package/registry/rules/hitl-ppe-record-analysis.md +302 -302
  52. package/registry/rules/local-development.md +251 -251
  53. package/registry/rules/software-development-lifecycle.md +104 -104
  54. package/registry/rules/successful-debugging-patterns.md +482 -478
  55. package/registry/rules/telemetry.md +67 -0
  56. package/registry/scripts/build-scripts-generator.ts +216 -215
  57. package/registry/scripts/cleanup-branch.ts +303 -284
  58. package/registry/scripts/code-quality-check.sh +559 -559
  59. package/registry/scripts/detect-tautological-tests.sh +38 -38
  60. package/registry/scripts/evaluate-code-quality.ts +1 -1
  61. package/registry/scripts/generate-engagement-emails.ts +744 -744
  62. package/registry/scripts/generic-issues-api.ts +110 -150
  63. package/registry/scripts/newsletter-helpers.ts +874 -874
  64. package/registry/scripts/openapi-generator.ts +695 -693
  65. package/registry/scripts/performance/profile-server.ts +5 -3
  66. package/registry/scripts/prep-issue.sh +468 -455
  67. package/registry/scripts/validate-openapi-limits.ts +366 -365
  68. package/registry/scripts/validate-test-coverage.ts +280 -280
  69. package/registry/scripts/verify-pr-comments.sh +70 -70
  70. package/registry/scripts/verify-test-coverage.ts +1 -1
  71. package/registry/templates/bootstrap/ARCHITECTURE-TEMPLATE.md +53 -53
  72. package/registry/templates/evidence/Implementation-BugEvidence.md +85 -85
  73. package/registry/templates/evidence/Implementation-FeatureEvidence.md +120 -120
  74. package/registry/templates/marketing/HBR-ARTICLE-TEMPLATE.md +66 -0
  75. package/registry/workflows/bootstrap/create-architecture.md +2 -2
  76. package/registry/workflows/bootstrap/evaluate-code-quality.md +3 -3
  77. package/registry/workflows/bootstrap/verify-test-coverage.md +2 -2
  78. package/registry/workflows/customer-development/insight-analysis.md +156 -156
  79. package/registry/workflows/customer-development/interview-preparation.md +421 -421
  80. package/registry/workflows/customer-development/strategic-brainstorming.md +146 -146
  81. package/registry/workflows/customer-development/thank-customers.md +193 -191
  82. package/registry/workflows/customer-development/weekly-newsletter.md +362 -352
  83. package/registry/workflows/improve-fraim/contribute.md +32 -0
  84. package/registry/workflows/improve-fraim/file-issue.md +32 -0
  85. package/registry/workflows/marketing/hbr-article.md +73 -0
  86. package/registry/workflows/performance/analyze-performance.md +63 -59
  87. package/registry/workflows/product-building/design.md +3 -2
  88. package/registry/workflows/product-building/implement.md +4 -3
  89. package/registry/workflows/product-building/prep-issue.md +28 -17
  90. package/registry/workflows/product-building/resolve.md +3 -2
  91. package/registry/workflows/product-building/retrospect.md +3 -2
  92. package/registry/workflows/product-building/spec.md +5 -4
  93. package/registry/workflows/product-building/test.md +3 -2
  94. package/registry/workflows/quality-assurance/iterative-improvement-cycle.md +562 -562
  95. package/registry/workflows/replicate/website-discovery-analysis.md +3 -3
  96. package/registry/workflows/reviewer/review-implementation-vs-design-spec.md +632 -632
  97. package/registry/workflows/reviewer/review-implementation-vs-feature-spec.md +669 -669
  98. package/tsconfig.json +2 -1
@@ -1,421 +1,421 @@
1
- # Interview Preparation Workflow
2
-
3
- ## INTENT
4
- To help Product Managers prepare for customer interviews by researching specific customers, personalizing questions, and creating structured interview templates that maximize learning and relationship building.
5
-
6
- ## PRINCIPLES
7
- - **Deep Customer Research**: Thoroughly research customer background and context
8
- - **Personalized Approach**: Tailor questions and approach to specific customer
9
- - **Structured Preparation**: Create comprehensive interview templates
10
- - **Relationship Focus**: Prepare for building rapport and trust
11
- - **Mom Test Compliance**: Follow Rob Fitzpatrick's Mom Test principles - focus on pain points, not solutions
12
-
13
- ## WORKFLOW TRIGGER
14
- **PM explicitly starts this workflow**:
15
- - "Starting Interview Preparation for [Customer Name]"
16
- - "I want to prepare for the interview with [Customer Name]"
17
- - "Following the interview preparation workflow"
18
-
19
- ## INPUT REQUIREMENTS
20
- **PM provides**:
21
- - Strategic recommendations document from Strategic Brainstorming
22
- - Customer name and company
23
- - Interview date and duration
24
- - Additional unstructured thoughts/context about this specific customer
25
-
26
- ## AI AGENT PROCESS
27
-
28
- ### Step 1: Comprehensive Multi-Source Research
29
- **AI Agent Research Process**:
30
-
31
- #### Step 1a: LinkedIn Research (Deep Profile Analysis)
32
- 1. **LinkedIn Research (Deep Profile Analysis)**
33
- - Navigate to LinkedIn and search for customer by name and company
34
- - **Click on the customer's name/profile in search results** to access their full profile page
35
- - **Wait for profile page to load completely** before extracting information
36
-
37
- **Profile Information Extraction:**
38
- - **Current role and title** (CRITICAL: Extract exact title for role-based research)
39
- - Responsibilities and career progression
40
- - Company tenure and experience level
41
- - Education background and certifications
42
- - Skills and expertise areas
43
- - Mutual connections and network
44
- - Contact information and location
45
- - **Product/Project mentions** (if Product Manager or similar role)
46
- - **Department/Team information** (if applicable)
47
-
48
- **Deep Activity Research:**
49
- - **Scroll through recent posts** to understand their interests and focus areas
50
- - **Analyze post content** - topics they write about, tone, expertise areas
51
- - **Check posts they've liked/reshared** to understand their interests and influences
52
- - **Look at comments they've made** on other posts to understand their perspectives
53
- - **Identify recurring themes** in their content (pain points, interests, expertise)
54
- - **Note their communication style** and personality from posts/comments
55
-
56
- **Professional Insights:**
57
- - Note any specific achievements or projects mentioned
58
- - Identify thought leadership areas from their content
59
- - Understand their professional network and connections
60
- - Look for industry insights and opinions they've shared
61
- - Take screenshot of profile for reference
62
- - **If profile is not accessible, try alternative search terms** (name variations, company variations)
63
- - **If still unable to find profile after 3 attempts, STOP and ask PM for help**
64
-
65
- #### Step 1b: Role-Based Research Strategy
66
- **After extracting role/title from LinkedIn, determine research focus:**
67
-
68
- **Role Classification:**
69
- - **Executive/C-Suite Roles** (CEO, CFO, CTO, COO, President, VP, SVP, EVP, Chief, etc.):
70
- - Focus: Company-wide information, strategic initiatives, financial performance
71
- - Research: SEC filings (if public), annual reports, investor relations, company strategy
72
-
73
- - **Product Management Roles** (Product Manager, Product Owner, Product Lead, Head of Product, etc.):
74
- - Focus: Product-specific information, product performance, product challenges
75
- - Research: Product reviews, product sales data, product roadmap, product market position
76
-
77
- - **Engineering/Technical Roles** (Engineer, Developer, Architect, CTO, VP Engineering, etc.):
78
- - Focus: Technical stack, engineering challenges, technology adoption
79
- - Research: Technology stack, engineering blog posts, technical challenges
80
-
81
- - **Other Roles**:
82
- - Focus: Role-specific context and department/team information
83
- - Research: Department-specific information, role-specific challenges
84
-
85
- 2. **Web Search Research (Role-Adaptive Company & Context Research)**
86
-
87
- **For Executive/C-Suite Roles:**
88
- - Search for company SEC filings: "[Company Name] SEC filings 10-K 10-Q annual report"
89
- - Search for company financial performance: "[Company Name] earnings revenue stock performance"
90
- - Search for company strategy: "[Company Name] strategic initiatives growth plan"
91
- - Search for company challenges: "[Company Name] challenges risks operational issues"
92
- - Search for company news: "[Company Name] recent news acquisitions partnerships"
93
- - Search for industry position: "[Company Name] market position competitive landscape"
94
- - Search for customer by name: "[Full Name] [Company] interview article CEO strategy"
95
-
96
- **For Product Management Roles:**
97
- - Search for product information: "[Product Name] reviews features pricing"
98
- - Search for product performance: "[Product Name] sales revenue market share"
99
- - Search for product challenges: "[Product Name] problems issues complaints"
100
- - Search for product roadmap: "[Product Name] roadmap updates features"
101
- - Search for product market position: "[Product Name] vs competitors comparison"
102
- - Search for product news: "[Product Name] recent updates launches"
103
- - Search for customer by name: "[Full Name] [Product Name] product manager"
104
- - Search for company context: "[Company Name] product strategy [Product Name]"
105
-
106
- **For Engineering/Technical Roles:**
107
- - Search for technology stack: "[Company Name] technology stack engineering"
108
- - Search for technical challenges: "[Company Name] engineering challenges technical debt"
109
- - Search for customer by name: "[Full Name] [Company] engineer technical"
110
-
111
- **For All Roles (General Research):**
112
- - Search for industry trends: "[Industry] calendar management challenges 2024"
113
- - Search for company culture: "[Company Name] work culture remote hybrid"
114
- - Look for press releases, interviews, or articles featuring the customer
115
- - Research company's calendar/meeting culture and policies
116
-
117
- 3. **Professional Background Research**
118
- - Search for previous companies and roles: "[Name] [Previous Company]"
119
- - Look for career progression patterns and industry experience
120
- - Research any public speaking engagements or conference appearances
121
- - Check for published articles, blog posts, or thought leadership content
122
- - Look for awards, recognitions, or professional achievements
123
-
124
- 4. **Social Media & Content Research**
125
- - Search for their Twitter/X profile and recent activity
126
- - Look for Medium articles, Substack newsletters, or personal blogs
127
- - Check for YouTube videos, podcasts, or speaking engagements
128
- - Research any GitHub profiles or technical contributions
129
- - Look for Quora answers or other professional Q&A platforms
130
-
131
- 5. **Role-Specific Intelligence Research**
132
-
133
- **For Executive/C-Suite Roles:**
134
- - Research company's SEC filings and public disclosures (if public company)
135
- - Research company's financial performance and investor relations
136
- - Research company's strategic initiatives and growth plans
137
- - Research company's operational challenges and risk factors
138
- - Research company's M&A activity and acquisitions
139
- - Research company's competitive position and market share
140
- - Research company's organizational structure and leadership changes
141
- - Research company's stance on AI adoption and digital transformation
142
-
143
- **For Product Management Roles:**
144
- - Research product's market position and competitive landscape
145
- - Research product reviews, ratings, and customer feedback
146
- - Research product sales data and revenue (if publicly available)
147
- - Research product roadmap and feature announcements
148
- - Research product challenges and known issues
149
- - Research product's target market and customer segments
150
- - Research product's pricing strategy and business model
151
- - Research product's technology stack and technical capabilities
152
-
153
- **For Engineering/Technical Roles:**
154
- - Research company's technology stack and engineering practices
155
- - Research company's engineering blog and technical content
156
- - Research company's technical challenges and engineering priorities
157
- - Research company's development processes and methodologies
158
-
159
- **For All Roles (General Intelligence):**
160
- - Research company's calendar/meeting management tools and policies
161
- - Look for company culture around remote work and meeting practices
162
- - Research any recent organizational changes or team restructuring
163
- - Research competitive landscape and company's market position
164
-
165
- **CRITICAL: LinkedIn Research Failure Protocol**
166
- - **If unable to find customer on LinkedIn after 3 search attempts:**
167
- - STOP the research process immediately
168
- - Inform PM: "I was unable to locate [Customer Name] on LinkedIn after trying multiple search variations. Could you please provide their LinkedIn profile URL or additional details to help me find them?"
169
- - **Do NOT proceed with incomplete research**
170
- - **Do NOT create interview prep document without LinkedIn profile**
171
- - Wait for PM to provide LinkedIn URL or additional information before continuing
172
-
173
- ### Step 2: Template Creation and Filling
174
- **AI Agent Template Process**:
175
- 1. **Create Interview Prep Document**
176
- - File location: `docs/customer-development/[customer-name]-interview-prep.md`
177
- - Use unified customer interview template
178
- - Fill in all sections based on research and strategic context
179
- - **Include role-specific sections** based on role classification
180
-
181
- 2. **Fill Customer Overview Section**
182
- - Complete customer overview with LinkedIn research
183
- - Add professional background with career progression
184
- - Include key insights for interview
185
- - **Add role-specific context section**:
186
- - **For Executives**: Company overview, financial context, strategic initiatives
187
- - **For Product Managers**: Product overview, product performance, product challenges
188
- - **For Engineers**: Technical context, technology stack, engineering challenges
189
- - **For Other Roles**: Role-specific context and department information
190
-
191
- 3. **Develop Interview Strategy**
192
- - Create conversation starters using mutual connections
193
- - Add research notes and **role-appropriate context**:
194
- - **For Executives**: Company performance, strategic initiatives, recent acquisitions
195
- - **For Product Managers**: Product performance, product challenges, product roadmap
196
- - **For Engineers**: Technical challenges, technology adoption, engineering practices
197
- - Include strategic context integration
198
-
199
- 4. **Generate Dynamic Questions (Mom Test Compliant)**
200
- - Create priority questions based on strategic document assumptions
201
- - Generate validation questions to test specific hypotheses
202
- - Develop follow-up questions based on customer background
203
- - **Include role-specific questions**:
204
- - **For Executives**: Questions about company-wide challenges, strategic priorities, organizational processes
205
- - **For Product Managers**: Questions about product challenges, product development processes, product-market fit
206
- - **For Engineers**: Questions about technical challenges, development processes, technology adoption
207
- - **Ensure all questions follow Mom Test principles**:
208
- - Focus on past behavior and specific examples
209
- - Avoid hypothetical questions about future behavior
210
- - Don't mention our solution or product
211
- - Ask about their current process and pain points
212
- - Use "Tell me about a time when..." format
213
- - Ask about the last time they experienced the pain point
214
-
215
- ### Step 3: Strategic Integration
216
- **AI Agent Strategic Process**:
217
- 1. **Connect to Strategic Document**
218
- - Map customer to specific customer segments
219
- - Identify which assumptions to validate with this customer
220
- - Note hierarchy level and decision-making authority
221
-
222
- 2. **Create Targeted Questions**
223
- - Generate questions that test specific strategic assumptions
224
- - Ensure questions are personalized to customer's role and background
225
- - Focus on validating key hypotheses from strategic document
226
-
227
- ## OUTPUT TEMPLATE
228
-
229
- ### Comprehensive Interview Prep Document
230
- **Template**: `.ai-agents/templates/customer-development/customer-interview-template.md`
231
- **File Location**: `docs/customer-development/[customer-name]-interview-prep.md`
232
-
233
- **Process**:
234
- 1. Use the unified customer interview template
235
- 2. Fill in comprehensive customer overview with LinkedIn research
236
- 3. Add professional background and key insights for interview
237
- 4. Create conversation starters and research notes
238
- 5. **Generate dynamic questions** based on strategic document assumptions
239
- 6. **Create validation questions** to test specific strategic hypotheses
240
- 7. **Create follow-up questions** based on customer background
241
-
242
- ## EXAMPLES
243
-
244
- ### Good: Comprehensive Interview Preparation
245
- ```
246
- Input: Strategic recommendations document + "Let's prepare for interview with [Customer Name] at [Company Name]. I know they're on an AI-forward team there."
247
-
248
- AI Agent Research Process:
249
- 1. LinkedIn Research:
250
- - Navigate to LinkedIn and search for "[Customer Name] [Company Name]"
251
- - **Click on [Customer Name]'s name in search results** to access their profile page
252
- - **Wait for profile page to load completely**
253
- - Extract profile information: "Principal Group Product Manager at [Company Name] [Product Name], [X]+ years at [Company Name]"
254
- - **Role Classification**: Product Management Role → Focus on product-specific research
255
- - **Scroll through recent posts** to understand their focus areas
256
- - **Analyze post content**: Found posts about AI deployment challenges, product management philosophy
257
- - **Check liked/reshared content**: Interested in AI ethics, enterprise productivity, team leadership
258
- - **Look at comments**: Engages thoughtfully on AI adoption and change management topics
259
- - **Identify themes**: AI deployment, product-led growth, customer-centric approach
260
- - **Note communication style**: Professional, thoughtful, customer-focused
261
- - Take screenshot of profile for reference
262
-
263
- 2. Role-Adaptive Web Search Research (Product Manager Focus):
264
- - Search "[Product Name] product reviews features"
265
- - Search "[Product Name] product roadmap updates"
266
- - Search "[Product Name] product challenges issues"
267
- - Search "[Product Name] vs competitors comparison"
268
- - Search "[Customer Name] [Product Name] product manager"
269
- - Search "[Product Name] recent updates [Year]"
270
- - Search "[Company Name] calendar management policies hierarchy"
271
- - Found recent articles about [Company Name]'s AI integration challenges
272
- - Discovered [Company Name]'s hybrid work policies and meeting culture
273
- - Found product-specific information about [Product Name]
274
-
275
- 3. Professional Background Research:
276
- - Research previous roles at [Company Name]
277
- - Look for speaking engagements or conference appearances
278
- - Check for published articles or thought leadership content
279
- - Found their contributions to [Company Name]'s AI strategy discussions
280
-
281
- 4. Social Media & Content Research:
282
- - Search for Twitter/X activity
283
- - Look for Medium articles or personal blogs
284
- - Check for YouTube videos or podcast appearances
285
- - Found their engagement in AI ethics discussions
286
-
287
- 5. Role-Specific Intelligence Research (Product Manager Focus):
288
- - Research [Product Name] product market position
289
- - Research [Product Name] product reviews and customer feedback
290
- - Research [Product Name] product roadmap and features
291
- - Research [Product Name] product challenges and known issues
292
- - Research [Company Name]'s calendar management tools and policies (context for product)
293
- - Look into [Company Name]'s AI adoption strategy (relevant to product)
294
- - Research organizational structure and hierarchy policies (context for product)
295
- - Found information about [Company Name]'s meeting culture and remote work policies
296
-
297
- 3. Strategic Integration:
298
- - Map to "[Company Name] executives" segment from strategic recommendations
299
- - Connect to "hierarchy-aware scheduling" validation needs
300
- - Identify AI delegation comfort assumptions to test
301
-
302
- AI Agent Output:
303
- - Comprehensive prep document: `docs/customer-development/[customer-name]-interview-prep.md`
304
- - Detailed customer overview with LinkedIn research
305
- - Professional background with career progression
306
- - **Product-specific context section**: [Product Name] product overview, product challenges, product roadmap
307
- - Strategic context integration
308
- - **Role-appropriate questions** (Product Manager focus):
309
- - **Product-specific questions**: "Tell me about the last time [Product Name] faced a significant product challenge. What happened?"
310
- - **Product development questions**: "Walk me through how you prioritize features for [Product Name]. What's that process like?"
311
- - **Product-market fit questions**: "How do you currently understand customer needs for [Product Name]? What does that research look like?"
312
- - **Mom Test compliant questions**:
313
- - "Tell me about the last time you had to reschedule a meeting due to a VP conflict"
314
- - "Walk me through what happened when you had to move your 1:1s for an urgent VP meeting"
315
- - "How do you currently decide which meetings to move when conflicts arise?"
316
- - **Validation questions**: "What was the most frustrating calendar conflict you dealt with recently?"
317
- - **Follow-up questions**: "How did that situation get resolved, and what would you have done differently?"
318
- - Conversation starters: Reference mutual connections, shared [Company Name] experience, [Product Name] product context
319
- ```
320
-
321
- ### Good: Executive Role Research (CEO Example)
322
- ```
323
- Input: Strategic recommendations document + "Let's prepare for interview with [Customer Name] at [Company Name]. They're the CEO."
324
-
325
- AI Agent Research Process:
326
- 1. LinkedIn Research:
327
- - Extract profile information: "Chief Executive Officer at [Company Name]"
328
- - **Role Classification**: Executive/C-Suite Role → Focus on company-wide research
329
-
330
- 2. Role-Adaptive Web Search Research (Executive Focus):
331
- - Search "[Company Name] SEC filings 10-K 10-Q annual report"
332
- - Search "[Company Name] earnings revenue stock performance"
333
- - Search "[Company Name] strategic initiatives growth plan"
334
- - Search "[Company Name] challenges risks operational issues"
335
- - Search "[Company Name] recent news acquisitions partnerships"
336
- - Found: [Company Name] is publicly traded (NASDAQ: [TICKER]), operates [X,XXX]+ [business units], recent [Country] acquisition
337
-
338
- 3. SEC Filings Research:
339
- - Research [Company Name] 10-K filing: Found cybersecurity risks, financial obligations, operational challenges
340
- - Research [Company Name] 8-K filings: Found recent acquisitions, material agreements
341
- - Research [Company Name] 10-Q filings: Found quarterly financial performance
342
-
343
- 4. Company Intelligence Research (Executive Focus):
344
- - Research [Company Name]'s financial performance and investor relations
345
- - Research [Company Name]'s strategic initiatives and growth plans
346
- - Research [Company Name]'s operational challenges and risk factors
347
- - Research [Company Name]'s M&A activity and acquisitions
348
- - Research [Company Name]'s competitive position and market share
349
-
350
- AI Agent Output:
351
- - Comprehensive prep document: `docs/customer-development/[customer-name]-interview-prep.md`
352
- - Detailed customer overview with LinkedIn research
353
- - **Company overview section**: [Company Name] stock information, business model, [business unit] count, recent acquisitions
354
- - **SEC filings insights**: Cybersecurity risks, financial obligations, operational challenges
355
- - **Strategic context**: Recent [Country] acquisition ([XX] [business units]), debt retirement, active M&A strategy
356
- - **Role-appropriate questions** (Executive focus):
357
- - "I noticed [Company Name] recently acquired [XX] [business units] in [Country]. Tell me about the process of integrating those..."
358
- - "With [X,XXX]+ [business units] across [X] countries, how do you ensure consistent processes..."
359
- - "As a public company, how does [Company Name] balance process rigor with the need to move quickly..."
360
- ```
361
-
362
- ### Bad: Generic Preparation
363
- ```
364
- Input: "Prepare for interview with [Customer Name]"
365
-
366
- AI Agent Output:
367
- - Generic template with no personalization
368
- - No LinkedIn research or customer background
369
- - Standard questions for any customer
370
- - No strategic context integration
371
- - No conversation starters or demo prep
372
- - No follow-up planning
373
-
374
- Result: Unprepared interview, missed opportunities, poor rapport building
375
- ```
376
-
377
- ### Bad: Proceeding with Incomplete Research
378
- ```
379
- Input: "Prepare for interview with John Smith at Acme Corp"
380
-
381
- AI Agent Process:
382
- - Searches LinkedIn for "John Smith Acme Corp"
383
- - Cannot find profile after 3 attempts
384
- - **INCORRECTLY proceeds with incomplete research**
385
- - Creates prep document with missing LinkedIn insights
386
-
387
- AI Agent Output:
388
- - Incomplete prep document missing critical customer insights
389
- - Generic questions not based on actual customer background
390
- - No personalized conversation starters
391
- - **Should have stopped and asked PM for help**
392
-
393
- Result: Poor interview preparation, missed opportunities, wasted time
394
- ```
395
-
396
- ### Good: Proper Failure Handling
397
- ```
398
- Input: "Prepare for interview with John Smith at Acme Corp"
399
-
400
- AI Agent Process:
401
- - Searches LinkedIn for "John Smith Acme Corp"
402
- - Tries variations: "John Smith", "J. Smith Acme", "Smith Acme Corp"
403
- - Cannot find profile after 3 attempts
404
- - **STOPS and asks PM for help**
405
-
406
- AI Agent Output:
407
- - "I was unable to locate John Smith on LinkedIn after trying multiple search variations. Could you please provide their LinkedIn profile URL or additional details to help me find them?"
408
- - **Waits for PM response before proceeding**
409
- - **Ensures complete research before creating prep document**
410
-
411
- Result: High-quality interview preparation with complete customer insights
412
- ```
413
-
414
- ## SUCCESS METRICS
415
- - **Research Accuracy**: 90% of pre-filled customer context is accurate
416
- - **LinkedIn Research Quality**: Comprehensive profile analysis with screenshots
417
- - **Question Relevance**: Personalized questions based on customer background and role
418
- - **Strategic Integration**: Clear connection to strategic recommendations and assumptions
419
- - **Time Efficiency**: PM spends 30 minutes preparing instead of 2 hours
420
- - **Interview Quality**: Better rapport, deeper insights, and more targeted conversations
421
- - **Documentation**: Comprehensive prep documents for future reference and team sharing
1
+ # Interview Preparation Workflow
2
+
3
+ ## INTENT
4
+ To help Product Managers prepare for customer interviews by researching specific customers, personalizing questions, and creating structured interview templates that maximize learning and relationship building.
5
+
6
+ ## PRINCIPLES
7
+ - **Deep Customer Research**: Thoroughly research customer background and context
8
+ - **Personalized Approach**: Tailor questions and approach to specific customer
9
+ - **Structured Preparation**: Create comprehensive interview templates
10
+ - **Relationship Focus**: Prepare for building rapport and trust
11
+ - **Mom Test Compliance**: Follow Rob Fitzpatrick's Mom Test principles - focus on pain points, not solutions
12
+
13
+ ## WORKFLOW TRIGGER
14
+ **PM explicitly starts this workflow**:
15
+ - "Starting Interview Preparation for [Customer Name]"
16
+ - "I want to prepare for the interview with [Customer Name]"
17
+ - "Following the interview preparation workflow"
18
+
19
+ ## INPUT REQUIREMENTS
20
+ **PM provides**:
21
+ - Strategic recommendations document from Strategic Brainstorming
22
+ - Customer name and company
23
+ - Interview date and duration
24
+ - Additional unstructured thoughts/context about this specific customer
25
+
26
+ ## AI AGENT PROCESS
27
+
28
+ ### Step 1: Comprehensive Multi-Source Research
29
+ **AI Agent Research Process**:
30
+
31
+ #### Step 1a: LinkedIn Research (Deep Profile Analysis)
32
+ 1. **LinkedIn Research (Deep Profile Analysis)**
33
+ - Navigate to LinkedIn and search for customer by name and company
34
+ - **Click on the customer's name/profile in search results** to access their full profile page
35
+ - **Wait for profile page to load completely** before extracting information
36
+
37
+ **Profile Information Extraction:**
38
+ - **Current role and title** (CRITICAL: Extract exact title for role-based research)
39
+ - Responsibilities and career progression
40
+ - Company tenure and experience level
41
+ - Education background and certifications
42
+ - Skills and expertise areas
43
+ - Mutual connections and network
44
+ - Contact information and location
45
+ - **Product/Project mentions** (if Product Manager or similar role)
46
+ - **Department/Team information** (if applicable)
47
+
48
+ **Deep Activity Research:**
49
+ - **Scroll through recent posts** to understand their interests and focus areas
50
+ - **Analyze post content** - topics they write about, tone, expertise areas
51
+ - **Check posts they've liked/reshared** to understand their interests and influences
52
+ - **Look at comments they've made** on other posts to understand their perspectives
53
+ - **Identify recurring themes** in their content (pain points, interests, expertise)
54
+ - **Note their communication style** and personality from posts/comments
55
+
56
+ **Professional Insights:**
57
+ - Note any specific achievements or projects mentioned
58
+ - Identify thought leadership areas from their content
59
+ - Understand their professional network and connections
60
+ - Look for industry insights and opinions they've shared
61
+ - Take screenshot of profile for reference
62
+ - **If profile is not accessible, try alternative search terms** (name variations, company variations)
63
+ - **If still unable to find profile after 3 attempts, STOP and ask PM for help**
64
+
65
+ #### Step 1b: Role-Based Research Strategy
66
+ **After extracting role/title from LinkedIn, determine research focus:**
67
+
68
+ **Role Classification:**
69
+ - **Executive/C-Suite Roles** (CEO, CFO, CTO, COO, President, VP, SVP, EVP, Chief, etc.):
70
+ - Focus: Company-wide information, strategic initiatives, financial performance
71
+ - Research: SEC filings (if public), annual reports, investor relations, company strategy
72
+
73
+ - **Product Management Roles** (Product Manager, Product Owner, Product Lead, Head of Product, etc.):
74
+ - Focus: Product-specific information, product performance, product challenges
75
+ - Research: Product reviews, product sales data, product roadmap, product market position
76
+
77
+ - **Engineering/Technical Roles** (Engineer, Developer, Architect, CTO, VP Engineering, etc.):
78
+ - Focus: Technical stack, engineering challenges, technology adoption
79
+ - Research: Technology stack, engineering blog posts, technical challenges
80
+
81
+ - **Other Roles**:
82
+ - Focus: Role-specific context and department/team information
83
+ - Research: Department-specific information, role-specific challenges
84
+
85
+ 2. **Web Search Research (Role-Adaptive Company & Context Research)**
86
+
87
+ **For Executive/C-Suite Roles:**
88
+ - Search for company SEC filings: "[Company Name] SEC filings 10-K 10-Q annual report"
89
+ - Search for company financial performance: "[Company Name] earnings revenue stock performance"
90
+ - Search for company strategy: "[Company Name] strategic initiatives growth plan"
91
+ - Search for company challenges: "[Company Name] challenges risks operational issues"
92
+ - Search for company news: "[Company Name] recent news acquisitions partnerships"
93
+ - Search for industry position: "[Company Name] market position competitive landscape"
94
+ - Search for customer by name: "[Full Name] [Company] interview article CEO strategy"
95
+
96
+ **For Product Management Roles:**
97
+ - Search for product information: "[Product Name] reviews features pricing"
98
+ - Search for product performance: "[Product Name] sales revenue market share"
99
+ - Search for product challenges: "[Product Name] problems issues complaints"
100
+ - Search for product roadmap: "[Product Name] roadmap updates features"
101
+ - Search for product market position: "[Product Name] vs competitors comparison"
102
+ - Search for product news: "[Product Name] recent updates launches"
103
+ - Search for customer by name: "[Full Name] [Product Name] product manager"
104
+ - Search for company context: "[Company Name] product strategy [Product Name]"
105
+
106
+ **For Engineering/Technical Roles:**
107
+ - Search for technology stack: "[Company Name] technology stack engineering"
108
+ - Search for technical challenges: "[Company Name] engineering challenges technical debt"
109
+ - Search for customer by name: "[Full Name] [Company] engineer technical"
110
+
111
+ **For All Roles (General Research):**
112
+ - Search for industry trends: "[Industry] calendar management challenges 2024"
113
+ - Search for company culture: "[Company Name] work culture remote hybrid"
114
+ - Look for press releases, interviews, or articles featuring the customer
115
+ - Research company's calendar/meeting culture and policies
116
+
117
+ 3. **Professional Background Research**
118
+ - Search for previous companies and roles: "[Name] [Previous Company]"
119
+ - Look for career progression patterns and industry experience
120
+ - Research any public speaking engagements or conference appearances
121
+ - Check for published articles, blog posts, or thought leadership content
122
+ - Look for awards, recognitions, or professional achievements
123
+
124
+ 4. **Social Media & Content Research**
125
+ - Search for their Twitter/X profile and recent activity
126
+ - Look for Medium articles, Substack newsletters, or personal blogs
127
+ - Check for YouTube videos, podcasts, or speaking engagements
128
+ - Research any GitHub profiles or technical contributions
129
+ - Look for Quora answers or other professional Q&A platforms
130
+
131
+ 5. **Role-Specific Intelligence Research**
132
+
133
+ **For Executive/C-Suite Roles:**
134
+ - Research company's SEC filings and public disclosures (if public company)
135
+ - Research company's financial performance and investor relations
136
+ - Research company's strategic initiatives and growth plans
137
+ - Research company's operational challenges and risk factors
138
+ - Research company's M&A activity and acquisitions
139
+ - Research company's competitive position and market share
140
+ - Research company's organizational structure and leadership changes
141
+ - Research company's stance on AI adoption and digital transformation
142
+
143
+ **For Product Management Roles:**
144
+ - Research product's market position and competitive landscape
145
+ - Research product reviews, ratings, and customer feedback
146
+ - Research product sales data and revenue (if publicly available)
147
+ - Research product roadmap and feature announcements
148
+ - Research product challenges and known issues
149
+ - Research product's target market and customer segments
150
+ - Research product's pricing strategy and business model
151
+ - Research product's technology stack and technical capabilities
152
+
153
+ **For Engineering/Technical Roles:**
154
+ - Research company's technology stack and engineering practices
155
+ - Research company's engineering blog and technical content
156
+ - Research company's technical challenges and engineering priorities
157
+ - Research company's development processes and methodologies
158
+
159
+ **For All Roles (General Intelligence):**
160
+ - Research company's calendar/meeting management tools and policies
161
+ - Look for company culture around remote work and meeting practices
162
+ - Research any recent organizational changes or team restructuring
163
+ - Research competitive landscape and company's market position
164
+
165
+ **CRITICAL: LinkedIn Research Failure Protocol**
166
+ - **If unable to find customer on LinkedIn after 3 search attempts:**
167
+ - STOP the research process immediately
168
+ - Inform PM: "I was unable to locate [Customer Name] on LinkedIn after trying multiple search variations. Could you please provide their LinkedIn profile URL or additional details to help me find them?"
169
+ - **Do NOT proceed with incomplete research**
170
+ - **Do NOT create interview prep document without LinkedIn profile**
171
+ - Wait for PM to provide LinkedIn URL or additional information before continuing
172
+
173
+ ### Step 2: Template Creation and Filling
174
+ **AI Agent Template Process**:
175
+ 1. **Create Interview Prep Document**
176
+ - File location: `docs/customer-development/[customer-name]-interview-prep.md`
177
+ - Use unified customer interview template
178
+ - Fill in all sections based on research and strategic context
179
+ - **Include role-specific sections** based on role classification
180
+
181
+ 2. **Fill Customer Overview Section**
182
+ - Complete customer overview with LinkedIn research
183
+ - Add professional background with career progression
184
+ - Include key insights for interview
185
+ - **Add role-specific context section**:
186
+ - **For Executives**: Company overview, financial context, strategic initiatives
187
+ - **For Product Managers**: Product overview, product performance, product challenges
188
+ - **For Engineers**: Technical context, technology stack, engineering challenges
189
+ - **For Other Roles**: Role-specific context and department information
190
+
191
+ 3. **Develop Interview Strategy**
192
+ - Create conversation starters using mutual connections
193
+ - Add research notes and **role-appropriate context**:
194
+ - **For Executives**: Company performance, strategic initiatives, recent acquisitions
195
+ - **For Product Managers**: Product performance, product challenges, product roadmap
196
+ - **For Engineers**: Technical challenges, technology adoption, engineering practices
197
+ - Include strategic context integration
198
+
199
+ 4. **Generate Dynamic Questions (Mom Test Compliant)**
200
+ - Create priority questions based on strategic document assumptions
201
+ - Generate validation questions to test specific hypotheses
202
+ - Develop follow-up questions based on customer background
203
+ - **Include role-specific questions**:
204
+ - **For Executives**: Questions about company-wide challenges, strategic priorities, organizational processes
205
+ - **For Product Managers**: Questions about product challenges, product development processes, product-market fit
206
+ - **For Engineers**: Questions about technical challenges, development processes, technology adoption
207
+ - **Ensure all questions follow Mom Test principles**:
208
+ - Focus on past behavior and specific examples
209
+ - Avoid hypothetical questions about future behavior
210
+ - Don't mention our solution or product
211
+ - Ask about their current process and pain points
212
+ - Use "Tell me about a time when..." format
213
+ - Ask about the last time they experienced the pain point
214
+
215
+ ### Step 3: Strategic Integration
216
+ **AI Agent Strategic Process**:
217
+ 1. **Connect to Strategic Document**
218
+ - Map customer to specific customer segments
219
+ - Identify which assumptions to validate with this customer
220
+ - Note hierarchy level and decision-making authority
221
+
222
+ 2. **Create Targeted Questions**
223
+ - Generate questions that test specific strategic assumptions
224
+ - Ensure questions are personalized to customer's role and background
225
+ - Focus on validating key hypotheses from strategic document
226
+
227
+ ## OUTPUT TEMPLATE
228
+
229
+ ### Comprehensive Interview Prep Document
230
+ **Template**: Retrieve via `get_fraim_file({ path: "templates/customer-development/customer-interview-template.md" })`
231
+ **File Location**: `docs/customer-development/[customer-name]-interview-prep.md`
232
+
233
+ **Process**:
234
+ 1. Use the unified customer interview template
235
+ 2. Fill in comprehensive customer overview with LinkedIn research
236
+ 3. Add professional background and key insights for interview
237
+ 4. Create conversation starters and research notes
238
+ 5. **Generate dynamic questions** based on strategic document assumptions
239
+ 6. **Create validation questions** to test specific strategic hypotheses
240
+ 7. **Create follow-up questions** based on customer background
241
+
242
+ ## EXAMPLES
243
+
244
+ ### Good: Comprehensive Interview Preparation
245
+ ```
246
+ Input: Strategic recommendations document + "Let's prepare for interview with [Customer Name] at [Company Name]. I know they're on an AI-forward team there."
247
+
248
+ AI Agent Research Process:
249
+ 1. LinkedIn Research:
250
+ - Navigate to LinkedIn and search for "[Customer Name] [Company Name]"
251
+ - **Click on [Customer Name]'s name in search results** to access their profile page
252
+ - **Wait for profile page to load completely**
253
+ - Extract profile information: "Principal Group Product Manager at [Company Name] [Product Name], [X]+ years at [Company Name]"
254
+ - **Role Classification**: Product Management Role → Focus on product-specific research
255
+ - **Scroll through recent posts** to understand their focus areas
256
+ - **Analyze post content**: Found posts about AI deployment challenges, product management philosophy
257
+ - **Check liked/reshared content**: Interested in AI ethics, enterprise productivity, team leadership
258
+ - **Look at comments**: Engages thoughtfully on AI adoption and change management topics
259
+ - **Identify themes**: AI deployment, product-led growth, customer-centric approach
260
+ - **Note communication style**: Professional, thoughtful, customer-focused
261
+ - Take screenshot of profile for reference
262
+
263
+ 2. Role-Adaptive Web Search Research (Product Manager Focus):
264
+ - Search "[Product Name] product reviews features"
265
+ - Search "[Product Name] product roadmap updates"
266
+ - Search "[Product Name] product challenges issues"
267
+ - Search "[Product Name] vs competitors comparison"
268
+ - Search "[Customer Name] [Product Name] product manager"
269
+ - Search "[Product Name] recent updates [Year]"
270
+ - Search "[Company Name] calendar management policies hierarchy"
271
+ - Found recent articles about [Company Name]'s AI integration challenges
272
+ - Discovered [Company Name]'s hybrid work policies and meeting culture
273
+ - Found product-specific information about [Product Name]
274
+
275
+ 3. Professional Background Research:
276
+ - Research previous roles at [Company Name]
277
+ - Look for speaking engagements or conference appearances
278
+ - Check for published articles or thought leadership content
279
+ - Found their contributions to [Company Name]'s AI strategy discussions
280
+
281
+ 4. Social Media & Content Research:
282
+ - Search for Twitter/X activity
283
+ - Look for Medium articles or personal blogs
284
+ - Check for YouTube videos or podcast appearances
285
+ - Found their engagement in AI ethics discussions
286
+
287
+ 5. Role-Specific Intelligence Research (Product Manager Focus):
288
+ - Research [Product Name] product market position
289
+ - Research [Product Name] product reviews and customer feedback
290
+ - Research [Product Name] product roadmap and features
291
+ - Research [Product Name] product challenges and known issues
292
+ - Research [Company Name]'s calendar management tools and policies (context for product)
293
+ - Look into [Company Name]'s AI adoption strategy (relevant to product)
294
+ - Research organizational structure and hierarchy policies (context for product)
295
+ - Found information about [Company Name]'s meeting culture and remote work policies
296
+
297
+ 3. Strategic Integration:
298
+ - Map to "[Company Name] executives" segment from strategic recommendations
299
+ - Connect to "hierarchy-aware scheduling" validation needs
300
+ - Identify AI delegation comfort assumptions to test
301
+
302
+ AI Agent Output:
303
+ - Comprehensive prep document: `docs/customer-development/[customer-name]-interview-prep.md`
304
+ - Detailed customer overview with LinkedIn research
305
+ - Professional background with career progression
306
+ - **Product-specific context section**: [Product Name] product overview, product challenges, product roadmap
307
+ - Strategic context integration
308
+ - **Role-appropriate questions** (Product Manager focus):
309
+ - **Product-specific questions**: "Tell me about the last time [Product Name] faced a significant product challenge. What happened?"
310
+ - **Product development questions**: "Walk me through how you prioritize features for [Product Name]. What's that process like?"
311
+ - **Product-market fit questions**: "How do you currently understand customer needs for [Product Name]? What does that research look like?"
312
+ - **Mom Test compliant questions**:
313
+ - "Tell me about the last time you had to reschedule a meeting due to a VP conflict"
314
+ - "Walk me through what happened when you had to move your 1:1s for an urgent VP meeting"
315
+ - "How do you currently decide which meetings to move when conflicts arise?"
316
+ - **Validation questions**: "What was the most frustrating calendar conflict you dealt with recently?"
317
+ - **Follow-up questions**: "How did that situation get resolved, and what would you have done differently?"
318
+ - Conversation starters: Reference mutual connections, shared [Company Name] experience, [Product Name] product context
319
+ ```
320
+
321
+ ### Good: Executive Role Research (CEO Example)
322
+ ```
323
+ Input: Strategic recommendations document + "Let's prepare for interview with [Customer Name] at [Company Name]. They're the CEO."
324
+
325
+ AI Agent Research Process:
326
+ 1. LinkedIn Research:
327
+ - Extract profile information: "Chief Executive Officer at [Company Name]"
328
+ - **Role Classification**: Executive/C-Suite Role → Focus on company-wide research
329
+
330
+ 2. Role-Adaptive Web Search Research (Executive Focus):
331
+ - Search "[Company Name] SEC filings 10-K 10-Q annual report"
332
+ - Search "[Company Name] earnings revenue stock performance"
333
+ - Search "[Company Name] strategic initiatives growth plan"
334
+ - Search "[Company Name] challenges risks operational issues"
335
+ - Search "[Company Name] recent news acquisitions partnerships"
336
+ - Found: [Company Name] is publicly traded (NASDAQ: [TICKER]), operates [X,XXX]+ [business units], recent [Country] acquisition
337
+
338
+ 3. SEC Filings Research:
339
+ - Research [Company Name] 10-K filing: Found cybersecurity risks, financial obligations, operational challenges
340
+ - Research [Company Name] 8-K filings: Found recent acquisitions, material agreements
341
+ - Research [Company Name] 10-Q filings: Found quarterly financial performance
342
+
343
+ 4. Company Intelligence Research (Executive Focus):
344
+ - Research [Company Name]'s financial performance and investor relations
345
+ - Research [Company Name]'s strategic initiatives and growth plans
346
+ - Research [Company Name]'s operational challenges and risk factors
347
+ - Research [Company Name]'s M&A activity and acquisitions
348
+ - Research [Company Name]'s competitive position and market share
349
+
350
+ AI Agent Output:
351
+ - Comprehensive prep document: `docs/customer-development/[customer-name]-interview-prep.md`
352
+ - Detailed customer overview with LinkedIn research
353
+ - **Company overview section**: [Company Name] stock information, business model, [business unit] count, recent acquisitions
354
+ - **SEC filings insights**: Cybersecurity risks, financial obligations, operational challenges
355
+ - **Strategic context**: Recent [Country] acquisition ([XX] [business units]), debt retirement, active M&A strategy
356
+ - **Role-appropriate questions** (Executive focus):
357
+ - "I noticed [Company Name] recently acquired [XX] [business units] in [Country]. Tell me about the process of integrating those..."
358
+ - "With [X,XXX]+ [business units] across [X] countries, how do you ensure consistent processes..."
359
+ - "As a public company, how does [Company Name] balance process rigor with the need to move quickly..."
360
+ ```
361
+
362
+ ### Bad: Generic Preparation
363
+ ```
364
+ Input: "Prepare for interview with [Customer Name]"
365
+
366
+ AI Agent Output:
367
+ - Generic template with no personalization
368
+ - No LinkedIn research or customer background
369
+ - Standard questions for any customer
370
+ - No strategic context integration
371
+ - No conversation starters or demo prep
372
+ - No follow-up planning
373
+
374
+ Result: Unprepared interview, missed opportunities, poor rapport building
375
+ ```
376
+
377
+ ### Bad: Proceeding with Incomplete Research
378
+ ```
379
+ Input: "Prepare for interview with John Smith at Acme Corp"
380
+
381
+ AI Agent Process:
382
+ - Searches LinkedIn for "John Smith Acme Corp"
383
+ - Cannot find profile after 3 attempts
384
+ - **INCORRECTLY proceeds with incomplete research**
385
+ - Creates prep document with missing LinkedIn insights
386
+
387
+ AI Agent Output:
388
+ - Incomplete prep document missing critical customer insights
389
+ - Generic questions not based on actual customer background
390
+ - No personalized conversation starters
391
+ - **Should have stopped and asked PM for help**
392
+
393
+ Result: Poor interview preparation, missed opportunities, wasted time
394
+ ```
395
+
396
+ ### Good: Proper Failure Handling
397
+ ```
398
+ Input: "Prepare for interview with John Smith at Acme Corp"
399
+
400
+ AI Agent Process:
401
+ - Searches LinkedIn for "John Smith Acme Corp"
402
+ - Tries variations: "John Smith", "J. Smith Acme", "Smith Acme Corp"
403
+ - Cannot find profile after 3 attempts
404
+ - **STOPS and asks PM for help**
405
+
406
+ AI Agent Output:
407
+ - "I was unable to locate John Smith on LinkedIn after trying multiple search variations. Could you please provide their LinkedIn profile URL or additional details to help me find them?"
408
+ - **Waits for PM response before proceeding**
409
+ - **Ensures complete research before creating prep document**
410
+
411
+ Result: High-quality interview preparation with complete customer insights
412
+ ```
413
+
414
+ ## SUCCESS METRICS
415
+ - **Research Accuracy**: 90% of pre-filled customer context is accurate
416
+ - **LinkedIn Research Quality**: Comprehensive profile analysis with screenshots
417
+ - **Question Relevance**: Personalized questions based on customer background and role
418
+ - **Strategic Integration**: Clear connection to strategic recommendations and assumptions
419
+ - **Time Efficiency**: PM spends 30 minutes preparing instead of 2 hours
420
+ - **Interview Quality**: Better rapport, deeper insights, and more targeted conversations
421
+ - **Documentation**: Comprehensive prep documents for future reference and team sharing