markform 0.1.0 → 0.1.1

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.
@@ -0,0 +1,404 @@
1
+ ---
2
+ markform:
3
+ markform_version: "0.1.0"
4
+ roles:
5
+ - user
6
+ - agent
7
+ role_instructions:
8
+ user: "Enter the startup name and any clarifying details (website, founder names, etc.)."
9
+ agent: |
10
+ Research and fill in all fields for the specified startup.
11
+ Guidelines:
12
+ 1. Start with the company website and Crunchbase for basic info
13
+ 2. Cross-reference funding data with multiple sources (Crunchbase, PitchBook, press releases)
14
+ 3. Search Hacker News via hn.algolia.com for discussions and launches
15
+ 4. Check Product Hunt for product launches
16
+ 5. Use LinkedIn for founder backgrounds
17
+ 6. Search each social media platform directly for official accounts
18
+ 7. Include source URLs for every piece of information
19
+ 8. Leave unknown fields empty - don't guess or fabricate
20
+ 9. Keep descriptions concise (50-150 words max)
21
+ ---
22
+
23
+ {% form id="startup_deep_research" title="Startup Deep Research" %}
24
+
25
+ {% description ref="startup_deep_research" %}
26
+ A comprehensive research form for gathering intelligence on startups including company basics, founders, funding, competitors, social media presence, and community signals.
27
+ {% /description %}
28
+
29
+ {% field-group id="user_input" title="Company to Research" %}
30
+
31
+ {% string-field id="company_name" label="Company Name" role="user" required=true minLength=1 maxLength=200 %}{% /string-field %}
32
+
33
+ {% instructions ref="company_name" %}
34
+ Enter the startup name exactly as it's commonly known (e.g., "Stripe", "Notion", "Figma").
35
+ {% /instructions %}
36
+
37
+ {% string-field id="additional_context" label="Additional Context" role="user" maxLength=1000 %}{% /string-field %}
38
+
39
+ {% instructions ref="additional_context" %}
40
+ Optional but helpful: Include any details or sources you already have to aid research:
41
+ - Website URL or social media links
42
+ - Founder names or key people you know of
43
+ - Approximate founding year or location
44
+ - Links to articles, posts, or announcements you've seen
45
+ - Any context to disambiguate (e.g., "the AI code assistant, not the cosmetics brand")
46
+ - Specific aspects you're most interested in researching
47
+
48
+ The more context you provide, the more accurate and relevant the research will be.
49
+ {% /instructions %}
50
+
51
+ {% /field-group %}
52
+
53
+ {% field-group id="basic_info" title="Company Overview" %}
54
+
55
+ {% string-field id="website" label="Website URL" %}{% /string-field %}
56
+
57
+ {% instructions ref="website" %}
58
+ Primary company website.
59
+ Source: Direct web search or crunchbase.com.
60
+ {% /instructions %}
61
+
62
+ {% string-field id="one_liner" label="One-Line Description" maxLength=200 %}{% /string-field %}
63
+
64
+ {% instructions ref="one_liner" %}
65
+ Brief description of what the company does.
66
+ Source: Company website tagline, crunchbase.com summary, or linkedin.com/company page.
67
+ {% /instructions %}
68
+
69
+ {% string-field id="founded_date" label="Founded Date" pattern="^\\d{4}(-\\d{2})?(-\\d{2})?$" %}{% /string-field %}
70
+
71
+ {% instructions ref="founded_date" %}
72
+ Format: YYYY or YYYY-MM or YYYY-MM-DD.
73
+ Source: crunchbase.com, company About page, or press releases.
74
+ {% /instructions %}
75
+
76
+ {% string-field id="headquarters" label="Headquarters" %}{% /string-field %}
77
+
78
+ {% instructions ref="headquarters" %}
79
+ Format: City, State/Country.
80
+ Source: crunchbase.com, linkedin.com/company page, or website footer.
81
+ {% /instructions %}
82
+
83
+ {% string-field id="company_status" label="Company Status" %}{% /string-field %}
84
+
85
+ {% instructions ref="company_status" %}
86
+ Current status: Active, Acquired (by whom, when), IPO (ticker, date), Shutdown, etc.
87
+ Source: crunchbase.com, press releases.
88
+ {% /instructions %}
89
+
90
+ {% string-field id="employee_count" label="Employee Count" %}{% /string-field %}
91
+
92
+ {% instructions ref="employee_count" %}
93
+ Approximate headcount or range (e.g., "50-100", "500+").
94
+ Source: linkedin.com/company page, crunchbase.com, or company website.
95
+ {% /instructions %}
96
+
97
+ {% string-field id="description" label="Company Description" maxLength=1000 %}{% /string-field %}
98
+
99
+ {% instructions ref="description" %}
100
+ 2-3 paragraph summary of the company, product, and market.
101
+ Source: Company website About page, crunchbase.com, Wikipedia if notable.
102
+ {% /instructions %}
103
+
104
+ {% /field-group %}
105
+
106
+ {% field-group id="founders_section" title="Founders & Key People" %}
107
+
108
+ {% description ref="founders_section" %}
109
+ List up to 4 founders/co-founders. Leave unused slots empty.
110
+ Sources: Company website Team/About page, linkedin.com profiles, crunchbase.com people section.
111
+ {% /description %}
112
+
113
+ {% string-field id="founder_1_name" label="Founder 1 Name" %}{% /string-field %}
114
+ {% string-field id="founder_1_title" label="Founder 1 Title" %}{% /string-field %}
115
+ {% string-field id="founder_1_linkedin" label="Founder 1 LinkedIn URL" %}{% /string-field %}
116
+ {% string-field id="founder_1_background" label="Founder 1 Background" maxLength=500 %}{% /string-field %}
117
+
118
+ {% instructions ref="founder_1_background" %}
119
+ Brief background: prior companies, notable roles, education.
120
+ {% /instructions %}
121
+
122
+ {% string-field id="founder_2_name" label="Founder 2 Name" %}{% /string-field %}
123
+ {% string-field id="founder_2_title" label="Founder 2 Title" %}{% /string-field %}
124
+ {% string-field id="founder_2_linkedin" label="Founder 2 LinkedIn URL" %}{% /string-field %}
125
+ {% string-field id="founder_2_background" label="Founder 2 Background" maxLength=500 %}{% /string-field %}
126
+
127
+ {% string-field id="founder_3_name" label="Founder 3 Name" %}{% /string-field %}
128
+ {% string-field id="founder_3_title" label="Founder 3 Title" %}{% /string-field %}
129
+ {% string-field id="founder_3_linkedin" label="Founder 3 LinkedIn URL" %}{% /string-field %}
130
+ {% string-field id="founder_3_background" label="Founder 3 Background" maxLength=500 %}{% /string-field %}
131
+
132
+ {% string-field id="founder_4_name" label="Founder 4 Name" %}{% /string-field %}
133
+ {% string-field id="founder_4_title" label="Founder 4 Title" %}{% /string-field %}
134
+ {% string-field id="founder_4_linkedin" label="Founder 4 LinkedIn URL" %}{% /string-field %}
135
+ {% string-field id="founder_4_background" label="Founder 4 Background" maxLength=500 %}{% /string-field %}
136
+
137
+ {% /field-group %}
138
+
139
+ {% field-group id="funding_section" title="Funding History" %}
140
+
141
+ {% string-field id="total_funding" label="Total Funding Raised" %}{% /string-field %}
142
+
143
+ {% instructions ref="total_funding" %}
144
+ Total known funding (e.g., "$150M").
145
+ Source: crunchbase.com, pitchbook.com, or press releases.
146
+ {% /instructions %}
147
+
148
+ {% string-field id="last_valuation" label="Last Known Valuation" %}{% /string-field %}
149
+
150
+ {% instructions ref="last_valuation" %}
151
+ Most recent valuation if publicly known (e.g., "$1.5B").
152
+ Source: Press releases, crunchbase.com, pitchbook.com.
153
+ {% /instructions %}
154
+
155
+ {% string-list id="funding_rounds" label="Funding Rounds" %}{% /string-list %}
156
+
157
+ {% instructions ref="funding_rounds" %}
158
+ One round per line, most recent first.
159
+ Format: "Round Type | YYYY-MM | $Amount | Lead Investor(s) | Source URL"
160
+ Example: "Series B | 2023-06 | $50M | Sequoia Capital | https://techcrunch.com/..."
161
+ Source: crunchbase.com funding rounds, pitchbook.com, techcrunch.com, company press releases.
162
+ {% /instructions %}
163
+
164
+ {% /field-group %}
165
+
166
+ {% field-group id="competitors_section" title="Competitors & Market Position" %}
167
+
168
+ {% string-field id="market_category" label="Market Category" %}{% /string-field %}
169
+
170
+ {% instructions ref="market_category" %}
171
+ Primary market/category (e.g., "Developer Tools", "HR Tech", "FinTech - Payments").
172
+ Source: crunchbase.com categories, g2.com categories.
173
+ {% /instructions %}
174
+
175
+ {% string-list id="competitors" label="Key Competitors" %}{% /string-list %}
176
+
177
+ {% instructions ref="competitors" %}
178
+ List 3-5 main competitors, one per line.
179
+ Format: "Company Name | Website | One-liner | Funding/Stage | Source URL"
180
+ Example: "Notion | notion.so | All-in-one workspace | $275M Series C | https://crunchbase.com/..."
181
+ Source: crunchbase.com competitors section, g2.com alternatives, company investor decks, press comparisons.
182
+ {% /instructions %}
183
+
184
+ {% string-field id="competitive_positioning" label="Competitive Positioning" maxLength=500 %}{% /string-field %}
185
+
186
+ {% instructions ref="competitive_positioning" %}
187
+ How does this company differentiate? Key advantages/disadvantages vs competitors.
188
+ Source: Company website, product pages, press interviews, g2.com reviews.
189
+ {% /instructions %}
190
+
191
+ {% /field-group %}
192
+
193
+ {% field-group id="social_media_section" title="Social Media Presence" %}
194
+
195
+ {% description ref="social_media_section" %}
196
+ Search each platform directly for official company accounts. Note follower counts and activity level.
197
+ {% /description %}
198
+
199
+ {% string-field id="twitter_x" label="Twitter/X" %}{% /string-field %}
200
+
201
+ {% instructions ref="twitter_x" %}
202
+ Format: "@handle | Followers | Last post date | URL"
203
+ Example: "@stripe | 850K followers | Active daily | https://twitter.com/stripe"
204
+ Source: Search x.com (twitter.com) directly for company name.
205
+ {% /instructions %}
206
+
207
+ {% string-field id="linkedin_company" label="LinkedIn Company Page" %}{% /string-field %}
208
+
209
+ {% instructions ref="linkedin_company" %}
210
+ Format: "Followers | Employees on LinkedIn | URL"
211
+ Example: "500K followers | 2,500 employees | https://linkedin.com/company/stripe"
212
+ Source: Search linkedin.com/company/ for company name.
213
+ {% /instructions %}
214
+
215
+ {% string-field id="youtube" label="YouTube" %}{% /string-field %}
216
+
217
+ {% instructions ref="youtube" %}
218
+ Format: "Channel name | Subscribers | Videos | URL"
219
+ Example: "Stripe | 45K subscribers | 150 videos | https://youtube.com/@stripe"
220
+ Source: Search youtube.com for company name. Note if no official channel exists.
221
+ {% /instructions %}
222
+
223
+ {% string-field id="instagram" label="Instagram" %}{% /string-field %}
224
+
225
+ {% instructions ref="instagram" %}
226
+ Format: "@handle | Followers | URL" or "Not found"
227
+ Source: Search instagram.com for company name. Many B2B companies don't have Instagram presence.
228
+ {% /instructions %}
229
+
230
+ {% string-field id="tiktok" label="TikTok" %}{% /string-field %}
231
+
232
+ {% instructions ref="tiktok" %}
233
+ Format: "@handle | Followers | URL" or "Not found"
234
+ Source: Search tiktok.com for company name. Primarily relevant for consumer-facing companies.
235
+ {% /instructions %}
236
+
237
+ {% string-field id="facebook" label="Facebook" %}{% /string-field %}
238
+
239
+ {% instructions ref="facebook" %}
240
+ Format: "Page name | Followers | URL" or "Not found"
241
+ Source: Search facebook.com for company name.
242
+ {% /instructions %}
243
+
244
+ {% string-field id="discord" label="Discord" %}{% /string-field %}
245
+
246
+ {% instructions ref="discord" %}
247
+ Format: "Server name | Members | Invite URL" or "Not found"
248
+ Source: Check company website footer/community links, or web search "company name discord".
249
+ {% /instructions %}
250
+
251
+ {% string-field id="reddit" label="Reddit Presence" %}{% /string-field %}
252
+
253
+ {% instructions ref="reddit" %}
254
+ Format: "r/subreddit | Members | URL" or "No official subreddit"
255
+ Also note if there are significant discussions in related subreddits.
256
+ Source: Search reddit.com for company name, check for official subreddit.
257
+ {% /instructions %}
258
+
259
+ {% /field-group %}
260
+
261
+ {% field-group id="hacker_news_section" title="Hacker News Presence" %}
262
+
263
+ {% string-list id="hn_posts" label="Notable Hacker News Posts" %}{% /string-list %}
264
+
265
+ {% instructions ref="hn_posts" %}
266
+ List top 3-5 HN posts by points/relevance, one per line.
267
+ Format: "Title | YYYY-MM-DD | Points | Comments | https://news.ycombinator.com/item?id=..."
268
+ Include: Show HN launches, funding announcements, major discussions about the company.
269
+ Source: Search hn.algolia.com for company name, product name, and founder names.
270
+ {% /instructions %}
271
+
272
+ {% /field-group %}
273
+
274
+ {% field-group id="product_hunt_section" title="Product Hunt Presence" %}
275
+
276
+ {% string-list id="ph_launches" label="Product Hunt Launches" %}{% /string-list %}
277
+
278
+ {% instructions ref="ph_launches" %}
279
+ List all known Product Hunt launches, one per line.
280
+ Format: "Product Name | YYYY-MM-DD | Upvotes | Badges (if any) | https://producthunt.com/posts/..."
281
+ Note any badges: Product of the Day/Week/Month, Golden Kitty, etc.
282
+ Source: Search producthunt.com for company name and product names.
283
+ {% /instructions %}
284
+
285
+ {% /field-group %}
286
+
287
+ {% field-group id="deep_intel_section" title="Deep Intelligence Sources" %}
288
+
289
+ {% description ref="deep_intel_section" %}
290
+ Alternative sources for deeper startup intelligence beyond standard databases.
291
+ {% /description %}
292
+
293
+ {% string-field id="tech_stack" label="Tech Stack" maxLength=500 %}{% /string-field %}
294
+
295
+ {% instructions ref="tech_stack" %}
296
+ Known technologies used (frameworks, infrastructure, tools).
297
+ Source: builtwith.com, wappalyzer.com, stackshare.io, job postings, engineering blog.
298
+ {% /instructions %}
299
+
300
+ {% string-field id="github_presence" label="GitHub Presence" %}{% /string-field %}
301
+
302
+ {% instructions ref="github_presence" %}
303
+ Format: "Org URL | Public repos | Total stars | Notable repos"
304
+ Example: "github.com/stripe | 150 repos | 50K+ stars | stripe-js (5K stars)"
305
+ Source: Search github.com for company name. Check for open source projects, SDKs, developer tools.
306
+ {% /instructions %}
307
+
308
+ {% string-field id="product_reviews" label="Product Reviews (G2/Capterra)" %}{% /string-field %}
309
+
310
+ {% instructions ref="product_reviews" %}
311
+ Format: "Platform | Rating | # Reviews | URL"
312
+ Example: "G2 | 4.5/5 | 1,200 reviews | https://g2.com/products/..."
313
+ Source: g2.com, capterra.com, trustradius.com (primarily for B2B SaaS).
314
+ {% /instructions %}
315
+
316
+ {% string-field id="app_store_presence" label="App Store Presence" %}{% /string-field %}
317
+
318
+ {% instructions ref="app_store_presence" %}
319
+ Format: "iOS: Rating (# reviews) | Android: Rating (# reviews) | URLs"
320
+ Example: "iOS: 4.8 (50K reviews) | Android: 4.6 (100K reviews)"
321
+ Source: Apple App Store (apps.apple.com), Google Play Store (play.google.com). Note if no mobile apps exist.
322
+ {% /instructions %}
323
+
324
+ {% string-field id="glassdoor_rating" label="Glassdoor Rating" %}{% /string-field %}
325
+
326
+ {% instructions ref="glassdoor_rating" %}
327
+ Format: "Rating | # Reviews | CEO Approval | URL"
328
+ Example: "4.2/5 | 500 reviews | 85% CEO approval | https://glassdoor.com/..."
329
+ Source: glassdoor.com. Provides employee sentiment and culture insights.
330
+ {% /instructions %}
331
+
332
+ {% string-list id="hiring_signals" label="Hiring Signals" %}{% /string-list %}
333
+
334
+ {% instructions ref="hiring_signals" %}
335
+ Current job openings that indicate growth areas, one category per line.
336
+ Format: "Department | # Open Roles | Notable positions"
337
+ Example: "Engineering | 25 roles | Staff ML Engineer, Platform Lead"
338
+ Source: Company careers page, linkedin.com/company/jobs, lever.co, greenhouse.io job boards.
339
+ {% /instructions %}
340
+
341
+ {% string-field id="patents" label="Patents" %}{% /string-field %}
342
+
343
+ {% instructions ref="patents" %}
344
+ Format: "# Patents filed/granted | Key patent areas | Source"
345
+ Example: "12 patents granted | NLP, recommendation systems | patents.google.com"
346
+ Source: patents.google.com, USPTO (uspto.gov), Espacenet. Search for company name and founder names.
347
+ {% /instructions %}
348
+
349
+ {% string-list id="podcast_interviews" label="Podcast/Video Interviews" %}{% /string-list %}
350
+
351
+ {% instructions ref="podcast_interviews" %}
352
+ Notable founder or exec interviews, one per line.
353
+ Format: "Title | Podcast/Show | Date | URL"
354
+ Example: "Building Stripe | How I Built This | 2021-03 | https://youtube.com/..."
355
+ Source: youtube.com, Spotify, Apple Podcasts. Search for founder names + "interview" or "podcast".
356
+ {% /instructions %}
357
+
358
+ {% string-field id="wayback_history" label="Company Evolution (Wayback)" %}{% /string-field %}
359
+
360
+ {% instructions ref="wayback_history" %}
361
+ Notable pivots or changes observed from historical website snapshots.
362
+ Example: "2019: Originally 'PaymentsAPI' focused on SMB; 2021: Rebranded, pivoted to enterprise"
363
+ Source: web.archive.org - search for company domain, review snapshots from different years.
364
+ {% /instructions %}
365
+
366
+ {% /field-group %}
367
+
368
+ {% field-group id="press_section" title="Notable Press Coverage" %}
369
+
370
+ {% string-list id="press_coverage" label="Press Articles" %}{% /string-list %}
371
+
372
+ {% instructions ref="press_coverage" %}
373
+ List 3-5 most notable press articles, one per line.
374
+ Format: "Title | Publication | YYYY-MM-DD | URL"
375
+ Focus on: funding announcements, major product launches, company profiles, notable interviews.
376
+ Source: techcrunch.com, theinformation.com, bloomberg.com, forbes.com, wired.com, venturebeat.com, company Press page.
377
+ {% /instructions %}
378
+
379
+ {% /field-group %}
380
+
381
+ {% field-group id="sources_section" title="Research Metadata" %}
382
+
383
+ {% string-list id="all_sources" label="All Sources Consulted" %}{% /string-list %}
384
+
385
+ {% instructions ref="all_sources" %}
386
+ List all URLs and sources used for this research, one per line.
387
+ Group by type: Company site, Crunchbase, LinkedIn, Social media, HN/PH, Reviews, Press, Other.
388
+ {% /instructions %}
389
+
390
+ {% string-field id="research_date" label="Research Date" required=true pattern="^\\d{4}-\\d{2}-\\d{2}$" %}{% /string-field %}
391
+
392
+ {% instructions ref="research_date" %}
393
+ Date this research was conducted (YYYY-MM-DD). Important for tracking data freshness.
394
+ {% /instructions %}
395
+
396
+ {% string-field id="research_notes" label="Research Notes" maxLength=1000 %}{% /string-field %}
397
+
398
+ {% instructions ref="research_notes" %}
399
+ Any caveats, limitations, or notes about the research (e.g., "PitchBook access unavailable", "Company is in stealth mode", "Limited public information available", "Paywalled sources not accessed").
400
+ {% /instructions %}
401
+
402
+ {% /field-group %}
403
+
404
+ {% /form %}