markform 0.1.9 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/dist/ai-sdk.d.mts +1 -1
- package/dist/ai-sdk.mjs +3 -3
- package/dist/{apply-B2kt6C2z.mjs → apply-yfRtNIHc.mjs} +405 -334
- package/dist/bin.mjs +1 -1
- package/dist/{cli-Dt_PlYi_.mjs → cli-Dtjcg98Y.mjs} +57 -45
- package/dist/cli.mjs +1 -1
- package/dist/{coreTypes-JCPm418M.d.mts → coreTypes-Cw_cJsa5.d.mts} +30 -30
- package/dist/{coreTypes-B1oI7qvV.mjs → coreTypes-Z8SvQyoL.mjs} +6 -6
- package/dist/index.d.mts +182 -11
- package/dist/index.mjs +5 -5
- package/dist/{session-CzCh6JeY.mjs → session-BJe-hei3.mjs} +1 -1
- package/dist/{session-Dxqwt0RC.mjs → session-DX-DvjRP.mjs} +5 -5
- package/dist/{src-DFsC5wwy.mjs → src-ozWOSQTW.mjs} +150 -129
- package/docs/markform-apis.md +25 -2
- package/docs/markform-spec.md +101 -50
- package/examples/movie-research/movie-deep-research-mock-filled.form.md +601 -0
- package/examples/rejection-test/rejection-test.session.yaml +4 -4
- package/examples/simple/simple-mock-filled.schema.json +20 -16
- package/examples/simple/simple-skipped-filled.schema.json +20 -16
- package/examples/simple/simple-with-skips.session.yaml +17 -17
- package/examples/simple/simple.schema.json +20 -16
- package/examples/simple/simple.session.yaml +19 -19
- package/examples/startup-deep-research/startup-deep-research.form.md +21 -36
- package/examples/startup-research/startup-research.form.md +34 -33
- package/package.json +1 -1
|
@@ -106,38 +106,33 @@ Format: $X.XB, $XXM, or $XXK (e.g., "$10B")
|
|
|
106
106
|
- [ ] Public {% #public %}
|
|
107
107
|
{% /field %}
|
|
108
108
|
|
|
109
|
-
{% field kind="
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
{%
|
|
109
|
+
{% field kind="table" id="funding_rounds" label="Funding Rounds"
|
|
110
|
+
columnIds=["round_type", "date", "amount", "lead_investors", "source_url"]
|
|
111
|
+
columnTypes=["string", "string", "string", "string", "url"]
|
|
112
|
+
minRows=0 maxRows=10 %}
|
|
113
|
+
| Round Type | Date | Amount | Lead Investor(s) | Source URL |
|
|
114
|
+
|------------|------|--------|------------------|------------|
|
|
115
|
+
{% /field %}
|
|
116
116
|
|
|
117
|
-
{% instructions ref="
|
|
118
|
-
|
|
117
|
+
{% instructions ref="funding_rounds" %}
|
|
118
|
+
List funding rounds, most recent first. Date format: YYYY-MM.
|
|
119
|
+
Example: Series B | 2023-06 | $50M | Sequoia Capital | https://techcrunch.com/...
|
|
119
120
|
{% /instructions %}
|
|
120
121
|
|
|
121
122
|
{% /group %}
|
|
122
123
|
|
|
123
124
|
{% group id="people" title="Key People" %}
|
|
124
125
|
|
|
125
|
-
{% field kind="
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
{%
|
|
132
|
-
|
|
133
|
-
{% instructions ref="ceo_linkedin" %}
|
|
134
|
-
LinkedIn profile URL of the CEO/founder.
|
|
135
|
-
{% /instructions %}
|
|
136
|
-
|
|
137
|
-
{% field kind="string_list" id="founders" label="Founders" maxItems=5 %}{% /field %}
|
|
126
|
+
{% field kind="table" id="founders" label="Founders"
|
|
127
|
+
columnIds=["name", "title", "linkedin"]
|
|
128
|
+
columnTypes=["string", "string", "url"]
|
|
129
|
+
minRows=1 maxRows=5 %}
|
|
130
|
+
| Name | Title | LinkedIn URL |
|
|
131
|
+
|------|-------|--------------|
|
|
132
|
+
{% /field %}
|
|
138
133
|
|
|
139
134
|
{% instructions ref="founders" %}
|
|
140
|
-
List
|
|
135
|
+
List founders and co-founders. Include name, current title, and LinkedIn profile URL.
|
|
141
136
|
{% /instructions %}
|
|
142
137
|
|
|
143
138
|
{% field kind="number" id="employee_count" label="Employee Count" min=1 integer=true %}{% /field %}
|
|
@@ -163,26 +158,32 @@ Approximate number of employees.
|
|
|
163
158
|
- [ ] Other {% #other %}
|
|
164
159
|
{% /field %}
|
|
165
160
|
|
|
166
|
-
{% field kind="
|
|
161
|
+
{% field kind="table" id="competitors" label="Key Competitors"
|
|
162
|
+
columnIds=["company_name", "website", "one_liner"]
|
|
163
|
+
columnTypes=["string", "url", "string"]
|
|
164
|
+
minRows=0 maxRows=5 %}
|
|
165
|
+
| Company Name | Website | One-liner |
|
|
166
|
+
|--------------|---------|-----------|
|
|
167
|
+
{% /field %}
|
|
167
168
|
|
|
168
169
|
{% instructions ref="competitors" %}
|
|
169
|
-
List main competitors
|
|
170
|
-
{% /instructions %}
|
|
171
|
-
|
|
172
|
-
{% field kind="url_list" id="competitor_urls" label="Competitor Website URLs" maxItems=5 uniqueItems=true %}{% /field %}
|
|
173
|
-
|
|
174
|
-
{% instructions ref="competitor_urls" %}
|
|
175
|
-
Website URLs of main competitors.
|
|
170
|
+
List main competitors with their website and a brief description.
|
|
176
171
|
{% /instructions %}
|
|
177
172
|
|
|
178
173
|
{% /group %}
|
|
179
174
|
|
|
180
175
|
{% group id="press_coverage" title="Press & Coverage" %}
|
|
181
176
|
|
|
182
|
-
{% field kind="
|
|
177
|
+
{% field kind="table" id="press_articles" label="Press Coverage"
|
|
178
|
+
columnIds=["title", "publication", "date", "url"]
|
|
179
|
+
columnTypes=["string", "string", "date", "url"]
|
|
180
|
+
minRows=1 maxRows=10 %}
|
|
181
|
+
| Title | Publication | Date | URL |
|
|
182
|
+
|-------|-------------|------|-----|
|
|
183
|
+
{% /field %}
|
|
183
184
|
|
|
184
185
|
{% instructions ref="press_articles" %}
|
|
185
|
-
|
|
186
|
+
Notable press articles, reviews, or coverage about the company.
|
|
186
187
|
{% /instructions %}
|
|
187
188
|
|
|
188
189
|
{% field kind="url" id="crunchbase_url" label="Crunchbase Profile" %}{% /field %}
|