task-graph-mcp 0.3.0

MCP server for agent task workflows with phases, prompts, gates, and multi-agent coordination
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
{
  "schema_version": 3,
  "export_version": "1.0.0",
  "exported_at": "2026-01-29T00:00:00+00:00",
  "exported_by": "task-graph-mcp template (browser-flat)",
  "tables": {
    "tasks": [
      {
        "id": "browser-flat-root",
        "title": "Build a Web Browser",
        "description": "Root task for a simulated web browser project. This flat template organizes all components as independent tasks with minimal dependencies, suitable for a single agent working through them sequentially.",
        "status": "pending",
        "priority": 8,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["project", "browser"],
        "points": null,
        "time_estimate_ms": null,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700000000,
        "updated_at": 1769700000000
      },
      {
        "id": "browser-flat-01-url-parser",
        "title": "URL Parser",
        "description": "Implement a URL parser that handles HTTP/HTTPS schemes, host extraction, port parsing, path normalization, query string parsing, and fragment identifiers. Should conform to the WHATWG URL specification for basic cases.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["networking", "parser"],
        "points": 3,
        "time_estimate_ms": 900000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700001000,
        "updated_at": 1769700001000
      },
      {
        "id": "browser-flat-02-http-client",
        "title": "HTTP Client",
        "description": "Build an HTTP/1.1 client capable of sending GET and POST requests, handling response status codes, parsing headers, following redirects, and reading chunked transfer encoding. Support basic keep-alive connections.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["networking", "http"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700002000,
        "updated_at": 1769700002000
      },
      {
        "id": "browser-flat-03-html-tokenizer",
        "title": "HTML Tokenizer",
        "description": "Implement an HTML5 tokenizer that converts raw HTML text into a stream of tokens: start tags, end tags, self-closing tags, attributes, text content, comments, and doctype declarations. Handle character references and error recovery.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["html", "parser"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700003000,
        "updated_at": 1769700003000
      },
      {
        "id": "browser-flat-04-html-parser",
        "title": "HTML Tree Builder",
        "description": "Build the HTML tree construction stage that takes tokens from the tokenizer and constructs a DOM tree. Handle implicit tag closures, foster parenting, formatting element reconstruction, and the basic insertion modes (initial, before-html, before-head, in-head, in-body).",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["html", "parser", "dom"],
        "points": 8,
        "time_estimate_ms": 2400000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700004000,
        "updated_at": 1769700004000
      },
      {
        "id": "browser-flat-05-dom-tree",
        "title": "DOM Tree Data Structure",
        "description": "Define the core DOM tree data structure: Node, Element, Text, Comment, Document types. Implement parent/child/sibling traversal, node insertion/removal, attribute access, and getElementById/getElementsByTagName queries.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["dom", "core"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700005000,
        "updated_at": 1769700005000
      },
      {
        "id": "browser-flat-06-css-tokenizer",
        "title": "CSS Tokenizer",
        "description": "Implement a CSS tokenizer that produces tokens from CSS source text: identifiers, functions, at-keywords, hashes, strings, numbers, dimensions, whitespace, delimiters, and CDO/CDC. Follow the CSS Syntax Module Level 3 tokenization algorithm.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["css", "parser"],
        "points": 3,
        "time_estimate_ms": 900000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700006000,
        "updated_at": 1769700006000
      },
      {
        "id": "browser-flat-07-css-parser",
        "title": "CSS Rule Parser",
        "description": "Parse CSS tokens into a structured stylesheet: style rules with selectors and declaration blocks, at-rules (@media, @import, @font-face), selector specificity calculation, and shorthand property expansion for common properties (margin, padding, border, background).",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["css", "parser"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700007000,
        "updated_at": 1769700007000
      },
      {
        "id": "browser-flat-08-selector-matching",
        "title": "CSS Selector Matching",
        "description": "Implement CSS selector matching against DOM elements: type selectors, class selectors, ID selectors, attribute selectors, pseudo-classes (:first-child, :hover, :focus), combinators (descendant, child, adjacent sibling), and universal selector. Include specificity calculation and cascade ordering.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["css", "dom", "matching"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700008000,
        "updated_at": 1769700008000
      },
      {
        "id": "browser-flat-09-style-computation",
        "title": "Computed Style Resolution",
        "description": "Implement the cascade and computed style resolution: gather all matching rules for each element, sort by specificity and source order, apply inheritance for inherited properties, resolve relative units (em, rem, percentages) against parent values, and produce a final ComputedStyle per element.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["css", "style", "computation"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700009000,
        "updated_at": 1769700009000
      },
      {
        "id": "browser-flat-10-layout-box-model",
        "title": "Layout Box Model",
        "description": "Implement the CSS box model for layout: content box, padding, border, and margin. Handle block-level and inline-level formatting contexts, width/height calculation with auto margins, min/max constraints, and box-sizing (content-box vs border-box).",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["layout", "css", "box-model"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700010000,
        "updated_at": 1769700010000
      },
      {
        "id": "browser-flat-11-block-layout",
        "title": "Block Layout Algorithm",
        "description": "Implement block layout: vertical stacking of block-level boxes, margin collapsing between siblings and parent-child, containing block resolution, static position for absolutely positioned elements, and float interaction (clear property).",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["layout", "block"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700011000,
        "updated_at": 1769700011000
      },
      {
        "id": "browser-flat-12-inline-layout",
        "title": "Inline Layout and Text Shaping",
        "description": "Implement inline layout: line box construction, inline box fragmentation across lines, text measurement and word wrapping, line-height and vertical-align, white-space handling (normal, nowrap, pre), and basic text-overflow (ellipsis).",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["layout", "inline", "text"],
        "points": 8,
        "time_estimate_ms": 2400000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700012000,
        "updated_at": 1769700012000
      },
      {
        "id": "browser-flat-13-paint-display-list",
        "title": "Paint and Display List",
        "description": "Generate a display list from the layout tree: paint commands for backgrounds, borders, text, images, and box shadows. Implement paint order (background, float, foreground layers), opacity handling, and overflow clipping.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["rendering", "paint"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700013000,
        "updated_at": 1769700013000
      },
      {
        "id": "browser-flat-14-rasterizer",
        "title": "Rasterizer",
        "description": "Implement a software rasterizer that executes the display list onto a pixel buffer: rectangle fills, border drawing (solid, dashed, dotted), text rasterization using glyph bitmaps, image scaling/compositing, and anti-aliased edge rendering.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["rendering", "rasterizer"],
        "points": 8,
        "time_estimate_ms": 2400000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700014000,
        "updated_at": 1769700014000
      },
      {
        "id": "browser-flat-15-js-lexer",
        "title": "JavaScript Lexer",
        "description": "Build a JavaScript lexer/tokenizer that recognizes: identifiers, keywords, numeric literals (integer, float, hex, binary, octal), string literals (single/double quotes, template literals), regex literals, punctuators, and automatic semicolon insertion markers.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["javascript", "parser"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700015000,
        "updated_at": 1769700015000
      },
      {
        "id": "browser-flat-16-js-parser",
        "title": "JavaScript Parser",
        "description": "Implement a recursive descent JavaScript parser producing an AST: variable declarations (var, let, const), function declarations/expressions, control flow (if/else, for, while, switch), object/array literals, member access, binary/unary operators, and arrow functions.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["javascript", "parser", "ast"],
        "points": 8,
        "time_estimate_ms": 2400000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700016000,
        "updated_at": 1769700016000
      },
      {
        "id": "browser-flat-17-js-interpreter",
        "title": "JavaScript Interpreter",
        "description": "Build a tree-walking JavaScript interpreter: environment/scope chains, variable binding (var hoisting, let/const block scope), function calls with arguments, closures, prototype-based object system, basic built-in types (String, Number, Boolean, Array, Object), and exception handling (try/catch/finally).",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["javascript", "interpreter", "runtime"],
        "points": 13,
        "time_estimate_ms": 3600000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700017000,
        "updated_at": 1769700017000
      },
      {
        "id": "browser-flat-18-dom-api",
        "title": "DOM API Bindings",
        "description": "Expose DOM manipulation to JavaScript: document.getElementById, document.createElement, element.appendChild, element.setAttribute, element.innerHTML, element.style property access, classList manipulation, and textContent/innerText.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["javascript", "dom", "api"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700018000,
        "updated_at": 1769700018000
      },
      {
        "id": "browser-flat-19-event-system",
        "title": "Event System",
        "description": "Implement the DOM event system: Event interface, addEventListener/removeEventListener, event capturing and bubbling phases, stopPropagation/preventDefault, common event types (click, mouseover, keydown, load, DOMContentLoaded), and the event loop integration.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["events", "dom", "javascript"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700019000,
        "updated_at": 1769700019000
      },
      {
        "id": "browser-flat-20-resource-loader",
        "title": "Resource Loader",
        "description": "Implement resource loading and caching: fetch CSS stylesheets linked in <link> tags, load images referenced by <img> src attributes, execute <script> tags (both inline and external), handle async/defer script loading semantics, and implement a basic in-memory resource cache.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["networking", "resources", "loader"],
        "points": 5,
        "time_estimate_ms": 1500000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700020000,
        "updated_at": 1769700020000
      },
      {
        "id": "browser-flat-21-page-lifecycle",
        "title": "Page Lifecycle Orchestrator",
        "description": "Wire all components together into the page loading pipeline: URL resolution, HTTP fetch, HTML parsing, resource discovery and loading, style computation, layout, paint, and display. Implement the main event loop that drives incremental rendering and script execution.",
        "status": "pending",
        "priority": 5,
        "worker_id": null,
        "claimed_at": null,
        "needed_tags": [],
        "wanted_tags": [],
        "tags": ["integration", "lifecycle", "pipeline"],
        "points": 8,
        "time_estimate_ms": 2400000,
        "time_actual_ms": null,
        "started_at": null,
        "completed_at": null,
        "current_thought": null,
        "cost_usd": 0.0,
        "metrics": [0, 0, 0, 0, 0, 0, 0, 0],
        "created_at": 1769700021000,
        "updated_at": 1769700021000
      }
    ],
    "dependencies": [
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-01-url-parser",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-02-http-client",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-03-html-tokenizer",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-04-html-parser",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-05-dom-tree",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-06-css-tokenizer",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-07-css-parser",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-08-selector-matching",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-09-style-computation",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-10-layout-box-model",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-11-block-layout",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-12-inline-layout",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-13-paint-display-list",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-14-rasterizer",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-15-js-lexer",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-16-js-parser",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-17-js-interpreter",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-18-dom-api",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-19-event-system",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-20-resource-loader",
        "dep_type": "contains"
      },
      {
        "from_task_id": "browser-flat-root",
        "to_task_id": "browser-flat-21-page-lifecycle",
        "dep_type": "contains"
      }
    ],
    "task_tags": [
      {"task_id": "browser-flat-root", "tag": "project"},
      {"task_id": "browser-flat-root", "tag": "browser"},
      {"task_id": "browser-flat-01-url-parser", "tag": "networking"},
      {"task_id": "browser-flat-01-url-parser", "tag": "parser"},
      {"task_id": "browser-flat-02-http-client", "tag": "networking"},
      {"task_id": "browser-flat-02-http-client", "tag": "http"},
      {"task_id": "browser-flat-03-html-tokenizer", "tag": "html"},
      {"task_id": "browser-flat-03-html-tokenizer", "tag": "parser"},
      {"task_id": "browser-flat-04-html-parser", "tag": "html"},
      {"task_id": "browser-flat-04-html-parser", "tag": "parser"},
      {"task_id": "browser-flat-04-html-parser", "tag": "dom"},
      {"task_id": "browser-flat-05-dom-tree", "tag": "dom"},
      {"task_id": "browser-flat-05-dom-tree", "tag": "core"},
      {"task_id": "browser-flat-06-css-tokenizer", "tag": "css"},
      {"task_id": "browser-flat-06-css-tokenizer", "tag": "parser"},
      {"task_id": "browser-flat-07-css-parser", "tag": "css"},
      {"task_id": "browser-flat-07-css-parser", "tag": "parser"},
      {"task_id": "browser-flat-08-selector-matching", "tag": "css"},
      {"task_id": "browser-flat-08-selector-matching", "tag": "dom"},
      {"task_id": "browser-flat-08-selector-matching", "tag": "matching"},
      {"task_id": "browser-flat-09-style-computation", "tag": "css"},
      {"task_id": "browser-flat-09-style-computation", "tag": "style"},
      {"task_id": "browser-flat-09-style-computation", "tag": "computation"},
      {"task_id": "browser-flat-10-layout-box-model", "tag": "layout"},
      {"task_id": "browser-flat-10-layout-box-model", "tag": "css"},
      {"task_id": "browser-flat-10-layout-box-model", "tag": "box-model"},
      {"task_id": "browser-flat-11-block-layout", "tag": "layout"},
      {"task_id": "browser-flat-11-block-layout", "tag": "block"},
      {"task_id": "browser-flat-12-inline-layout", "tag": "layout"},
      {"task_id": "browser-flat-12-inline-layout", "tag": "inline"},
      {"task_id": "browser-flat-12-inline-layout", "tag": "text"},
      {"task_id": "browser-flat-13-paint-display-list", "tag": "rendering"},
      {"task_id": "browser-flat-13-paint-display-list", "tag": "paint"},
      {"task_id": "browser-flat-14-rasterizer", "tag": "rendering"},
      {"task_id": "browser-flat-14-rasterizer", "tag": "rasterizer"},
      {"task_id": "browser-flat-15-js-lexer", "tag": "javascript"},
      {"task_id": "browser-flat-15-js-lexer", "tag": "parser"},
      {"task_id": "browser-flat-16-js-parser", "tag": "javascript"},
      {"task_id": "browser-flat-16-js-parser", "tag": "parser"},
      {"task_id": "browser-flat-16-js-parser", "tag": "ast"},
      {"task_id": "browser-flat-17-js-interpreter", "tag": "javascript"},
      {"task_id": "browser-flat-17-js-interpreter", "tag": "interpreter"},
      {"task_id": "browser-flat-17-js-interpreter", "tag": "runtime"},
      {"task_id": "browser-flat-18-dom-api", "tag": "javascript"},
      {"task_id": "browser-flat-18-dom-api", "tag": "dom"},
      {"task_id": "browser-flat-18-dom-api", "tag": "api"},
      {"task_id": "browser-flat-19-event-system", "tag": "events"},
      {"task_id": "browser-flat-19-event-system", "tag": "dom"},
      {"task_id": "browser-flat-19-event-system", "tag": "javascript"},
      {"task_id": "browser-flat-20-resource-loader", "tag": "networking"},
      {"task_id": "browser-flat-20-resource-loader", "tag": "resources"},
      {"task_id": "browser-flat-20-resource-loader", "tag": "loader"},
      {"task_id": "browser-flat-21-page-lifecycle", "tag": "integration"},
      {"task_id": "browser-flat-21-page-lifecycle", "tag": "lifecycle"},
      {"task_id": "browser-flat-21-page-lifecycle", "tag": "pipeline"}
    ],
    "attachments": [],
    "task_needed_tags": [],
    "task_wanted_tags": [],
    "task_sequence": []
  }
}