markform 0.1.11 → 0.1.13

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.
@@ -45,9 +45,9 @@ turns:
45
45
  - score
46
46
  - votes
47
47
  after:
48
- required_issue_count: 2
49
- markdown_sha256: 4edc8e8f1e858aafa657f32e1c2e56c4bfbe93b37224e1010eb6883c111e1c86
50
- answered_field_count: 0
48
+ required_issue_count: 1
49
+ markdown_sha256: 6dea4cae87738069d3c212e817ac7a59a77fcd3c78d7fac506adf4f5b36caf27
50
+ answered_field_count: 1
51
51
  skipped_field_count: 0
52
52
  context:
53
53
  system_prompt: |-
@@ -125,7 +125,7 @@ turns:
125
125
  Type: table
126
126
  Columns: source, score, votes
127
127
  Rows: min: 1, max: 5
128
- Set: { op: "set_table", fieldId: "ratings", rows: [{ "source": "...", "score": "...", "votes": "..." }, ...] }
128
+ Set: { op: "set_table", fieldId: "ratings", value: [{ "source": "...", "score": "...", "votes": "..." }, ...] }
129
129
  This field is required.
130
130
 
131
131
  - **title** (field): Required field "Title" is empty
@@ -215,7 +215,7 @@ turns:
215
215
  Type: table
216
216
  Columns: source, score, votes
217
217
  Rows: min: 1, max: 5
218
- Set: { op: "set_table", fieldId: "ratings", rows: [{ "source": "...", "score": "...", "votes": "..." }, ...] }
218
+ Set: { op: "set_table", fieldId: "ratings", value: [{ "source": "...", "score": "...", "votes": "..." }, ...] }
219
219
  This field is required.
220
220
 
221
221
  - **title** (field): Required field "Title" is empty
@@ -238,7 +238,7 @@ turns:
238
238
  properties:
239
239
  patches:
240
240
  description: Array of patches to apply to the form
241
- value:
241
+ items:
242
242
  $ref: '#/$defs/patch'
243
243
  type: array
244
244
  required:
@@ -270,12 +270,6 @@ turns:
270
270
  message: Required field "Ratings" is empty
271
271
  severity: required
272
272
  priority: 1
273
- - ref: title
274
- scope: field
275
- reason: required_missing
276
- message: Required field "Title" is empty
277
- severity: required
278
- priority: 1
279
273
  apply:
280
274
  patches:
281
275
  - op: set_table
@@ -287,9 +281,6 @@ turns:
287
281
  - source: Rotten Tomatoes
288
282
  score: 92
289
283
  votes: 450
290
- - op: set_string
291
- field_id: title
292
- value: Test Movie
293
284
  after:
294
285
  required_issue_count: 0
295
286
  markdown_sha256: f45e7cd87b036d57564e3340dec33c1dc5c2094d880e52b903f64da19b3b8ec0
@@ -331,7 +322,7 @@ turns:
331
322
 
332
323
  - **Error:** Cannot apply set_string to table field "ratings"
333
324
  **Correction:** This field is type "table". Use set_table instead.
334
- **Correct format:** { op: "set_table", fieldId: "ratings", rows: [{ "source": "...", "score": "...", "votes": "..." }, ...] }
325
+ **Correct format:** { op: "set_table", fieldId: "ratings", value: [{ "source": "...", "score": "...", "votes": "..." }, ...] }
335
326
 
336
327
  # Current Form State
337
328
 
@@ -362,7 +353,11 @@ turns:
362
353
  Enter rating data with source name, score (0-100), and vote count.
363
354
  {% /instructions %}
364
355
 
365
- {% field kind="string" id="title" label="Title" required=true %}{% /field %}
356
+ {% field kind="string" id="title" label="Title" required=true %}
357
+ ```value
358
+ Test Movie
359
+ ```
360
+ {% /field %}
366
361
 
367
362
  {% /group %}
368
363
 
@@ -372,20 +367,14 @@ turns:
372
367
 
373
368
  # Current Form Issues
374
369
 
375
- You need to address 2 issues. Here are the current issues:
370
+ You need to address 1 issue. Here are the current issues:
376
371
 
377
372
  - **ratings** (field): Required field "Ratings" is empty
378
373
  Severity: required, Priority: P1
379
374
  Type: table
380
375
  Columns: source, score, votes
381
376
  Rows: min: 1, max: 5
382
- Set: { op: "set_table", fieldId: "ratings", rows: [{ "source": "...", "score": "...", "votes": "..." }, ...] }
383
- This field is required.
384
-
385
- - **title** (field): Required field "Title" is empty
386
- Severity: required, Priority: P1
387
- Type: string
388
- Set: { op: "set_string", fieldId: "title", value: "..." }
377
+ Set: { op: "set_table", fieldId: "ratings", value: [{ "source": "...", "score": "...", "votes": "..." }, ...] }
389
378
  This field is required.
390
379
 
391
380
  # General Instructions
@@ -429,7 +418,7 @@ turns:
429
418
 
430
419
  - **Error:** Cannot apply set_string to table field "ratings"
431
420
  **Correction:** This field is type "table". Use set_table instead.
432
- **Correct format:** { op: "set_table", fieldId: "ratings", rows: [{ "source": "...", "score": "...", "votes": "..." }, ...] }
421
+ **Correct format:** { op: "set_table", fieldId: "ratings", value: [{ "source": "...", "score": "...", "votes": "..." }, ...] }
433
422
 
434
423
  # Current Form State
435
424
 
@@ -460,7 +449,11 @@ turns:
460
449
  Enter rating data with source name, score (0-100), and vote count.
461
450
  {% /instructions %}
462
451
 
463
- {% field kind="string" id="title" label="Title" required=true %}{% /field %}
452
+ {% field kind="string" id="title" label="Title" required=true %}
453
+ ```value
454
+ Test Movie
455
+ ```
456
+ {% /field %}
464
457
 
465
458
  {% /group %}
466
459
 
@@ -470,20 +463,14 @@ turns:
470
463
 
471
464
  # Current Form Issues
472
465
 
473
- You need to address 2 issues. Here are the current issues:
466
+ You need to address 1 issue. Here are the current issues:
474
467
 
475
468
  - **ratings** (field): Required field "Ratings" is empty
476
469
  Severity: required, Priority: P1
477
470
  Type: table
478
471
  Columns: source, score, votes
479
472
  Rows: min: 1, max: 5
480
- Set: { op: "set_table", fieldId: "ratings", rows: [{ "source": "...", "score": "...", "votes": "..." }, ...] }
481
- This field is required.
482
-
483
- - **title** (field): Required field "Title" is empty
484
- Severity: required, Priority: P1
485
- Type: string
486
- Set: { op: "set_string", fieldId: "title", value: "..." }
473
+ Set: { op: "set_table", fieldId: "ratings", value: [{ "source": "...", "score": "...", "votes": "..." }, ...] }
487
474
  This field is required.
488
475
 
489
476
  # General Instructions
@@ -500,7 +487,7 @@ turns:
500
487
  properties:
501
488
  patches:
502
489
  description: Array of patches to apply to the form
503
- value:
490
+ items:
504
491
  $ref: '#/$defs/patch'
505
492
  type: array
506
493
  required:
@@ -521,9 +508,6 @@ turns:
521
508
  - score: 92
522
509
  source: Rotten Tomatoes
523
510
  votes: 450
524
- - field_id: title
525
- op: set_string
526
- value: Test Movie
527
511
  tool_results: []
528
512
  text: null
529
513
  usage:
@@ -93,29 +93,49 @@
93
93
  "properties": {
94
94
  "research": {
95
95
  "anyOf": [
96
- { "type": "string", "enum": ["todo", "done", "incomplete", "active", "na"] },
97
- { "type": "boolean" }
96
+ {
97
+ "type": "string",
98
+ "enum": ["todo", "done", "incomplete", "active", "na"]
99
+ },
100
+ {
101
+ "type": "boolean"
102
+ }
98
103
  ],
99
104
  "title": "Research"
100
105
  },
101
106
  "design": {
102
107
  "anyOf": [
103
- { "type": "string", "enum": ["todo", "done", "incomplete", "active", "na"] },
104
- { "type": "boolean" }
108
+ {
109
+ "type": "string",
110
+ "enum": ["todo", "done", "incomplete", "active", "na"]
111
+ },
112
+ {
113
+ "type": "boolean"
114
+ }
105
115
  ],
106
116
  "title": "Design"
107
117
  },
108
118
  "implement": {
109
119
  "anyOf": [
110
- { "type": "string", "enum": ["todo", "done", "incomplete", "active", "na"] },
111
- { "type": "boolean" }
120
+ {
121
+ "type": "string",
122
+ "enum": ["todo", "done", "incomplete", "active", "na"]
123
+ },
124
+ {
125
+ "type": "boolean"
126
+ }
112
127
  ],
113
128
  "title": "Implement"
114
129
  },
115
130
  "test": {
116
131
  "anyOf": [
117
- { "type": "string", "enum": ["todo", "done", "incomplete", "active", "na"] },
118
- { "type": "boolean" }
132
+ {
133
+ "type": "string",
134
+ "enum": ["todo", "done", "incomplete", "active", "na"]
135
+ },
136
+ {
137
+ "type": "boolean"
138
+ }
119
139
  ],
120
140
  "title": "Test"
121
141
  }
@@ -131,11 +151,27 @@
131
151
  "type": "object",
132
152
  "properties": {
133
153
  "read_guidelines": {
134
- "anyOf": [{ "type": "string", "enum": ["todo", "done"] }, { "type": "boolean" }],
154
+ "anyOf": [
155
+ {
156
+ "type": "string",
157
+ "enum": ["todo", "done"]
158
+ },
159
+ {
160
+ "type": "boolean"
161
+ }
162
+ ],
135
163
  "title": "I have read the guidelines"
136
164
  },
137
165
  "agree_terms": {
138
- "anyOf": [{ "type": "string", "enum": ["todo", "done"] }, { "type": "boolean" }],
166
+ "anyOf": [
167
+ {
168
+ "type": "string",
169
+ "enum": ["todo", "done"]
170
+ },
171
+ {
172
+ "type": "boolean"
173
+ }
174
+ ],
139
175
  "title": "I agree to the terms"
140
176
  }
141
177
  },
@@ -150,11 +186,27 @@
150
186
  "type": "object",
151
187
  "properties": {
152
188
  "backed_up": {
153
- "anyOf": [{ "type": "string", "enum": ["unfilled", "yes", "no"] }, { "type": "boolean" }],
189
+ "anyOf": [
190
+ {
191
+ "type": "string",
192
+ "enum": ["unfilled", "yes", "no"]
193
+ },
194
+ {
195
+ "type": "boolean"
196
+ }
197
+ ],
154
198
  "title": "Data has been backed up"
155
199
  },
156
200
  "notified": {
157
- "anyOf": [{ "type": "string", "enum": ["unfilled", "yes", "no"] }, { "type": "boolean" }],
201
+ "anyOf": [
202
+ {
203
+ "type": "string",
204
+ "enum": ["unfilled", "yes", "no"]
205
+ },
206
+ {
207
+ "type": "boolean"
208
+ }
209
+ ],
158
210
  "title": "Stakeholders notified"
159
211
  }
160
212
  },
@@ -93,29 +93,49 @@
93
93
  "properties": {
94
94
  "research": {
95
95
  "anyOf": [
96
- { "type": "string", "enum": ["todo", "done", "incomplete", "active", "na"] },
97
- { "type": "boolean" }
96
+ {
97
+ "type": "string",
98
+ "enum": ["todo", "done", "incomplete", "active", "na"]
99
+ },
100
+ {
101
+ "type": "boolean"
102
+ }
98
103
  ],
99
104
  "title": "Research"
100
105
  },
101
106
  "design": {
102
107
  "anyOf": [
103
- { "type": "string", "enum": ["todo", "done", "incomplete", "active", "na"] },
104
- { "type": "boolean" }
108
+ {
109
+ "type": "string",
110
+ "enum": ["todo", "done", "incomplete", "active", "na"]
111
+ },
112
+ {
113
+ "type": "boolean"
114
+ }
105
115
  ],
106
116
  "title": "Design"
107
117
  },
108
118
  "implement": {
109
119
  "anyOf": [
110
- { "type": "string", "enum": ["todo", "done", "incomplete", "active", "na"] },
111
- { "type": "boolean" }
120
+ {
121
+ "type": "string",
122
+ "enum": ["todo", "done", "incomplete", "active", "na"]
123
+ },
124
+ {
125
+ "type": "boolean"
126
+ }
112
127
  ],
113
128
  "title": "Implement"
114
129
  },
115
130
  "test": {
116
131
  "anyOf": [
117
- { "type": "string", "enum": ["todo", "done", "incomplete", "active", "na"] },
118
- { "type": "boolean" }
132
+ {
133
+ "type": "string",
134
+ "enum": ["todo", "done", "incomplete", "active", "na"]
135
+ },
136
+ {
137
+ "type": "boolean"
138
+ }
119
139
  ],
120
140
  "title": "Test"
121
141
  }
@@ -131,11 +151,27 @@
131
151
  "type": "object",
132
152
  "properties": {
133
153
  "read_guidelines": {
134
- "anyOf": [{ "type": "string", "enum": ["todo", "done"] }, { "type": "boolean" }],
154
+ "anyOf": [
155
+ {
156
+ "type": "string",
157
+ "enum": ["todo", "done"]
158
+ },
159
+ {
160
+ "type": "boolean"
161
+ }
162
+ ],
135
163
  "title": "I have read the guidelines"
136
164
  },
137
165
  "agree_terms": {
138
- "anyOf": [{ "type": "string", "enum": ["todo", "done"] }, { "type": "boolean" }],
166
+ "anyOf": [
167
+ {
168
+ "type": "string",
169
+ "enum": ["todo", "done"]
170
+ },
171
+ {
172
+ "type": "boolean"
173
+ }
174
+ ],
139
175
  "title": "I agree to the terms"
140
176
  }
141
177
  },
@@ -150,11 +186,27 @@
150
186
  "type": "object",
151
187
  "properties": {
152
188
  "backed_up": {
153
- "anyOf": [{ "type": "string", "enum": ["unfilled", "yes", "no"] }, { "type": "boolean" }],
189
+ "anyOf": [
190
+ {
191
+ "type": "string",
192
+ "enum": ["unfilled", "yes", "no"]
193
+ },
194
+ {
195
+ "type": "boolean"
196
+ }
197
+ ],
154
198
  "title": "Data has been backed up"
155
199
  },
156
200
  "notified": {
157
- "anyOf": [{ "type": "string", "enum": ["unfilled", "yes", "no"] }, { "type": "boolean" }],
201
+ "anyOf": [
202
+ {
203
+ "type": "string",
204
+ "enum": ["unfilled", "yes", "no"]
205
+ },
206
+ {
207
+ "type": "boolean"
208
+ }
209
+ ],
158
210
  "title": "Stakeholders notified"
159
211
  }
160
212
  },
@@ -351,7 +351,7 @@ turns:
351
351
  Severity: required, Priority: P1
352
352
  Type: multi_select
353
353
  Options: frontend, backend, database, devops
354
- Set: { op: "set_multi_select", fieldId: "categories", selected: ["opt1", "opt2"] }
354
+ Set: { op: "set_multi_select", fieldId: "categories", value: ["opt1", "opt2"] }
355
355
  This field is required.
356
356
 
357
357
  - **confirmations** (field): All items in "Confirmations (Explicit Mode)" must be answered (2 unfilled)
@@ -359,7 +359,7 @@ turns:
359
359
  Type: checkboxes
360
360
  Options: backed_up, notified
361
361
  Mode: explicit
362
- Set: { op: "set_checkboxes", fieldId: "confirmations", values: { "opt1": "done", "opt2": "todo" } }
362
+ Set: { op: "set_checkboxes", fieldId: "confirmations", value: { "opt1": "done", "opt2": "todo" } }
363
363
  This field is required.
364
364
 
365
365
  - **email** (field): Required field "Email" is empty
@@ -390,13 +390,13 @@ turns:
390
390
  Severity: required, Priority: P1
391
391
  Type: single_select
392
392
  Options: low, medium, high
393
- Set: { op: "set_single_select", fieldId: "priority", selected: "option_id" }
393
+ Set: { op: "set_single_select", fieldId: "priority", value: "option_id" }
394
394
  This field is required.
395
395
 
396
396
  - **tags** (field): Required field "Tags" is empty
397
397
  Severity: required, Priority: P1
398
398
  Type: string_list
399
- Set: { op: "set_string_list", fieldId: "tags", items: ["...", "..."] }
399
+ Set: { op: "set_string_list", fieldId: "tags", value: ["...", "..."] }
400
400
  This field is required.
401
401
 
402
402
  - **tasks_multi** (field): All items in "Tasks (Multi Mode)" must be completed
@@ -404,7 +404,7 @@ turns:
404
404
  Type: checkboxes
405
405
  Options: research, design, implement, test
406
406
  Mode: multi
407
- Set: { op: "set_checkboxes", fieldId: "tasks_multi", values: { "opt1": "done", "opt2": "todo" } }
407
+ Set: { op: "set_checkboxes", fieldId: "tasks_multi", value: { "opt1": "done", "opt2": "todo" } }
408
408
  This field is required.
409
409
 
410
410
  # General Instructions
@@ -641,7 +641,7 @@ turns:
641
641
  Severity: required, Priority: P1
642
642
  Type: multi_select
643
643
  Options: frontend, backend, database, devops
644
- Set: { op: "set_multi_select", fieldId: "categories", selected: ["opt1", "opt2"] }
644
+ Set: { op: "set_multi_select", fieldId: "categories", value: ["opt1", "opt2"] }
645
645
  This field is required.
646
646
 
647
647
  - **confirmations** (field): All items in "Confirmations (Explicit Mode)" must be answered (2 unfilled)
@@ -649,7 +649,7 @@ turns:
649
649
  Type: checkboxes
650
650
  Options: backed_up, notified
651
651
  Mode: explicit
652
- Set: { op: "set_checkboxes", fieldId: "confirmations", values: { "opt1": "done", "opt2": "todo" } }
652
+ Set: { op: "set_checkboxes", fieldId: "confirmations", value: { "opt1": "done", "opt2": "todo" } }
653
653
  This field is required.
654
654
 
655
655
  - **email** (field): Required field "Email" is empty
@@ -680,13 +680,13 @@ turns:
680
680
  Severity: required, Priority: P1
681
681
  Type: single_select
682
682
  Options: low, medium, high
683
- Set: { op: "set_single_select", fieldId: "priority", selected: "option_id" }
683
+ Set: { op: "set_single_select", fieldId: "priority", value: "option_id" }
684
684
  This field is required.
685
685
 
686
686
  - **tags** (field): Required field "Tags" is empty
687
687
  Severity: required, Priority: P1
688
688
  Type: string_list
689
- Set: { op: "set_string_list", fieldId: "tags", items: ["...", "..."] }
689
+ Set: { op: "set_string_list", fieldId: "tags", value: ["...", "..."] }
690
690
  This field is required.
691
691
 
692
692
  - **tasks_multi** (field): All items in "Tasks (Multi Mode)" must be completed
@@ -694,7 +694,7 @@ turns:
694
694
  Type: checkboxes
695
695
  Options: research, design, implement, test
696
696
  Mode: multi
697
- Set: { op: "set_checkboxes", fieldId: "tasks_multi", values: { "opt1": "done", "opt2": "todo" } }
697
+ Set: { op: "set_checkboxes", fieldId: "tasks_multi", value: { "opt1": "done", "opt2": "todo" } }
698
698
  This field is required.
699
699
 
700
700
  # General Instructions
@@ -711,7 +711,7 @@ turns:
711
711
  properties:
712
712
  patches:
713
713
  description: Array of patches to apply to the form
714
- value:
714
+ items:
715
715
  $ref: '#/$defs/patch'
716
716
  type: array
717
717
  required:
@@ -752,10 +752,10 @@ turns:
752
752
  op: set_single_select
753
753
  value: high
754
754
  - field_id: tags
755
+ op: set_string_list
755
756
  value:
756
757
  - typescript
757
758
  - testing
758
- op: set_string_list
759
759
  - field_id: tasks_multi
760
760
  op: set_checkboxes
761
761
  value:
@@ -1129,7 +1129,7 @@ turns:
1129
1129
  Type: checkboxes
1130
1130
  Options: read_guidelines, agree_terms
1131
1131
  Mode: simple
1132
- Set: { op: "set_checkboxes", fieldId: "tasks_simple", values: { "opt1": "done", "opt2": "todo" } }
1132
+ Set: { op: "set_checkboxes", fieldId: "tasks_simple", value: { "opt1": "done", "opt2": "todo" } }
1133
1133
  This field is required.
1134
1134
 
1135
1135
  - **website** (field): Required field "Website" is empty
@@ -1167,13 +1167,13 @@ turns:
1167
1167
  Type: table
1168
1168
  Columns: task (required), estimate_hrs, link
1169
1169
  Rows: min: 0, max: 10
1170
- Set: { op: "set_table", fieldId: "project_tasks", rows: [{ "task": "...", "estimate_hrs": "...", "link": "..." }, ...] }
1170
+ Set: { op: "set_table", fieldId: "project_tasks", value: [{ "task": "...", "estimate_hrs": "...", "link": "..." }, ...] }
1171
1171
  Skip: { op: "skip_field", fieldId: "project_tasks", reason: "..." }
1172
1172
 
1173
1173
  - **references** (field): Optional field not yet addressed
1174
1174
  Severity: recommended, Priority: P3
1175
1175
  Type: url_list
1176
- Set: { op: "set_url_list", fieldId: "references", items: ["https://...", "https://..."] }
1176
+ Set: { op: "set_url_list", fieldId: "references", value: ["https://...", "https://..."] }
1177
1177
  Skip: { op: "skip_field", fieldId: "references", reason: "..." }
1178
1178
 
1179
1179
  - **related_url** (field): Optional field not yet addressed
@@ -1444,7 +1444,7 @@ turns:
1444
1444
  Type: checkboxes
1445
1445
  Options: read_guidelines, agree_terms
1446
1446
  Mode: simple
1447
- Set: { op: "set_checkboxes", fieldId: "tasks_simple", values: { "opt1": "done", "opt2": "todo" } }
1447
+ Set: { op: "set_checkboxes", fieldId: "tasks_simple", value: { "opt1": "done", "opt2": "todo" } }
1448
1448
  This field is required.
1449
1449
 
1450
1450
  - **website** (field): Required field "Website" is empty
@@ -1482,13 +1482,13 @@ turns:
1482
1482
  Type: table
1483
1483
  Columns: task (required), estimate_hrs, link
1484
1484
  Rows: min: 0, max: 10
1485
- Set: { op: "set_table", fieldId: "project_tasks", rows: [{ "task": "...", "estimate_hrs": "...", "link": "..." }, ...] }
1485
+ Set: { op: "set_table", fieldId: "project_tasks", value: [{ "task": "...", "estimate_hrs": "...", "link": "..." }, ...] }
1486
1486
  Skip: { op: "skip_field", fieldId: "project_tasks", reason: "..." }
1487
1487
 
1488
1488
  - **references** (field): Optional field not yet addressed
1489
1489
  Severity: recommended, Priority: P3
1490
1490
  Type: url_list
1491
- Set: { op: "set_url_list", fieldId: "references", items: ["https://...", "https://..."] }
1491
+ Set: { op: "set_url_list", fieldId: "references", value: ["https://...", "https://..."] }
1492
1492
  Skip: { op: "skip_field", fieldId: "references", reason: "..." }
1493
1493
 
1494
1494
  - **related_url** (field): Optional field not yet addressed
@@ -1517,7 +1517,7 @@ turns:
1517
1517
  properties:
1518
1518
  patches:
1519
1519
  description: Array of patches to apply to the form
1520
- value:
1520
+ items:
1521
1521
  $ref: '#/$defs/patch'
1522
1522
  type: array
1523
1523
  required:
@@ -1558,9 +1558,9 @@ turns:
1558
1558
  reason: No value in mock form
1559
1559
  role: agent
1560
1560
  - field_id: references
1561
+ op: set_url_list
1561
1562
  value:
1562
1563
  - https://docs.example.com
1563
- op: set_url_list
1564
1564
  - field_id: related_url
1565
1565
  op: skip_field
1566
1566
  reason: No value in mock form
@@ -1874,7 +1874,7 @@ turns:
1874
1874
  Type: table
1875
1875
  Columns: name (required), role, start_date
1876
1876
  Rows: min: 0, max: 5
1877
- Set: { op: "set_table", fieldId: "team_members", rows: [{ "name": "...", "role": "...", "start_date": "..." }, ...] }
1877
+ Set: { op: "set_table", fieldId: "team_members", value: [{ "name": "...", "role": "...", "start_date": "..." }, ...] }
1878
1878
  Skip: { op: "skip_field", fieldId: "team_members", reason: "..." }
1879
1879
 
1880
1880
  # General Instructions
@@ -2162,7 +2162,7 @@ turns:
2162
2162
  Type: table
2163
2163
  Columns: name (required), role, start_date
2164
2164
  Rows: min: 0, max: 5
2165
- Set: { op: "set_table", fieldId: "team_members", rows: [{ "name": "...", "role": "...", "start_date": "..." }, ...] }
2165
+ Set: { op: "set_table", fieldId: "team_members", value: [{ "name": "...", "role": "...", "start_date": "..." }, ...] }
2166
2166
  Skip: { op: "skip_field", fieldId: "team_members", reason: "..." }
2167
2167
 
2168
2168
  # General Instructions
@@ -2179,7 +2179,7 @@ turns:
2179
2179
  properties:
2180
2180
  patches:
2181
2181
  description: Array of patches to apply to the form
2182
- value:
2182
+ items:
2183
2183
  $ref: '#/$defs/patch'
2184
2184
  type: array
2185
2185
  required: