markform 0.1.4 → 0.1.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 (28) hide show
  1. package/README.md +40 -53
  2. package/dist/ai-sdk.d.mts +1 -1
  3. package/dist/ai-sdk.mjs +1 -1
  4. package/dist/{apply-C54EMAJ1.mjs → apply-BCCiJzQr.mjs} +3 -3
  5. package/dist/bin.mjs +3 -3
  6. package/dist/{cli-BhWhn6L9.mjs → cli-D469amuk.mjs} +5 -11
  7. package/dist/cli.mjs +3 -3
  8. package/dist/{coreTypes-cbNTYAcb.d.mts → coreTypes-9XZSNOv6.d.mts} +2 -2
  9. package/dist/index.d.mts +1 -1
  10. package/dist/index.mjs +2 -2
  11. package/dist/{src-BNh7Cx9P.mjs → src-Df0XX7UB.mjs} +19 -6
  12. package/docs/markform-reference.md +19 -19
  13. package/docs/markform-spec.md +20 -20
  14. package/examples/earnings-analysis/earnings-analysis.form.md +86 -808
  15. package/examples/earnings-analysis/earnings-analysis.valid.ts +16 -148
  16. package/examples/movie-research/movie-research-basic.form.md +16 -16
  17. package/examples/movie-research/movie-research-deep.form.md +36 -36
  18. package/examples/movie-research/movie-research-minimal.form.md +4 -4
  19. package/examples/simple/simple-mock-filled.form.md +16 -16
  20. package/examples/simple/simple-skipped-filled.form.md +16 -16
  21. package/examples/simple/simple-with-skips.session.yaml +3 -3
  22. package/examples/simple/simple.form.md +16 -16
  23. package/examples/simple/simple.session.yaml +3 -3
  24. package/examples/startup-deep-research/startup-deep-research.form.md +22 -22
  25. package/examples/startup-research/startup-research-mock-filled.form.md +12 -12
  26. package/examples/startup-research/startup-research.form.md +12 -12
  27. package/package.json +1 -1
  28. package/examples/celebrity-deep-research/celebrity-deep-research.form.md +0 -967
@@ -16,7 +16,7 @@ A fully interactive form demonstrating all Markform v0.1 field types.
16
16
  Fill all fields using interactive prompts - no LLM API key needed.
17
17
  {% /description %}
18
18
 
19
- {% field-group id="basic_fields" title="Basic Fields" %}
19
+ {% group id="basic_fields" title="Basic Fields" %}
20
20
 
21
21
  {% field kind="string" id="name" label="Name" role="user" required=true minLength=2 maxLength=50 placeholder="Enter your name" examples=["John Smith", "Jane Doe"] %}
22
22
  ```value
@@ -50,9 +50,9 @@ alice@example.com
50
50
  Enter a score between 0 and 100 (optional).
51
51
  {% /instructions %}
52
52
 
53
- {% /field-group %}
53
+ {% /group %}
54
54
 
55
- {% field-group id="list_fields" title="List Fields" %}
55
+ {% group id="list_fields" title="List Fields" %}
56
56
 
57
57
  {% field kind="string_list" id="tags" label="Tags" role="user" required=true minItems=1 maxItems=5 itemMinLength=2 uniqueItems=true %}
58
58
  ```value
@@ -66,9 +66,9 @@ forms
66
66
  Add 1-5 unique tags (each at least 2 characters).
67
67
  {% /instructions %}
68
68
 
69
- {% /field-group %}
69
+ {% /group %}
70
70
 
71
- {% field-group id="selection_fields" title="Selection Fields" %}
71
+ {% group id="selection_fields" title="Selection Fields" %}
72
72
 
73
73
  {% field kind="single_select" id="priority" label="Priority" role="user" required=true %}
74
74
  - [ ] Low {% #low %}
@@ -83,9 +83,9 @@ Add 1-5 unique tags (each at least 2 characters).
83
83
  - [ ] DevOps {% #devops %}
84
84
  {% /field %}
85
85
 
86
- {% /field-group %}
86
+ {% /group %}
87
87
 
88
- {% field-group id="checkbox_fields" title="Checkbox Fields" %}
88
+ {% group id="checkbox_fields" title="Checkbox Fields" %}
89
89
 
90
90
  {% field kind="checkboxes" id="tasks_multi" label="Tasks (Multi Mode)" role="user" checkboxMode="multi" required=true %}
91
91
  - [x] Research {% #research %}
@@ -112,9 +112,9 @@ Track task progress. All must reach done or na state to complete.
112
112
  Answer yes or no for each confirmation. All must be explicitly answered.
113
113
  {% /instructions %}
114
114
 
115
- {% /field-group %}
115
+ {% /group %}
116
116
 
117
- {% field-group id="url_fields" title="URL Fields" %}
117
+ {% group id="url_fields" title="URL Fields" %}
118
118
 
119
119
  {% field kind="url" id="website" label="Website" role="user" required=true placeholder="https://example.com" examples=["https://github.com/user/repo", "https://company.com"] %}
120
120
  ```value
@@ -138,9 +138,9 @@ https://medium.com/article-about-forms
138
138
  Add 1-5 unique reference URLs for sources or documentation.
139
139
  {% /instructions %}
140
140
 
141
- {% /field-group %}
141
+ {% /group %}
142
142
 
143
- {% field-group id="date_fields" title="Date and Year Fields" %}
143
+ {% group id="date_fields" title="Date and Year Fields" %}
144
144
 
145
145
  {% field kind="date" id="event_date" label="Event Date" role="user" required=true min="2020-01-01" max="2030-12-31" %}
146
146
  ```value
@@ -162,9 +162,9 @@ Enter the event date (YYYY-MM-DD format, between 2020 and 2030).
162
162
  Enter the year the company was founded (1900-2030).
163
163
  {% /instructions %}
164
164
 
165
- {% /field-group %}
165
+ {% /group %}
166
166
 
167
- {% field-group id="table_fields" title="Table Fields" %}
167
+ {% group id="table_fields" title="Table Fields" %}
168
168
 
169
169
  {% field kind="table" id="team_members" label="Team Members" role="user" minRows=0 maxRows=5
170
170
  columnIds=["name", "role", "start_date"]
@@ -190,9 +190,9 @@ Add team members with their name (required), role, and start date.
190
190
  Optionally add project tasks with estimated hours and reference links.
191
191
  {% /instructions %}
192
192
 
193
- {% /field-group %}
193
+ {% /group %}
194
194
 
195
- {% field-group id="optional_fields" title="Optional Fields" %}
195
+ {% group id="optional_fields" title="Optional Fields" %}
196
196
 
197
197
  {% field kind="string" id="notes" label="Notes" role="user" %}
198
198
  ```value
@@ -228,7 +228,7 @@ Optionally add a date (YYYY-MM-DD format).
228
228
  Optionally add a year.
229
229
  {% /instructions %}
230
230
 
231
- {% /field-group %}
231
+ {% /group %}
232
232
 
233
233
  {% note id="note-review" ref="simple_test" role="user" %}
234
234
  Form completed with all required fields.
@@ -16,7 +16,7 @@ A fully interactive form demonstrating all Markform v0.1 field types.
16
16
  Fill all fields using interactive prompts - no LLM API key needed.
17
17
  {% /description %}
18
18
 
19
- {% field-group id="basic_fields" title="Basic Fields" %}
19
+ {% group id="basic_fields" title="Basic Fields" %}
20
20
 
21
21
  {% field kind="string" id="name" label="Name" maxLength=50 minLength=2 required=true role="user" placeholder="Enter your name" examples=["John Smith", "Jane Doe"] %}
22
22
  ```value
@@ -50,9 +50,9 @@ test@example.com
50
50
  Enter a score between 0 and 100 (optional).
51
51
  {% /instructions %}
52
52
 
53
- {% /field-group %}
53
+ {% /group %}
54
54
 
55
- {% field-group id="list_fields" title="List Fields" %}
55
+ {% group id="list_fields" title="List Fields" %}
56
56
 
57
57
  {% field kind="string_list" id="tags" itemMinLength=2 label="Tags" maxItems=5 minItems=1 required=true role="user" uniqueItems=true %}
58
58
  ```value
@@ -65,9 +65,9 @@ testing
65
65
  Add 1-5 unique tags (each at least 2 characters).
66
66
  {% /instructions %}
67
67
 
68
- {% /field-group %}
68
+ {% /group %}
69
69
 
70
- {% field-group id="selection_fields" title="Selection Fields" %}
70
+ {% group id="selection_fields" title="Selection Fields" %}
71
71
 
72
72
  {% field kind="single_select" id="priority" label="Priority" required=true role="user" %}
73
73
  - [ ] Low {% #low %}
@@ -82,9 +82,9 @@ Add 1-5 unique tags (each at least 2 characters).
82
82
  - [ ] DevOps {% #devops %}
83
83
  {% /field %}
84
84
 
85
- {% /field-group %}
85
+ {% /group %}
86
86
 
87
- {% field-group id="checkbox_fields" title="Checkbox Fields" %}
87
+ {% group id="checkbox_fields" title="Checkbox Fields" %}
88
88
 
89
89
  {% field kind="checkboxes" id="tasks_multi" label="Tasks (Multi Mode)" required=true role="user" %}
90
90
  - [x] Research {% #research %}
@@ -111,9 +111,9 @@ Track task progress. All must reach done or na state to complete.
111
111
  Answer yes or no for each confirmation. All must be explicitly answered.
112
112
  {% /instructions %}
113
113
 
114
- {% /field-group %}
114
+ {% /group %}
115
115
 
116
- {% field-group id="url_fields" title="URL Fields" %}
116
+ {% group id="url_fields" title="URL Fields" %}
117
117
 
118
118
  {% field kind="url" id="website" label="Website" required=true role="user" placeholder="https://example.com" examples=["https://github.com/user/repo", "https://company.com"] %}
119
119
  ```value
@@ -135,9 +135,9 @@ https://docs.example.com
135
135
  Add 1-5 unique reference URLs for sources or documentation.
136
136
  {% /instructions %}
137
137
 
138
- {% /field-group %}
138
+ {% /group %}
139
139
 
140
- {% field-group id="date_fields" title="Date and Year Fields" %}
140
+ {% group id="date_fields" title="Date and Year Fields" %}
141
141
 
142
142
  {% field kind="date" id="event_date" label="Event Date" max="2030-12-31" min="2020-01-01" required=true role="user" %}
143
143
  ```value
@@ -159,9 +159,9 @@ Enter the event date (YYYY-MM-DD format, between 2020 and 2030).
159
159
  Enter the year the company was founded (1900-2030).
160
160
  {% /instructions %}
161
161
 
162
- {% /field-group %}
162
+ {% /group %}
163
163
 
164
- {% field-group id="table_fields" title="Table Fields" %}
164
+ {% group id="table_fields" title="Table Fields" %}
165
165
 
166
166
  {% field kind="table" id="team_members" label="Team Members" role="user" minRows=0 maxRows=5 state="skipped"
167
167
  columnIds=["name", "role", "start_date"]
@@ -185,9 +185,9 @@ Add team members with their name (required), role, and start date.
185
185
  Optionally add project tasks with estimated hours and reference links.
186
186
  {% /instructions %}
187
187
 
188
- {% /field-group %}
188
+ {% /group %}
189
189
 
190
- {% field-group id="optional_fields" title="Optional Fields" %}
190
+ {% group id="optional_fields" title="Optional Fields" %}
191
191
 
192
192
  {% field kind="string" id="notes" label="Notes" role="user" state="skipped" %}
193
193
  ```value
@@ -223,7 +223,7 @@ Optionally add a date (YYYY-MM-DD format).
223
223
  Optionally add a year.
224
224
  {% /instructions %}
225
225
 
226
- {% /field-group %}
226
+ {% /group %}
227
227
 
228
228
  {% note id="note-summary" ref="simple_test" role="user" %}
229
229
  All required fields completed successfully. Optional fields skipped.
@@ -119,7 +119,7 @@ turns:
119
119
  test: na
120
120
  after:
121
121
  required_issue_count: 2
122
- markdown_sha256: b5b261b437d0ea9762f342d8a6e1f44ece1b1f0ae0bd4a8709e8ba84625ecae3
122
+ markdown_sha256: 98edeadbe7f13a66bbbb2eb660b41b1166b47142f686c7a1a4a618fd9951f68e
123
123
  answered_field_count: 10
124
124
  skipped_field_count: 0
125
125
  - turn: 2
@@ -229,7 +229,7 @@ turns:
229
229
  reason: No value in mock form
230
230
  after:
231
231
  required_issue_count: 0
232
- markdown_sha256: 943a9dac5094e295b53bd4cf38733fcff32e4311b6e308d5904199f4898d4f5d
232
+ markdown_sha256: f39ae403b311654c33b561f84cd34fb915183b3c8bbc927349eab04d5cb86669
233
233
  answered_field_count: 13
234
234
  skipped_field_count: 7
235
235
  - turn: 3
@@ -249,7 +249,7 @@ turns:
249
249
  reason: No value in mock form
250
250
  after:
251
251
  required_issue_count: 0
252
- markdown_sha256: e19d2e529bceab1dc64310fe2a75d70d062fa060230d7109eb541766c0a0f4e5
252
+ markdown_sha256: bf3ef66b8ecce59b75618d931a8ec0f9ef9b6b9f96321ed73646ff47eb9a9841
253
253
  answered_field_count: 13
254
254
  skipped_field_count: 8
255
255
  final:
@@ -16,7 +16,7 @@ A fully interactive form demonstrating all Markform v0.1 field types.
16
16
  Fill all fields using interactive prompts - no LLM API key needed.
17
17
  {% /description %}
18
18
 
19
- {% field-group id="basic_fields" title="Basic Fields" %}
19
+ {% group id="basic_fields" title="Basic Fields" %}
20
20
 
21
21
  {% field kind="string" id="name" label="Name" role="user" required=true minLength=2 maxLength=50 placeholder="Enter your name" examples=["John Smith", "Jane Doe"] %}{% /field %}
22
22
 
@@ -34,9 +34,9 @@ Enter your full name (2-50 characters).
34
34
  Enter a score between 0 and 100 (optional).
35
35
  {% /instructions %}
36
36
 
37
- {% /field-group %}
37
+ {% /group %}
38
38
 
39
- {% field-group id="list_fields" title="List Fields" %}
39
+ {% group id="list_fields" title="List Fields" %}
40
40
 
41
41
  {% field kind="string_list" id="tags" label="Tags" role="user" required=true minItems=1 maxItems=5 itemMinLength=2 uniqueItems=true %}{% /field %}
42
42
 
@@ -44,9 +44,9 @@ Enter a score between 0 and 100 (optional).
44
44
  Add 1-5 unique tags (each at least 2 characters).
45
45
  {% /instructions %}
46
46
 
47
- {% /field-group %}
47
+ {% /group %}
48
48
 
49
- {% field-group id="selection_fields" title="Selection Fields" %}
49
+ {% group id="selection_fields" title="Selection Fields" %}
50
50
 
51
51
  {% field kind="single_select" id="priority" label="Priority" role="user" required=true %}
52
52
  - [ ] Low {% #low %}
@@ -61,9 +61,9 @@ Add 1-5 unique tags (each at least 2 characters).
61
61
  - [ ] DevOps {% #devops %}
62
62
  {% /field %}
63
63
 
64
- {% /field-group %}
64
+ {% /group %}
65
65
 
66
- {% field-group id="checkbox_fields" title="Checkbox Fields" %}
66
+ {% group id="checkbox_fields" title="Checkbox Fields" %}
67
67
 
68
68
  {% field kind="checkboxes" id="tasks_multi" label="Tasks (Multi Mode)" role="user" checkboxMode="multi" required=true %}
69
69
  - [ ] Research {% #research %}
@@ -90,9 +90,9 @@ Track task progress. All must reach done or na state to complete.
90
90
  Answer yes or no for each confirmation. All must be explicitly answered.
91
91
  {% /instructions %}
92
92
 
93
- {% /field-group %}
93
+ {% /group %}
94
94
 
95
- {% field-group id="url_fields" title="URL Fields" %}
95
+ {% group id="url_fields" title="URL Fields" %}
96
96
 
97
97
  {% field kind="url" id="website" label="Website" role="user" required=true placeholder="https://example.com" examples=["https://github.com/user/repo", "https://company.com"] %}{% /field %}
98
98
 
@@ -106,9 +106,9 @@ Enter your website URL (must be http or https).
106
106
  Add 1-5 unique reference URLs for sources or documentation.
107
107
  {% /instructions %}
108
108
 
109
- {% /field-group %}
109
+ {% /group %}
110
110
 
111
- {% field-group id="date_fields" title="Date and Year Fields" %}
111
+ {% group id="date_fields" title="Date and Year Fields" %}
112
112
 
113
113
  {% field kind="date" id="event_date" label="Event Date" role="user" required=true min="2020-01-01" max="2030-12-31" %}{% /field %}
114
114
 
@@ -122,9 +122,9 @@ Enter the event date (YYYY-MM-DD format, between 2020 and 2030).
122
122
  Enter the year the company was founded (1900-2030).
123
123
  {% /instructions %}
124
124
 
125
- {% /field-group %}
125
+ {% /group %}
126
126
 
127
- {% field-group id="table_fields" title="Table Fields" %}
127
+ {% group id="table_fields" title="Table Fields" %}
128
128
 
129
129
  {% field kind="table" id="team_members" label="Team Members" role="user" minRows=0 maxRows=5
130
130
  columnIds=["name", "role", "start_date"]
@@ -148,9 +148,9 @@ Add team members with their name (required), role, and start date.
148
148
  Optionally add project tasks with estimated hours and reference links.
149
149
  {% /instructions %}
150
150
 
151
- {% /field-group %}
151
+ {% /group %}
152
152
 
153
- {% field-group id="optional_fields" title="Optional Fields" %}
153
+ {% group id="optional_fields" title="Optional Fields" %}
154
154
 
155
155
  {% field kind="string" id="notes" label="Notes" role="user" %}{% /field %}
156
156
 
@@ -178,6 +178,6 @@ Optionally add a date (YYYY-MM-DD format).
178
178
  Optionally add a year.
179
179
  {% /instructions %}
180
180
 
181
- {% /field-group %}
181
+ {% /group %}
182
182
 
183
183
  {% /form %}
@@ -120,7 +120,7 @@ turns:
120
120
  test: na
121
121
  after:
122
122
  required_issue_count: 2
123
- markdown_sha256: 7fc247f84777187aa022f4bf0cb025c04e6ee8e73bb413ad4c728047e8cbed9b
123
+ markdown_sha256: e2bc5c169fc2650828ad870267eeb83c2ed4a219afb38570c5004e753260290d
124
124
  answered_field_count: 10
125
125
  skipped_field_count: 0
126
126
  - turn: 2
@@ -229,7 +229,7 @@ turns:
229
229
  value: 87.5
230
230
  after:
231
231
  required_issue_count: 0
232
- markdown_sha256: 8c529f28855c70aa19516b8a3a92c65257ac345c6d69a012eb2a7a23924e0df6
232
+ markdown_sha256: e508fd266c842961a1fae7cd203be0ab529c71c8c3565d76ca766256ebe4fb44
233
233
  answered_field_count: 16
234
234
  skipped_field_count: 4
235
235
  - turn: 3
@@ -254,7 +254,7 @@ turns:
254
254
  start_date: 2023-06-01
255
255
  after:
256
256
  required_issue_count: 0
257
- markdown_sha256: f6d569e6129fbba845a0758cf88ffc1d28ead5762e9993ad7743c3ad62443a2f
257
+ markdown_sha256: 0835d5fb6a05a52885e3200fa55584981e73dcd801c05405ddc341d60bdc8b91
258
258
  answered_field_count: 17
259
259
  skipped_field_count: 4
260
260
  final:
@@ -31,7 +31,7 @@ markform:
31
31
  A comprehensive research form for gathering intelligence on startups including company basics, founders, funding, competitors, social media presence, and community signals.
32
32
  {% /description %}
33
33
 
34
- {% field-group id="user_input" title="Company to Research" %}
34
+ {% group id="user_input" title="Company to Research" %}
35
35
 
36
36
  {% field kind="string" id="company_name" label="Company Name" role="user" required=true minLength=1 maxLength=200 %}{% /field %}
37
37
 
@@ -53,9 +53,9 @@ Optional but helpful: Include any details or sources you already have to aid res
53
53
  The more context you provide, the more accurate and relevant the research will be.
54
54
  {% /instructions %}
55
55
 
56
- {% /field-group %}
56
+ {% /group %}
57
57
 
58
- {% field-group id="basic_info" title="Company Overview" %}
58
+ {% group id="basic_info" title="Company Overview" %}
59
59
 
60
60
  {% field kind="string" id="website" label="Website URL" %}{% /field %}
61
61
 
@@ -112,9 +112,9 @@ Source: Company website About page, crunchbase.com, Wikipedia if notable.
112
112
  URLs used as sources for this section. One URL per line.
113
113
  {% /instructions %}
114
114
 
115
- {% /field-group %}
115
+ {% /group %}
116
116
 
117
- {% field-group id="founders_section" title="Founders & Key People" %}
117
+ {% group id="founders_section" title="Founders & Key People" %}
118
118
 
119
119
  {% description ref="founders_section" %}
120
120
  List up to 4 founders/co-founders. Leave unused slots empty.
@@ -151,9 +151,9 @@ Brief background: prior companies, notable roles, education.
151
151
  URLs used as sources for this section. One URL per line.
152
152
  {% /instructions %}
153
153
 
154
- {% /field-group %}
154
+ {% /group %}
155
155
 
156
- {% field-group id="funding_section" title="Funding History" %}
156
+ {% group id="funding_section" title="Funding History" %}
157
157
 
158
158
  {% field kind="string" id="total_funding" label="Total Funding Raised" %}{% /field %}
159
159
 
@@ -188,9 +188,9 @@ Source: crunchbase.com funding rounds, pitchbook.com, techcrunch.com, company pr
188
188
  URLs used as sources for this section. One URL per line.
189
189
  {% /instructions %}
190
190
 
191
- {% /field-group %}
191
+ {% /group %}
192
192
 
193
- {% field-group id="competitors_section" title="Competitors & Market Position" %}
193
+ {% group id="competitors_section" title="Competitors & Market Position" %}
194
194
 
195
195
  {% field kind="string" id="market_category" label="Market Category" %}{% /field %}
196
196
 
@@ -225,9 +225,9 @@ Source: Company website, product pages, press interviews, g2.com reviews.
225
225
  URLs used as sources for this section. One URL per line.
226
226
  {% /instructions %}
227
227
 
228
- {% /field-group %}
228
+ {% /group %}
229
229
 
230
- {% field-group id="social_media_section" title="Social Media Presence" %}
230
+ {% group id="social_media_section" title="Social Media Presence" %}
231
231
 
232
232
  {% description ref="social_media_section" %}
233
233
  Search each platform directly for official company accounts. Note follower counts and activity level.
@@ -299,9 +299,9 @@ Source: Search reddit.com for company name, check for official subreddit.
299
299
  URLs used as sources for this section. One URL per line.
300
300
  {% /instructions %}
301
301
 
302
- {% /field-group %}
302
+ {% /group %}
303
303
 
304
- {% field-group id="hacker_news_section" title="Hacker News Presence" %}
304
+ {% group id="hacker_news_section" title="Hacker News Presence" %}
305
305
 
306
306
  {% field kind="table" id="hn_posts" label="Notable Hacker News Posts" minRows=0 maxRows=5
307
307
  columnIds=["title", "date", "points", "comments", "url"]
@@ -322,9 +322,9 @@ Source: Search hn.algolia.com for company name, product name, and founder names.
322
322
  URLs used as sources for this section. One URL per line.
323
323
  {% /instructions %}
324
324
 
325
- {% /field-group %}
325
+ {% /group %}
326
326
 
327
- {% field-group id="product_hunt_section" title="Product Hunt Presence" %}
327
+ {% group id="product_hunt_section" title="Product Hunt Presence" %}
328
328
 
329
329
  {% field kind="table" id="ph_launches" label="Product Hunt Launches"
330
330
  columnIds=["product_name", "date", "upvotes", "badges", "url"]
@@ -344,9 +344,9 @@ Source: Search producthunt.com for company name and product names.
344
344
  URLs used as sources for this section. One URL per line.
345
345
  {% /instructions %}
346
346
 
347
- {% /field-group %}
347
+ {% /group %}
348
348
 
349
- {% field-group id="deep_intel_section" title="Deep Intelligence Sources" %}
349
+ {% group id="deep_intel_section" title="Deep Intelligence Sources" %}
350
350
 
351
351
  {% description ref="deep_intel_section" %}
352
352
  Alternative sources for deeper startup intelligence beyond standard databases.
@@ -439,9 +439,9 @@ Source: web.archive.org - search for company domain, review snapshots from diffe
439
439
  URLs used as sources for this section. One URL per line.
440
440
  {% /instructions %}
441
441
 
442
- {% /field-group %}
442
+ {% /group %}
443
443
 
444
- {% field-group id="press_section" title="Notable Press Coverage" %}
444
+ {% group id="press_section" title="Notable Press Coverage" %}
445
445
 
446
446
  {% field kind="table" id="press_coverage" label="Press Articles" minRows=0 maxRows=5
447
447
  columnIds=["title", "publication", "date", "url"]
@@ -462,9 +462,9 @@ Source: techcrunch.com, theinformation.com, bloomberg.com, forbes.com, wired.com
462
462
  URLs used as sources for this section. One URL per line.
463
463
  {% /instructions %}
464
464
 
465
- {% /field-group %}
465
+ {% /group %}
466
466
 
467
- {% field-group id="sources_section" title="Research Metadata" %}
467
+ {% group id="sources_section" title="Research Metadata" %}
468
468
 
469
469
  {% field kind="date" id="research_date" label="Research Date" required=true %}{% /field %}
470
470
 
@@ -478,6 +478,6 @@ Date this research was conducted. Important for tracking data freshness.
478
478
  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").
479
479
  {% /instructions %}
480
480
 
481
- {% /field-group %}
481
+ {% /group %}
482
482
 
483
483
  {% /form %}
@@ -41,7 +41,7 @@ The user provides the company name, and the agent researches and fills all remai
41
41
  - Tech news publications
42
42
  {% /documentation %}
43
43
 
44
- {% field-group id="basic_info" title="Company Information" %}
44
+ {% group id="basic_info" title="Company Information" %}
45
45
 
46
46
  {% field kind="string" id="company_name" label="Company Name" role="user" required=true minLength=2 maxLength=200 %}
47
47
  ```value
@@ -103,9 +103,9 @@ Anthropic is an AI safety company focused on building reliable, interpretable, a
103
103
  Brief description of what the company does. 100-200 words max.
104
104
  {% /instructions %}
105
105
 
106
- {% /field-group %}
106
+ {% /group %}
107
107
 
108
- {% field-group id="funding_info" title="Funding Information" %}
108
+ {% group id="funding_info" title="Funding Information" %}
109
109
 
110
110
  {% field kind="string" id="total_funding" label="Total Funding Raised" pattern="^\\$[0-9]+(\\.[0-9]+)?(K|M|B)?$" %}
111
111
  ```value
@@ -162,9 +162,9 @@ https://techcrunch.com/2023/09/25/amazon-to-invest-up-to-4-billion-in-anthropic/
162
162
  URLs to press releases or articles about funding rounds.
163
163
  {% /instructions %}
164
164
 
165
- {% /field-group %}
165
+ {% /group %}
166
166
 
167
- {% field-group id="people" title="Key People" %}
167
+ {% group id="people" title="Key People" %}
168
168
 
169
169
  {% field kind="string" id="ceo" label="CEO / Founder" %}
170
170
  ```value
@@ -210,9 +210,9 @@ List all founders, one per line.
210
210
  Approximate number of employees.
211
211
  {% /instructions %}
212
212
 
213
- {% /field-group %}
213
+ {% /group %}
214
214
 
215
- {% field-group id="market_info" title="Market & Industry" %}
215
+ {% group id="market_info" title="Market & Industry" %}
216
216
 
217
217
  {% field kind="multi_select" id="industry_sectors" label="Industry Sectors" minSelections=1 maxSelections=5 %}
218
218
  - [x] AI/ML {% #ai_ml %}
@@ -253,9 +253,9 @@ https://mistral.ai
253
253
  Website URLs of main competitors.
254
254
  {% /instructions %}
255
255
 
256
- {% /field-group %}
256
+ {% /group %}
257
257
 
258
- {% field-group id="press_coverage" title="Press & Coverage" %}
258
+ {% group id="press_coverage" title="Press & Coverage" %}
259
259
 
260
260
  {% field kind="url_list" id="press_articles" label="Press Coverage URLs" minItems=1 maxItems=10 uniqueItems=true %}
261
261
  ```value
@@ -285,9 +285,9 @@ Crunchbase company profile URL.
285
285
  PitchBook company profile URL if available.
286
286
  {% /instructions %}
287
287
 
288
- {% /field-group %}
288
+ {% /group %}
289
289
 
290
- {% field-group id="sources_section" title="Research Sources" %}
290
+ {% group id="sources_section" title="Research Sources" %}
291
291
 
292
292
  {% field kind="url_list" id="sources" label="Source URLs" minItems=1 uniqueItems=true %}
293
293
  ```value
@@ -302,6 +302,6 @@ https://en.wikipedia.org/wiki/Anthropic
302
302
  List all source URLs used for this research. Include Crunchbase, company website, and any additional sources consulted.
303
303
  {% /instructions %}
304
304
 
305
- {% /field-group %}
305
+ {% /group %}
306
306
 
307
307
  {% /form %}
@@ -41,7 +41,7 @@ The user provides the company name, and the agent researches and fills all remai
41
41
  - Tech news publications
42
42
  {% /documentation %}
43
43
 
44
- {% field-group id="basic_info" title="Company Information" %}
44
+ {% group id="basic_info" title="Company Information" %}
45
45
 
46
46
  {% field kind="string" id="company_name" label="Company Name" role="user" required=true minLength=2 maxLength=200 %}{% /field %}
47
47
 
@@ -79,9 +79,9 @@ Format: City, State/Country (e.g., "San Francisco, California")
79
79
  Brief description of what the company does. 100-200 words max.
80
80
  {% /instructions %}
81
81
 
82
- {% /field-group %}
82
+ {% /group %}
83
83
 
84
- {% field-group id="funding_info" title="Funding Information" %}
84
+ {% group id="funding_info" title="Funding Information" %}
85
85
 
86
86
  {% field kind="string" id="total_funding" label="Total Funding Raised" pattern="^\\$[0-9]+(\\.[0-9]+)?(K|M|B)?$" %}{% /field %}
87
87
 
@@ -117,9 +117,9 @@ List notable investors (VCs, angels), one per line.
117
117
  URLs to press releases or articles about funding rounds.
118
118
  {% /instructions %}
119
119
 
120
- {% /field-group %}
120
+ {% /group %}
121
121
 
122
- {% field-group id="people" title="Key People" %}
122
+ {% group id="people" title="Key People" %}
123
123
 
124
124
  {% field kind="string" id="ceo" label="CEO / Founder" %}{% /field %}
125
125
 
@@ -145,9 +145,9 @@ List all founders, one per line.
145
145
  Approximate number of employees.
146
146
  {% /instructions %}
147
147
 
148
- {% /field-group %}
148
+ {% /group %}
149
149
 
150
- {% field-group id="market_info" title="Market & Industry" %}
150
+ {% group id="market_info" title="Market & Industry" %}
151
151
 
152
152
  {% field kind="multi_select" id="industry_sectors" label="Industry Sectors" minSelections=1 maxSelections=5 %}
153
153
  - [ ] AI/ML {% #ai_ml %}
@@ -174,9 +174,9 @@ List main competitors, one per line.
174
174
  Website URLs of main competitors.
175
175
  {% /instructions %}
176
176
 
177
- {% /field-group %}
177
+ {% /group %}
178
178
 
179
- {% field-group id="press_coverage" title="Press & Coverage" %}
179
+ {% group id="press_coverage" title="Press & Coverage" %}
180
180
 
181
181
  {% field kind="url_list" id="press_articles" label="Press Coverage URLs" minItems=1 maxItems=10 uniqueItems=true %}{% /field %}
182
182
 
@@ -196,9 +196,9 @@ Crunchbase company profile URL.
196
196
  PitchBook company profile URL if available.
197
197
  {% /instructions %}
198
198
 
199
- {% /field-group %}
199
+ {% /group %}
200
200
 
201
- {% field-group id="sources_section" title="Research Sources" %}
201
+ {% group id="sources_section" title="Research Sources" %}
202
202
 
203
203
  {% field kind="url_list" id="sources" label="Source URLs" minItems=1 uniqueItems=true %}{% /field %}
204
204
 
@@ -206,6 +206,6 @@ PitchBook company profile URL if available.
206
206
  List all source URLs used for this research. Include Crunchbase, company website, and any additional sources consulted.
207
207
  {% /instructions %}
208
208
 
209
- {% /field-group %}
209
+ {% /group %}
210
210
 
211
211
  {% /form %}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "markform",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Markdown forms for token-friendly workflows",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "author": "Joshua Levy",