Text Generation
Transformers
TensorBoard
Safetensors
gemma3_text
Generated from Trainer
trl
sft
conversational
text-generation-inference
Instructions to use talha970/function-gemma-v3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use talha970/function-gemma-v3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="talha970/function-gemma-v3") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("talha970/function-gemma-v3") model = AutoModelForCausalLM.from_pretrained("talha970/function-gemma-v3") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use talha970/function-gemma-v3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "talha970/function-gemma-v3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "talha970/function-gemma-v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/talha970/function-gemma-v3
- SGLang
How to use talha970/function-gemma-v3 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "talha970/function-gemma-v3" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "talha970/function-gemma-v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "talha970/function-gemma-v3" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "talha970/function-gemma-v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use talha970/function-gemma-v3 with Docker Model Runner:
docker model run hf.co/talha970/function-gemma-v3
File size: 338,564 Bytes
d07a327 | 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 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 | put 2 workers on it,edit_task,"{""manpower"":""2""}",2026-05-05
set cost to 5000 manpower to 10 and category to insulation,edit_task,"{""category"":""insulation"",""manpower"":""10"",""cost"":""5000""}",2026-05-05
change category to plumbing and mark it closed,edit_task,"{""category"":""plumbing"",""status"":""closed""}",2026-05-05
it's in the cafeteria and status is verified,edit_task,"{""location"":""cafeteria"",""status"":""verified""}",2026-05-05
materials came out to about 2000,edit_task,"{""cost"":""2000""}",2026-05-05
move this to s2 and set location to elevator shaft b,edit_task,"{""plan"":""s2"",""location"":""elevator shaft b""}",2026-05-05
change the category to glazing put it on sheet 9 and set status to verified,edit_task,"{""plan"":""sheet 9"",""category"":""glazing"",""status"":""verified""}",2026-05-05
put this in bobby's queue,edit_task,"{""assignee"":""bobby""}",2026-05-05
this goes on civil sheet 3,edit_task,"{""plan"":""civil sheet 3""}",2026-05-05
kick off may 6,edit_task,"{""start_date"":""2026-05-06""}",2026-05-05
assign carlos priority p3 cost 1200 and due by thursday,edit_task,"{""assignee"":""carlos"",""end_date"":""2026-05-07"",""priority"":""p3"",""cost"":""1200""}",2026-05-05
bump it to medium and push the deadline to may 9,edit_task,"{""end_date"":""2026-05-09"",""priority"":""p2""}",2026-05-05
resource it with team of 4,edit_task,"{""manpower"":""4""}",2026-05-05
tag inspection,edit_task,"{""tags"":[""inspection""]}",2026-05-05
assign sal priority p2 cost around 2000 and due by friday,edit_task,"{""assignee"":""sal"",""end_date"":""2026-05-08"",""priority"":""p2"",""cost"":""2000""}",2026-05-05
move to p2 location basement level 2 and mark verified,edit_task,"{""plan"":""p2"",""location"":""basement level 2"",""status"":""verified""}",2026-05-05
5 guys on this one,edit_task,"{""manpower"":""5""}",2026-05-05
get going next tuesday,edit_task,"{""start_date"":""2026-05-12""}",2026-05-05
materials came out to 15000,edit_task,"{""cost"":""15000""}",2026-05-05
set cost to 2500 manpower to 3 workers and category to fire alarm,edit_task,"{""category"":""fire alarm"",""manpower"":""3"",""cost"":""2500""}",2026-05-05
start tomorrow finish friday manpower 4 cost 1500,edit_task,"{""start_date"":""2026-05-06"",""end_date"":""2026-05-08"",""manpower"":""4"",""cost"":""1500""}",2026-05-05
set priority low assign sarah mark it in progress and due by next tuesday,edit_task,"{""assignee"":""sarah"",""status"":""in progress"",""end_date"":""2026-05-12"",""priority"":""p3""}",2026-05-05
flag it as p1,edit_task,"{""priority"":""p1""}",2026-05-05
it's in the courtyard and status is tracked,edit_task,"{""location"":""courtyard"",""status"":""tracked""}",2026-05-05
assign nadia cost about 2000 and bump it to p1,edit_task,"{""assignee"":""nadia"",""priority"":""p1"",""cost"":""2000""}",2026-05-05
set plan to sheet 7,edit_task,"{""plan"":""sheet 7""}",2026-05-05
move it to room 412,edit_task,"{""location"":""room 412""}",2026-05-05
bump it to priority two and push the deadline to wednesday,edit_task,"{""end_date"":""2026-05-06"",""priority"":""p2""}",2026-05-05
set priority medium location level 2 cost about 1500,edit_task,"{""location"":""level 2"",""priority"":""p2"",""cost"":""1500""}",2026-05-05
drawing a301 location room 305 category roofing and assign lena,edit_task,"{""plan"":""a301"",""location"":""room 305"",""category"":""roofing"",""assignee"":""lena""}",2026-05-05
assign maria priority two cost 6000,edit_task,"{""assignee"":""maria"",""priority"":""p2"",""cost"":""6000""}",2026-05-05
need team of 5 for this,edit_task,"{""manpower"":""5""}",2026-05-05
attach to sheet 4,edit_task,"{""plan"":""sheet 4""}",2026-05-05
it's in room 412 and status is pending inspection,edit_task,"{""location"":""room 412"",""status"":""pending inspection""}",2026-05-05
assign this to dave,edit_task,"{""assignee"":""dave""}",2026-05-05
bump it to p1,edit_task,"{""priority"":""p1""}",2026-05-05
start tomorrow finish by thursday put troy on it,edit_task,"{""assignee"":""troy"",""start_date"":""2026-05-06"",""end_date"":""2026-05-07""}",2026-05-05
put it under tile,edit_task,"{""category"":""tile""}",2026-05-05
bump it to not a rush and push the deadline to thursday,edit_task,"{""end_date"":""2026-05-07"",""priority"":""p3""}",2026-05-05
move to e2 and bump it to p1,edit_task,"{""plan"":""e2"",""priority"":""p1""}",2026-05-05
we'll have 10 workers on site,edit_task,"{""manpower"":""10""}",2026-05-05
move it to server room,edit_task,"{""location"":""server room""}",2026-05-05
make it medium priority,edit_task,"{""priority"":""p2""}",2026-05-05
classify this as structural,edit_task,"{""category"":""structural""}",2026-05-05
assign ray make it high priority and due by friday,edit_task,"{""assignee"":""ray"",""end_date"":""2026-05-08"",""priority"":""p1""}",2026-05-05
work is in the east lobby,edit_task,"{""location"":""east lobby""}",2026-05-05
move this to p2 and set the location to bay 12,edit_task,"{""plan"":""p2"",""location"":""bay 12""}",2026-05-05
get this going wednesday morning,edit_task,"{""start_date"":""2026-05-06""}",2026-05-05
make this high priority,edit_task,"{""priority"":""p1""}",2026-05-05
set the start date to tomorrow and the due date to next friday,edit_task,"{""start_date"":""2026-05-06"",""end_date"":""2026-05-15""}",2026-05-05
have luis take care of it,edit_task,"{""assignee"":""luis""}",2026-05-05
assign this to kim and make it medium priority,edit_task,"{""assignee"":""kim"",""priority"":""p2""}",2026-05-05
drawing is a4,edit_task,"{""plan"":""a4""}",2026-05-05
tag steve as the assignee,edit_task,"{""assignee"":""steve""}",2026-05-05
assign mike make it low priority and due by may 21,edit_task,"{""assignee"":""mike"",""end_date"":""2026-05-21"",""priority"":""p3""}",2026-05-05
make the category plumbing put it on structural s2 and set the status to tracked,edit_task,"{""plan"":""structural s2"",""category"":""plumbing"",""status"":""tracked""}",2026-05-05
assign maria make it medium priority and cost 6000,edit_task,"{""assignee"":""maria"",""priority"":""p2"",""cost"":""6000""}",2026-05-05
need a team of 5 for this,edit_task,"{""manpower"":""5""}",2026-05-05
attach it to sheet 4,edit_task,"{""plan"":""sheet 4""}",2026-05-05
it's in room 412 and the status is pending inspection,edit_task,"{""location"":""room 412"",""status"":""pending inspection""}",2026-05-05
bump it to high priority,edit_task,"{""priority"":""p1""}",2026-05-05
make it low priority and push the deadline to thursday,edit_task,"{""end_date"":""2026-05-07"",""priority"":""p3""}",2026-05-05
move it to e2 and bump it to high priority,edit_task,"{""plan"":""e2"",""priority"":""p1""}",2026-05-05
move it to the server room,edit_task,"{""location"":""server room""}",2026-05-05
start wednesday morning finish by next tuesday put hector on it,edit_task,"{""assignee"":""hector"",""start_date"":""2026-05-06"",""end_date"":""2026-05-12""}",2026-05-05
change the category to concrete and mark it complete,edit_task,"{""category"":""concrete"",""status"":""complete""}",2026-05-05
give it to omar,edit_task,"{""assignee"":""omar""}",2026-05-05
assign brenda set priority to high and due before the inspection,edit_task,"{""assignee"":""brenda"",""priority"":""p1""}",2026-05-05
move this to m2 and set the location to bay 12,edit_task,"{""plan"":""m2"",""location"":""bay 12""}",2026-05-05
move it to p3,edit_task,"{""plan"":""p3""}",2026-05-05
set priority to low location roof deck cost around 2500,edit_task,"{""location"":""roof deck"",""priority"":""p3"",""cost"":""2500""}",2026-05-05
start tomorrow end next friday manpower 4 guys and cost around 10000,edit_task,"{""start_date"":""2026-05-06"",""end_date"":""2026-05-15"",""manpower"":""4"",""cost"":""10000""}",2026-05-05
put mike on it,edit_task,"{""assignee"":""mike""}",2026-05-05
bump it to low priority,edit_task,"{""priority"":""p3""}",2026-05-05
status is complete,edit_task,"{""status"":""complete""}",2026-05-05
drawing fp2 location level 5 category glazing assign hector,edit_task,"{""plan"":""fp2"",""location"":""level 5"",""category"":""glazing"",""assignee"":""hector""}",2026-05-05
assign hector low priority cost 15000 and due by thursday,edit_task,"{""assignee"":""hector"",""end_date"":""2026-05-07"",""priority"":""p3"",""cost"":""15000""}",2026-05-05
move to sheet 9 and bump it to high priority,edit_task,"{""plan"":""sheet 9"",""priority"":""p1""}",2026-05-05
site is north corridor,edit_task,"{""location"":""north corridor""}",2026-05-05
assign to luis and set priority to medium,edit_task,"{""assignee"":""luis"",""priority"":""p2""}",2026-05-05
set cost to 3500,edit_task,"{""cost"":""3500""}",2026-05-05
set cost to about 12000 manpower to 6 and category to painting,edit_task,"{""category"":""painting"",""manpower"":""6"",""cost"":""12000""}",2026-05-05
assign to maria and set priority to p1,edit_task,"{""assignee"":""maria"",""priority"":""p1""}",2026-05-05
move this to structural s2 and set the location to elevator shaft b,edit_task,"{""plan"":""structural s2"",""location"":""elevator shaft b""}",2026-05-05
set cost to 3000 and manpower to 1,edit_task,"{""manpower"":""1"",""cost"":""3000""}",2026-05-05
start may 6 end may 7 manpower 3 workers and cost 3000,edit_task,"{""start_date"":""2026-05-06"",""end_date"":""2026-05-07"",""manpower"":""3"",""cost"":""3000""}",2026-05-05
target completion end of month,edit_task,"{""end_date"":""2026-05-31""}",2026-05-05
send a team of 5 over,edit_task,"{""manpower"":""5""}",2026-05-05
set cost to 15000,edit_task,"{""cost"":""15000""}",2026-05-05
assign nadia on it and get it done by may 7,edit_task,"{""assignee"":""nadia"",""end_date"":""2026-05-07""}",2026-05-05
put it on the ground floor,edit_task,"{""plan"":""ground floor""}",2026-05-05
happening at stairwell b,edit_task,"{""location"":""stairwell b""}",2026-05-05
trade is hvac,edit_task,"{""category"":""hvac""}",2026-05-05
happening at bay 4,edit_task,"{""location"":""bay 4""}",2026-05-05
due end of day wednesday,edit_task,"{""end_date"":""2026-05-06""}",2026-05-05
budget is 5000 and category is electrical,edit_task,"{""category"":""electrical"",""cost"":""5000""}",2026-05-05
put it under fire suppression,edit_task,"{""category"":""fire suppression""}",2026-05-05
budget is 2000 and category is demolition,edit_task,"{""category"":""demolition"",""cost"":""2000""}",2026-05-05
set priority low location penthouse level cost 7000,edit_task,"{""location"":""penthouse level"",""priority"":""p3"",""cost"":""7000""}",2026-05-05
assign omar make it high priority and due by may 10,edit_task,"{""assignee"":""omar"",""end_date"":""2026-05-10"",""priority"":""p1""}",2026-05-05
move to fp2 location stairwell c and mark open,edit_task,"{""plan"":""fp2"",""location"":""stairwell c"",""status"":""open""}",2026-05-05
trade is concrete,edit_task,"{""category"":""concrete""}",2026-05-05
this one should be urgent,edit_task,"{""priority"":""p1""}",2026-05-05
assign juan make it low priority and due by may 7,edit_task,"{""assignee"":""juan"",""end_date"":""2026-05-07"",""priority"":""p3""}",2026-05-05
happening at unit 7,edit_task,"{""location"":""unit 7""}",2026-05-05
begin may 4,edit_task,"{""start_date"":""2026-05-04""}",2026-05-05
set start date to may 4 and due date to may 16,edit_task,"{""start_date"":""2026-05-04"",""end_date"":""2026-05-16""}",2026-05-05
start tomorrow end next friday manpower crew of 4 and cost 2500,edit_task,"{""start_date"":""2026-05-06"",""end_date"":""2026-05-15"",""manpower"":""4"",""cost"":""2500""}",2026-05-05
put cost down as about 2500,edit_task,"{""cost"":""2500""}",2026-05-05
assign pat low priority cost about 800 and due by next friday,edit_task,"{""assignee"":""pat"",""end_date"":""2026-05-15"",""priority"":""p3"",""cost"":""800""}",2026-05-05
start date is tomorrow,edit_task,"{""start_date"":""2026-05-06""}",2026-05-05
mobilize tomorrow,edit_task,"{""start_date"":""2026-05-06""}",2026-05-05
set the start date to this monday and the due date to friday,edit_task,"{""start_date"":""2026-05-04"",""end_date"":""2026-05-08""}",2026-05-05
start tomorrow finish by end of day wednesday put eddie on it,edit_task,"{""assignee"":""eddie"",""start_date"":""2026-05-06"",""end_date"":""2026-05-06""}",2026-05-05
move to a4 location grid line b2 and mark tracked,edit_task,"{""plan"":""a4"",""location"":""grid line b2"",""status"":""tracked""}",2026-05-05
set cost to around 3000 manpower to crew of 2 and category to electrical,edit_task,"{""category"":""electrical"",""manpower"":""2"",""cost"":""3000""}",2026-05-05
set cost to around 15000 and manpower to 6 workers,edit_task,"{""manpower"":""6"",""cost"":""15000""}",2026-05-05
set cost to about 12000 manpower to 5 workers and category to sprinkler,edit_task,"{""category"":""sprinkler"",""manpower"":""5"",""cost"":""12000""}",2026-05-05
cost 12000 crew of 7 category waterproofing due by next friday,edit_task,"{""category"":""waterproofing"",""end_date"":""2026-05-15"",""manpower"":""7"",""cost"":""12000""}",2026-05-05
start may 4 finish by next friday put maria on it,edit_task,"{""assignee"":""maria"",""start_date"":""2026-05-04"",""end_date"":""2026-05-15""}",2026-05-05
start wednesday morning finish by thursday put brenda on it,edit_task,"{""assignee"":""brenda"",""start_date"":""2026-05-06"",""end_date"":""2026-05-07""}",2026-05-05
set start date to tomorrow and due date to end of month,edit_task,"{""start_date"":""2026-05-06"",""end_date"":""2026-05-31""}",2026-05-05
flip it to tracked,edit_task,"{""status"":""tracked""}",2026-05-05
set category to waterproofing,edit_task,"{""category"":""waterproofing""}",2026-05-05
bump this to high priority,edit_task,"{""priority"":""p1""}",2026-05-05
have felix take care of it,edit_task,"{""assignee"":""felix""}",2026-05-05
move to a201 location data center floor and mark pending inspection,edit_task,"{""plan"":""a201"",""location"":""data center floor"",""status"":""pending inspection""}",2026-05-05
update status to needs review,edit_task,"{""status"":""needs review""}",2026-05-05
assign gus cost 2000 and bump it to high priority,edit_task,"{""assignee"":""gus"",""priority"":""p1"",""cost"":""2000""}",2026-05-05
tag urgent and safety,edit_task,"{""tags"":[""urgent"",""safety""]}",2026-05-05
close out by end of month,edit_task,"{""end_date"":""2026-05-31""}",2026-05-05
belongs on plumbing p4,edit_task,"{""plan"":""plumbing p4""}",2026-05-05
get it done by may 16,edit_task,"{""end_date"":""2026-05-16""}",2026-05-05
estimate is 6000,edit_task,"{""cost"":""6000""}",2026-05-05
due next tuesday,edit_task,"{""end_date"":""2026-05-12""}",2026-05-05
cost 12000 crew of 7 category carpentry due by end of day wednesday,edit_task,"{""category"":""carpentry"",""end_date"":""2026-05-06"",""manpower"":""7"",""cost"":""12000""}",2026-05-05
drawing mep1 location unit 7 category tile and assign juan,edit_task,"{""plan"":""mep1"",""location"":""unit 7"",""category"":""tile"",""assignee"":""juan""}",2026-05-05
category framing drawing mep1 and set status to tracked,edit_task,"{""plan"":""mep1"",""category"":""framing"",""status"":""tracked""}",2026-05-05
move to s2 location suite 3b and mark in progress,edit_task,"{""plan"":""s2"",""location"":""suite 3b"",""status"":""in progress""}",2026-05-05
assign ray cost around 12000 and bump it to high priority,edit_task,"{""assignee"":""ray"",""priority"":""p1"",""cost"":""12000""}",2026-05-05
escalate to not urgent but soon,edit_task,"{""priority"":""p2""}",2026-05-05
put two guys on it,edit_task,"{""manpower"":""2""}",2026-05-05
put eddie on it,edit_task,"{""assignee"":""eddie""}",2026-05-05
priority needs to be critical,edit_task,"{""priority"":""p1""}",2026-05-05
this falls under glazing,edit_task,"{""category"":""glazing""}",2026-05-05
set start date to wednesday morning and due date to may 6,edit_task,"{""start_date"":""2026-05-06"",""end_date"":""2026-05-06""}",2026-05-05
bill it at 4000,edit_task,"{""cost"":""4000""}",2026-05-05
it's waterproofing,edit_task,"{""category"":""waterproofing""}",2026-05-05
this goes on sheet 7,edit_task,"{""plan"":""sheet 7""}",2026-05-05
we're looking at 1200 for this,edit_task,"{""cost"":""1200""}",2026-05-05
move this to c1 and set the location to north corridor,edit_task,"{""plan"":""c1"",""location"":""north corridor""}",2026-05-05
close it out as needs review,edit_task,"{""status"":""needs review""}",2026-05-05
7 guys on this one,edit_task,"{""manpower"":""7""}",2026-05-05
set cost to around 8000 manpower to team of 3 and category to framing,edit_task,"{""category"":""framing"",""manpower"":""3"",""cost"":""8000""}",2026-05-05
move to a202 location elevator shaft b and mark verified,edit_task,"{""plan"":""a202"",""location"":""elevator shaft b"",""status"":""verified""}",2026-05-05
drawing e1 location east lobby category concrete and assign brenda,edit_task,"{""plan"":""e1"",""location"":""east lobby"",""category"":""concrete"",""assignee"":""brenda""}",2026-05-05
set start to may 5,edit_task,"{""start_date"":""2026-05-05""}",2026-05-05
send a team of 8 over,edit_task,"{""manpower"":""8""}",2026-05-05
bump it to high priority and push the deadline to thursday,edit_task,"{""end_date"":""2026-05-07"",""priority"":""p1""}",2026-05-05
mark it on hold,edit_task,"{""status"":""on hold""}",2026-05-05
budget is 8000 and category is sprinkler,edit_task,"{""category"":""sprinkler"",""cost"":""8000""}",2026-05-05
move to p2 location exterior facade east and mark tracked,edit_task,"{""plan"":""p2"",""location"":""exterior facade east"",""status"":""tracked""}",2026-05-05
set cost to 15000 manpower to crew of 3 and category to tile,edit_task,"{""category"":""tile"",""manpower"":""3"",""cost"":""15000""}",2026-05-05
push the due date to next tuesday,edit_task,"{""end_date"":""2026-05-12""}",2026-05-05
set priority top priority location boiler room cost about 20000,edit_task,"{""location"":""boiler room"",""priority"":""p1"",""cost"":""20000""}",2026-05-05
set cost to 1500 manpower to crew of 6 and category to plumbing,edit_task,"{""category"":""plumbing"",""manpower"":""6"",""cost"":""1500""}",2026-05-05
invoice will be about 10000,edit_task,"{""cost"":""10000""}",2026-05-05
trade is painting,edit_task,"{""category"":""painting""}",2026-05-05
bump it to low priority and push the deadline to next tuesday,edit_task,"{""end_date"":""2026-05-12"",""priority"":""p3""}",2026-05-05
kick off this monday,edit_task,"{""start_date"":""2026-05-04""}",2026-05-05
change category to tile and mark it in progress,edit_task,"{""category"":""tile"",""status"":""in progress""}",2026-05-05
first day on this is next tuesday,edit_task,"{""start_date"":""2026-05-12""}",2026-05-05
get it done by may 5,edit_task,"{""end_date"":""2026-05-05""}",2026-05-05
assign omar set priority to low and due by may 15,edit_task,"{""assignee"":""omar"",""end_date"":""2026-05-15"",""priority"":""p3""}",2026-05-05
category structural drawing a3 and set status to on hold,edit_task,"{""plan"":""a3"",""category"":""structural"",""status"":""on hold""}",2026-05-05
move to e4 location suite 3b and mark tracked,edit_task,"{""plan"":""e4"",""location"":""suite 3b"",""status"":""tracked""}",2026-05-05
this is on civil sheet 3,edit_task,"{""plan"":""civil sheet 3""}",2026-05-05
change priority to urgent,edit_task,"{""priority"":""p1""}",2026-05-05
it's fire suppression,edit_task,"{""category"":""fire suppression""}",2026-05-05
it belongs in level 2,edit_task,"{""location"":""level 2""}",2026-05-05
set priority priority one location room 201 cost about 20000,edit_task,"{""location"":""room 201"",""priority"":""p1"",""cost"":""20000""}",2026-05-05
set start date to may 4 and due date to friday,edit_task,"{""start_date"":""2026-05-04"",""end_date"":""2026-05-08""}",2026-05-05
belongs to mechanical,edit_task,"{""category"":""mechanical""}",2026-05-05
update to in progress please,edit_task,"{""status"":""in progress""}",2026-05-05
assign to sarah and set priority to medium,edit_task,"{""assignee"":""sarah"",""priority"":""p2""}",2026-05-05
assign pat set priority to can wait and due by end of day wednesday,edit_task,"{""assignee"":""pat"",""end_date"":""2026-05-06"",""priority"":""p3""}",2026-05-05
total cost is 2000,edit_task,"{""cost"":""2000""}",2026-05-05
start this monday finish by next friday put eddie on it,edit_task,"{""assignee"":""eddie"",""start_date"":""2026-05-04"",""end_date"":""2026-05-15""}",2026-05-05
it's in unit 23 and status is needs review,edit_task,"{""location"":""unit 23"",""status"":""needs review""}",2026-05-05
kick off wednesday morning,edit_task,"{""start_date"":""2026-05-06""}",2026-05-05
category fire suppression drawing plumbing p4 and set status to verified,edit_task,"{""plan"":""plumbing p4"",""category"":""fire suppression"",""status"":""verified""}",2026-05-05
assign gus priority medium cost 1200 and due by friday,edit_task,"{""assignee"":""gus"",""end_date"":""2026-05-08"",""priority"":""p2"",""cost"":""1200""}",2026-05-05
done by may 19,edit_task,"{""end_date"":""2026-05-19""}",2026-05-05
set cost to 10000 manpower to 9 workers and category to low voltage,edit_task,"{""category"":""low voltage"",""manpower"":""9"",""cost"":""10000""}",2026-05-05
budget is 6000 and category is insulation,edit_task,"{""category"":""insulation"",""cost"":""6000""}",2026-05-05
set priority asap assign eddie mark open and due by may 21,edit_task,"{""assignee"":""eddie"",""status"":""open"",""end_date"":""2026-05-21"",""priority"":""p1""}",2026-05-05
assign zack on it and get it done by thursday,edit_task,"{""assignee"":""zack"",""end_date"":""2026-05-07""}",2026-05-05
change category to demolition and mark it open,edit_task,"{""category"":""demolition"",""status"":""open""}",2026-05-05
cost 1200 crew of 9 category concrete due before the inspection,edit_task,"{""category"":""concrete"",""end_date"":""2026-05-14"",""manpower"":""9"",""cost"":""1200""}",2026-05-05
set priority critical location loading dock cost 8000,edit_task,"{""location"":""loading dock"",""priority"":""p1"",""cost"":""8000""}",2026-05-05
target completion may 17,edit_task,"{""end_date"":""2026-05-17""}",2026-05-05
reza is handling this one,edit_task,"{""assignee"":""reza""}",2026-05-05
mobilize wednesday morning,edit_task,"{""start_date"":""2026-05-06""}",2026-05-05
set start to may 4,edit_task,"{""start_date"":""2026-05-04""}",2026-05-05
mark it asap,edit_task,"{""priority"":""p1""}",2026-05-05
send a team of 10 over,edit_task,"{""manpower"":""10""}",2026-05-05
move it to the west wing,edit_task,"{""location"":""west wing""}",2026-05-05
this falls under hvac,edit_task,"{""category"":""hvac""}",2026-05-05
cost 2000 crew of 9 category plumbing due by thursday,edit_task,"{""category"":""plumbing"",""end_date"":""2026-05-07"",""manpower"":""9"",""cost"":""2000""}",2026-05-05
tag vic as assignee,edit_task,"{""assignee"":""vic""}",2026-05-05
want it wrapped by next tuesday,edit_task,"{""end_date"":""2026-05-12""}",2026-05-05
task is in the courtyard,edit_task,"{""location"":""courtyard""}",2026-05-05
send a crew of 8 over,edit_task,"{""manpower"":""8""}",2026-05-05
push the due date to end of month,edit_task,"{""end_date"":""2026-05-31""}",2026-05-05
category is insulation,edit_task,"{""category"":""insulation""}",2026-05-05
it belongs in the south corridor,edit_task,"{""location"":""south corridor""}",2026-05-05
deadline is end of month,edit_task,"{""end_date"":""2026-05-31""}",2026-05-05
we're looking at 4000 for this,edit_task,"{""cost"":""4000""}",2026-05-05
begin this monday,edit_task,"{""start_date"":""2026-05-04""}",2026-05-05
set start date to next tuesday and due date to may 16,edit_task,"{""start_date"":""2026-05-12"",""end_date"":""2026-05-16""}",2026-05-05
bump it to high priority and push the deadline to end of day wednesday,edit_task,"{""end_date"":""2026-05-06"",""priority"":""p1""}",2026-05-05
end date is before the owner review,edit_task,"{""end_date"":""2026-05-08""}",2026-05-05
set cost to 5000 and manpower to a team of 6,edit_task,"{""manpower"":""6"",""cost"":""5000""}",2026-05-05
move this to a4 and set location to suite 3b,edit_task,"{""plan"":""a4"",""location"":""suite 3b""}",2026-05-05
start may 4 end may 6 manpower team of 6 and cost about 7000,edit_task,"{""start_date"":""2026-05-04"",""end_date"":""2026-05-06"",""manpower"":""6"",""cost"":""7000""}",2026-05-05
assign steve on it and get it done by may 19,edit_task,"{""assignee"":""steve"",""end_date"":""2026-05-19""}",2026-05-05
it's in suite 101 and status is open,edit_task,"{""location"":""suite 101"",""status"":""open""}",2026-05-05
category carpentry drawing m3 and set status to complete,edit_task,"{""plan"":""m3"",""category"":""carpentry"",""status"":""complete""}",2026-05-05
start may 3 finish by friday put reza on it,edit_task,"{""assignee"":""reza"",""start_date"":""2026-05-03"",""end_date"":""2026-05-08""}",2026-05-05
assign vic cost around 20000 and mark it medium priority,edit_task,"{""assignee"":""vic"",""priority"":""p2"",""cost"":""20000""}",2026-05-05
status is closed,edit_task,"{""status"":""closed""}",2026-05-05
staffing this with 9 workers,edit_task,"{""manpower"":""9""}",2026-05-05
assign hector high priority cost 12000 and due by end of day wednesday,edit_task,"{""assignee"":""hector"",""end_date"":""2026-05-06"",""priority"":""p1"",""cost"":""12000""}",2026-05-05
assign mike make it medium priority and due by end of month,edit_task,"{""assignee"":""mike"",""end_date"":""2026-05-31"",""priority"":""p2""}",2026-05-05
move this to a202 and set location to the courtyard,edit_task,"{""plan"":""a202"",""location"":""courtyard""}",2026-05-05
category fire suppression drawing s1 and set status to closed,edit_task,"{""plan"":""s1"",""category"":""fire suppression"",""status"":""closed""}",2026-05-05
cost 15000 crew of 3 category glazing due by next tuesday,edit_task,"{""category"":""glazing"",""end_date"":""2026-05-12"",""manpower"":""3"",""cost"":""15000""}",2026-05-05
assign maria set priority to medium and due by may 6,edit_task,"{""assignee"":""maria"",""end_date"":""2026-05-06"",""priority"":""p2""}",2026-05-05
set category to fire alarm,edit_task,"{""category"":""fire alarm""}",2026-05-05
budget is 6000 and category is structural,edit_task,"{""category"":""structural"",""cost"":""6000""}",2026-05-05
assign hector set priority to medium and due by thursday,edit_task,"{""assignee"":""hector"",""end_date"":""2026-05-07"",""priority"":""p2""}",2026-05-05
move to e1 location unit 7 and mark tracked,edit_task,"{""plan"":""e1"",""location"":""unit 7"",""status"":""tracked""}",2026-05-05
budget is around 3500 and category is low voltage,edit_task,"{""category"":""low voltage"",""cost"":""3500""}",2026-05-05
assign to dave and set priority to p2,edit_task,"{""assignee"":""dave"",""priority"":""p2""}",2026-05-05
move to sheet 4 location parking garage level 1 and mark needs review,edit_task,"{""plan"":""sheet 4"",""location"":""parking garage level 1"",""status"":""needs review""}",2026-05-05
assign sarah low priority cost roughly 1500 and due by may 8,edit_task,"{""assignee"":""sarah"",""end_date"":""2026-05-08"",""priority"":""p3"",""cost"":""1500""}",2026-05-05
change category to roofing and mark it needs review,edit_task,"{""category"":""roofing"",""status"":""needs review""}",2026-05-05
assign reza cost about 1200 and mark it medium priority,edit_task,"{""assignee"":""reza"",""priority"":""p2"",""cost"":""1200""}",2026-05-05
move to fp2 location loading dock and mark on hold,edit_task,"{""plan"":""fp2"",""location"":""loading dock"",""status"":""on hold""}",2026-05-05
category tile drawing sheet 7 and set status to open,edit_task,"{""plan"":""sheet 7"",""category"":""tile"",""status"":""open""}",2026-05-05
move it to verified,edit_task,"{""status"":""verified""}",2026-05-05
start wednesday morning end may 17 manpower team of 6 and cost around 10000,edit_task,"{""start_date"":""2026-05-06"",""end_date"":""2026-05-17"",""manpower"":""6"",""cost"":""10000""}",2026-05-05
set start date to next tuesday and due date to end of month,edit_task,"{""start_date"":""2026-05-12"",""end_date"":""2026-05-31""}",2026-05-05
it's in the server room and status is pending inspection,edit_task,"{""location"":""server room"",""status"":""pending inspection""}",2026-05-05
assign to lena and set priority to not a rush,edit_task,"{""assignee"":""lena"",""priority"":""p3""}",2026-05-05
set priority medium assign sarah mark complete and due by end of day wednesday,edit_task,"{""assignee"":""sarah"",""status"":""complete"",""end_date"":""2026-05-06"",""priority"":""p2""}",2026-05-05
assign maria set priority to low and due by may 9,edit_task,"{""assignee"":""maria"",""end_date"":""2026-05-09"",""priority"":""p3""}",2026-05-05
set priority to high assign nadia mark verified and due by end of month,edit_task,"{""assignee"":""nadia"",""status"":""verified"",""end_date"":""2026-05-31"",""priority"":""p1""}",2026-05-05
need 3 guys for this,edit_task,"{""manpower"":""3""}",2026-05-05
set cost to 12000 and manpower to 7 workers,edit_task,"{""manpower"":""7"",""cost"":""12000""}",2026-05-05
assign gus bump it to high priority and due by next tuesday,edit_task,"{""assignee"":""gus"",""end_date"":""2026-05-12"",""priority"":""p1""}",2026-05-05
assign brenda cost about 3000 and mark it low priority,edit_task,"{""assignee"":""brenda"",""priority"":""p3"",""cost"":""3000""}",2026-05-05
budget is 5000 and category is fire suppression,edit_task,"{""category"":""fire suppression"",""cost"":""5000""}",2026-05-05
status update to needs review,edit_task,"{""status"":""needs review""}",2026-05-05
file it under mechanical,edit_task,"{""category"":""mechanical""}",2026-05-05
change category to drywall and mark it pending inspection,edit_task,"{""category"":""drywall"",""status"":""pending inspection""}",2026-05-05
set priority to low location ground floor cost around 15000,edit_task,"{""location"":""ground floor"",""priority"":""p3"",""cost"":""15000""}",2026-05-05
set priority medium location level 4 cost 7000,edit_task,"{""location"":""level 4"",""priority"":""p2"",""cost"":""7000""}",2026-05-05
bump it to high priority and push the deadline to end of month,edit_task,"{""end_date"":""2026-05-31"",""priority"":""p1""}",2026-05-05
assign jake make it urgent and due by next friday,edit_task,"{""assignee"":""jake"",""end_date"":""2026-05-15"",""priority"":""p1""}",2026-05-05
drawing roof level location stairwell b category low voltage and assign ray,edit_task,"{""plan"":""roof level"",""location"":""stairwell b"",""category"":""low voltage"",""assignee"":""ray""}",2026-05-05
drawing fp3 location bay 4 category roofing and assign ray,edit_task,"{""plan"":""fp3"",""location"":""bay 4"",""category"":""roofing"",""assignee"":""ray""}",2026-05-05
set priority urgent assign luis mark in progress and due by end of month,edit_task,"{""assignee"":""luis"",""status"":""in progress"",""end_date"":""2026-05-31"",""priority"":""p1""}",2026-05-05
set priority medium location unit 7 cost roughly 1500,edit_task,"{""location"":""unit 7"",""priority"":""p2"",""cost"":""1500""}",2026-05-05
move it to open,edit_task,"{""status"":""open""}",2026-05-05
update to needs review please,edit_task,"{""status"":""needs review""}",2026-05-05
assign juan cost around 6000 and mark it asap,edit_task,"{""assignee"":""juan"",""priority"":""p1"",""cost"":""6000""}",2026-05-05
budget is around 6000 and category is painting,edit_task,"{""category"":""painting"",""cost"":""6000""}",2026-05-05
category sprinkler drawing sheet 7 and set status to on hold,edit_task,"{""plan"":""sheet 7"",""category"":""sprinkler"",""status"":""on hold""}",2026-05-05
this one is at the lobby,edit_task,"{""location"":""lobby""}",2026-05-05
set cost to around 20000 and manpower to 10 guys,edit_task,"{""manpower"":""10"",""cost"":""20000""}",2026-05-05
assign steve cost about 3500 and mark it medium priority,edit_task,"{""assignee"":""steve"",""priority"":""p2"",""cost"":""3500""}",2026-05-05
assign sal on it and get it done by may 15,edit_task,"{""assignee"":""sal"",""end_date"":""2026-05-15""}",2026-05-05
manpower is 5 guys,edit_task,"{""manpower"":""5""}",2026-05-05
set cost to around 12000 and manpower to a team of 1,edit_task,"{""manpower"":""1"",""cost"":""12000""}",2026-05-05
this needs a team of 8,edit_task,"{""manpower"":""8""}",2026-05-05
materials came out to around 3500,edit_task,"{""cost"":""3500""}",2026-05-05
flag it as can wait,edit_task,"{""priority"":""p3""}",2026-05-05
update status to tracked,edit_task,"{""status"":""tracked""}",2026-05-05
set cost to 10000 manpower to a team of 1 and category to carpentry,edit_task,"{""category"":""carpentry"",""manpower"":""1"",""cost"":""10000""}",2026-05-05
this one is at the penthouse level,edit_task,"{""location"":""penthouse level""}",2026-05-05
move it to e4,edit_task,"{""plan"":""e4""}",2026-05-05
assign to zack and set priority to medium,edit_task,"{""assignee"":""zack"",""priority"":""p2""}",2026-05-05
bump it up on this,edit_task,"{""priority"":""p1""}",2026-05-05
update to pending inspection please,edit_task,"{""status"":""pending inspection""}",2026-05-05
set start date to may 4 and due date to next tuesday,edit_task,"{""start_date"":""2026-05-04"",""end_date"":""2026-05-12""}",2026-05-05
update location to unit 23,edit_task,"{""location"":""unit 23""}",2026-05-05
trade is mechanical,edit_task,"{""category"":""mechanical""}",2026-05-05
start wednesday morning finish by may 8 put dave on it,edit_task,"{""assignee"":""dave"",""start_date"":""2026-05-06"",""end_date"":""2026-05-08""}",2026-05-05
assign zack cost 2000 and mark it medium,edit_task,"{""assignee"":""zack"",""priority"":""p2"",""cost"":""2000""}",2026-05-05
cost 1200 crew of 1 category low voltage due by next tuesday,edit_task,"{""category"":""low voltage"",""end_date"":""2026-05-12"",""manpower"":""1"",""cost"":""1200""}",2026-05-05
set cost to around 12000 manpower to a team of 6 and category to carpentry,edit_task,"{""category"":""carpentry"",""manpower"":""6"",""cost"":""12000""}",2026-05-05
this one should be medium priority,edit_task,"{""priority"":""p2""}",2026-05-05
start may 2 end may 4 manpower team of 5 and cost about 3500,edit_task,"{""start_date"":""2026-05-02"",""end_date"":""2026-05-04"",""manpower"":""5"",""cost"":""3500""}",2026-05-05
set category to low voltage,edit_task,"{""category"":""low voltage""}",2026-05-05
budget is about 3000 and category is roofing,edit_task,"{""category"":""roofing"",""cost"":""3000""}",2026-05-05
connect to drawing e4,edit_task,"{""plan"":""e4""}",2026-05-05
start may 3 finish before the owner review put carlos on it,edit_task,"{""assignee"":""carlos"",""start_date"":""2026-05-03"",""end_date"":""2026-05-15""}",2026-05-05
work is in the courtyard,edit_task,"{""location"":""courtyard""}",2026-05-05
assign pat high priority cost 12000 and due before the owner review,edit_task,"{""assignee"":""pat"",""end_date"":""2026-05-14"",""priority"":""p1"",""cost"":""12000""}",2026-05-05
it's in the east wing and status is open,edit_task,"{""location"":""east wing"",""status"":""open""}",2026-05-05
hand it off to brenda,edit_task,"{""assignee"":""brenda""}",2026-05-05
belongs on sheet 9,edit_task,"{""plan"":""sheet 9""}",2026-05-05
set due date to before the owner review,edit_task,"{""end_date"":""2026-05-08""}",2026-05-05
set plan to p3,edit_task,"{""plan"":""p3""}",2026-05-05
allocate a crew of 7 to this,edit_task,"{""manpower"":""7""}",2026-05-05
labor and materials around 6000,edit_task,"{""cost"":""6000""}",2026-05-05
flip it to pending inspection,edit_task,"{""status"":""pending inspection""}",2026-05-05
we'll have a team of 4 on site,edit_task,"{""manpower"":""4""}",2026-05-05
assign jake low priority cost 10000 and due by end of day wednesday,edit_task,"{""assignee"":""jake"",""end_date"":""2026-05-06"",""priority"":""p3"",""cost"":""10000""}",2026-05-05
set cost to around 1500 manpower to a team of 9 and category to fire suppression,edit_task,"{""category"":""fire suppression"",""manpower"":""9"",""cost"":""1500""}",2026-05-05
complete this before the inspection,edit_task,"{""end_date"":""2026-05-09""}",2026-05-05
it's fire alarm,edit_task,"{""category"":""fire alarm""}",2026-05-05
set cost to 15000 manpower to a team of 1 and category to low voltage,edit_task,"{""category"":""low voltage"",""manpower"":""1"",""cost"":""15000""}",2026-05-05
set it to pending inspection,edit_task,"{""status"":""pending inspection""}",2026-05-05
start no later than may 6,edit_task,"{""start_date"":""2026-05-06""}",2026-05-05
assign nadia cost about 6000 and mark it urgent,edit_task,"{""assignee"":""nadia"",""priority"":""p1"",""cost"":""6000""}",2026-05-05
team of 10 on this one,edit_task,"{""manpower"":""10""}",2026-05-05
want it wrapped by end of month,edit_task,"{""end_date"":""2026-05-31""}",2026-05-05
set priority asap location east wing cost 4000,edit_task,"{""location"":""east wing"",""priority"":""p1"",""cost"":""4000""}",2026-05-05
set priority to low assign danny mark open and due by next tuesday,edit_task,"{""assignee"":""danny"",""status"":""open"",""end_date"":""2026-05-12"",""priority"":""p3""}",2026-05-05
set cost to around 12000 manpower to a team of 1 and category to hvac,edit_task,"{""category"":""hvac"",""manpower"":""1"",""cost"":""12000""}",2026-05-05
priority two on this,edit_task,"{""priority"":""p2""}",2026-05-05
assign to hector and set priority to medium,edit_task,"{""assignee"":""hector"",""priority"":""p2""}",2026-05-05
connect to drawing a101,edit_task,"{""plan"":""a101""}",2026-05-05
move to a3 and make it high priority,edit_task,"{""plan"":""a3"",""priority"":""p1""}",2026-05-05
assign troy on it and get it done by may 8,edit_task,"{""assignee"":""troy"",""end_date"":""2026-05-08""}",2026-05-05
move it to a301,edit_task,"{""plan"":""a301""}",2026-05-05
set priority p2 location stairwell b cost about 7000,edit_task,"{""location"":""stairwell b"",""priority"":""p2"",""cost"":""7000""}",2026-05-05
category sprinkler drawing fp2 and set status to verified,edit_task,"{""plan"":""fp2"",""category"":""sprinkler"",""status"":""verified""}",2026-05-05
set start date to may 2 and due date to thursday,edit_task,"{""start_date"":""2026-05-02"",""end_date"":""2026-05-07""}",2026-05-05
that's on tony,edit_task,"{""assignee"":""tony""}",2026-05-05
materials came out to about 3500,edit_task,"{""cost"":""3500""}",2026-05-05
juan should own this,edit_task,"{""assignee"":""juan""}",2026-05-05
flag it as urgent,edit_task,"{""priority"":""p1""}",2026-05-05
hand it off to omar,edit_task,"{""assignee"":""omar""}",2026-05-05
assign brenda medium priority cost about 2500 and due by next tuesday,edit_task,"{""assignee"":""brenda"",""end_date"":""2026-05-12"",""priority"":""p2"",""cost"":""2500""}",2026-05-05
put cost down as 20000,edit_task,"{""cost"":""20000""}",2026-05-05
estimate is 2000,edit_task,"{""cost"":""2000""}",2026-05-05
labor and materials around 8000,edit_task,"{""cost"":""8000""}",2026-05-05
status update to in progress,edit_task,"{""status"":""in progress""}",2026-05-05
assign to omar and set priority to priority two,edit_task,"{""assignee"":""omar"",""priority"":""p2""}",2026-05-05
move it to complete,edit_task,"{""status"":""complete""}",2026-05-05
connect to drawing sheet 7,edit_task,"{""plan"":""sheet 7""}",2026-05-05
tag it to id101,edit_task,"{""plan"":""id101""}",2026-05-05
assign to sarah and set priority to can wait,edit_task,"{""assignee"":""sarah"",""priority"":""p3""}",2026-05-05
assign luis cost 15000 and mark it not critical,edit_task,"{""assignee"":""luis"",""priority"":""p3"",""cost"":""15000""}",2026-05-05
update plan to e2,edit_task,"{""plan"":""e2""}",2026-05-05
set start date to wednesday morning and due date to may 7,edit_task,"{""start_date"":""2026-05-06"",""end_date"":""2026-05-07""}",2026-05-05
set start date to may 3 and due date to end of month,edit_task,"{""start_date"":""2026-05-03"",""end_date"":""2026-05-31""}",2026-05-05
change category to glazing and mark it complete,edit_task,"{""category"":""glazing"",""status"":""complete""}",2026-05-05
assign ray high priority cost 800 and due by may 6,edit_task,"{""assignee"":""ray"",""end_date"":""2026-05-06"",""priority"":""p1"",""cost"":""800""}",2026-05-05
move this to a3 and set location to mezzanine,edit_task,"{""plan"":""a3"",""location"":""mezzanine""}",2026-05-05
move to fp2 location level 5 and mark pending inspection,edit_task,"{""plan"":""fp2"",""location"":""level 5"",""status"":""pending inspection""}",2026-05-05
pass it to vic,edit_task,"{""assignee"":""vic""}",2026-05-05
set priority high priority location grid line b2 cost about 2000,edit_task,"{""location"":""grid line b2"",""priority"":""p1"",""cost"":""2000""}",2026-05-05
set priority to p1 location boiler room cost 8000,edit_task,"{""location"":""boiler room"",""priority"":""p1"",""cost"":""8000""}",2026-05-05
move to fp3 location room 201 and mark closed,edit_task,"{""plan"":""fp3"",""location"":""room 201"",""status"":""closed""}",2026-05-05
assign dave cost 2500 and mark it not a rush,edit_task,"{""assignee"":""dave"",""priority"":""p3"",""cost"":""2500""}",2026-05-05
set start date to next tuesday and due date to next tuesday,edit_task,"{""start_date"":""2026-05-12"",""end_date"":""2026-05-12""}",2026-05-05
start may 4 finish by friday put danny on it,edit_task,"{""assignee"":""danny"",""start_date"":""2026-05-04"",""end_date"":""2026-05-08""}",2026-05-05
bump it to medium and push deadline to may 21,edit_task,"{""end_date"":""2026-05-21"",""priority"":""p2""}",2026-05-05
expected finish may 16,edit_task,"{""end_date"":""2026-05-16""}",2026-05-05
set priority to p1 location parking garage level 1 cost about 20000,edit_task,"{""location"":""parking garage level 1"",""priority"":""p1"",""cost"":""20000""}",2026-05-05
assign nadia cost 12000 and mark it medium priority,edit_task,"{""assignee"":""nadia"",""priority"":""p2"",""cost"":""12000""}",2026-05-05
set location to mechanical room,edit_task,"{""location"":""mechanical room""}",2026-05-05
budget is around 8000 and category is sprinkler,edit_task,"{""category"":""sprinkler"",""cost"":""8000""}",2026-05-05
tag mike as assignee,edit_task,"{""assignee"":""mike""}",2026-05-05
budget is 15000,edit_task,"{""cost"":""15000""}",2026-05-05
category insulation drawing mep1 and set status to in progress,edit_task,"{""plan"":""mep1"",""category"":""insulation"",""status"":""in progress""}",2026-05-05
set start to next tuesday,edit_task,"{""start_date"":""2026-05-12""}",2026-05-05
move to e2 location break room floor 2 and mark verified,edit_task,"{""plan"":""e2"",""location"":""break room floor 2"",""status"":""verified""}",2026-05-05
set priority to low,edit_task,"{""priority"":""p3""}",2026-05-05
assign juan set priority to top priority and due by friday,edit_task,"{""assignee"":""juan"",""end_date"":""2026-05-08"",""priority"":""p1""}",2026-05-05
update location to mechanical room,edit_task,"{""location"":""mechanical room""}",2026-05-05
put it at south corridor,edit_task,"{""location"":""south corridor""}",2026-05-05
assign bobby cost 8000 and mark it low priority,edit_task,"{""assignee"":""bobby"",""priority"":""p3"",""cost"":""8000""}",2026-05-05
pass it to nadia,edit_task,"{""assignee"":""nadia""}",2026-05-05
status is in progress,edit_task,"{""status"":""in progress""}",2026-05-05
bump it to p1 assign omar mark open and due by next tuesday,edit_task,"{""assignee"":""omar"",""status"":""open"",""end_date"":""2026-05-12"",""priority"":""p1""}",2026-05-05
move to a301 and make it low,edit_task,"{""plan"":""a301"",""priority"":""p3""}",2026-05-05
start wednesday morning finish before the gc walkthrough put pat on it,edit_task,"{""assignee"":""pat"",""start_date"":""2026-05-06"",""end_date"":""2026-05-15""}",2026-05-05
set cost to 2500 and manpower to a crew of 5,edit_task,"{""manpower"":""5"",""cost"":""2500""}",2026-05-05
assign this to mike and set priority to high,edit_task,"{""assignee"":""mike"",""priority"":""p1""}",2026-05-05
change the due date to next friday,edit_task,"{""end_date"":""2026-05-15""}",2026-05-05
set status to complete,edit_task,"{""status"":""complete""}",2026-05-05
reassign to sarah and move deadline to may 20,edit_task,"{""assignee"":""sarah"",""end_date"":""2026-05-20""}",2026-05-05
this is an electrical job in the basement,edit_task,"{""category"":""electrical"",""location"":""basement""}",2026-05-05
tag this as urgent and safety,edit_task,"{""tags"":[""urgent"",""safety""]}",2026-05-05
add a note that we need to order more conduit before starting,edit_task,"{""comments"":""we need to order more conduit before starting""}",2026-05-05
set manpower to 4,edit_task,"{""manpower"":""4""}",2026-05-05
cost is 2500,edit_task,"{""cost"":""2500""}",2026-05-05
start date is monday and due date is wednesday,edit_task,"{""start_date"":""2026-05-11"",""end_date"":""2026-05-13""}",2026-05-05
mark as verified,edit_task,"{""status"":""verified""}",2026-05-05
move this to the lobby area and assign to carlos,edit_task,"{""location"":""lobby"",""assignee"":""carlos""}",2026-05-05
this is plumbing work on drawing b2,edit_task,"{""category"":""plumbing"",""plan"":""b2""}",2026-05-05
change status to in review,edit_task,"{""status"":""in review""}",2026-05-05
3 workers needed for this one,edit_task,"{""manpower"":""3""}",2026-05-05
due tomorrow,edit_task,"{""end_date"":""2026-05-06""}",2026-05-05
assign to the electrical crew and tag it as inspection,edit_task,"{""assignee"":""electrical crew"",""tags"":[""inspection""]}",2026-05-05
this job is on plan a3 room 101,edit_task,"{""plan"":""a3"",""location"":""room 101""}",2026-05-05
set cost to 800 and manpower to 2,edit_task,"{""cost"":""800"",""manpower"":""2""}",2026-05-05
mark as tracked,edit_task,"{""status"":""tracked""}",2026-05-05
framing work starts next monday,edit_task,"{""category"":""framing"",""start_date"":""2026-05-11""}",2026-05-05
add note waiting on permit approval,edit_task,"{""comments"":""waiting on permit approval""}",2026-05-05
change assignee to tom priority is p2,edit_task,"{""assignee"":""tom"",""priority"":""p2""}",2026-05-05
location is 2nd floor east wing,edit_task,"{""location"":""2nd floor east wing""}",2026-05-05
tag urgent,edit_task,"{""tags"":[""urgent""]}",2026-05-05
set end date to end of month,edit_task,"{""end_date"":""2026-05-31""}",2026-05-05
hvac work on level 4 assign to dave,edit_task,"{""category"":""hvac"",""location"":""level 4"",""assignee"":""dave""}",2026-05-05
cost 1200 bucks,edit_task,"{""cost"":""1200""}",2026-05-05
change priority to medium,edit_task,"{""priority"":""p2""}",2026-05-05
start this on the 10th finish by the 15th,edit_task,"{""start_date"":""2026-05-10"",""end_date"":""2026-05-15""}",2026-05-05
it's a plumbing issue in room 209 mark it open,edit_task,"{""category"":""plumbing"",""location"":""room 209"",""status"":""open""}",2026-05-05
add comment inspector coming thursday need this done by wednesday,edit_task,"{""comments"":""inspector coming Thursday need this done by Wednesday""}",2026-05-05
reassign from mike to jake,edit_task,"{""assignee"":""jake""}",2026-05-05
tag this fire safety and blocked,edit_task,"{""tags"":[""fire safety"",""blocked""]}",2026-05-05
this is on drawing c5,edit_task,"{""plan"":""c5""}",2026-05-05
set to complete 5 guys on this job cost was 3400,edit_task,"{""status"":""complete"",""manpower"":""5"",""cost"":""3400""}",2026-05-05
electrical in the server room priority high,edit_task,"{""category"":""electrical"",""location"":""server room"",""priority"":""p1""}",2026-05-05
move deadline to next week,edit_task,"{""end_date"":""2026-05-12""}",2026-05-05
assign to maria add note she needs badge access,edit_task,"{""assignee"":""maria"",""comments"":""she needs badge access""}",2026-05-05
start date today,edit_task,"{""start_date"":""2026-05-05""}",2026-05-05
2 workers cost 600,edit_task,"{""manpower"":""2"",""cost"":""600""}",2026-05-05
mark verified location is stairwell b,edit_task,"{""status"":""verified"",""location"":""stairwell b""}",2026-05-05
it's on plan d1 level 1 assign to night crew,edit_task,"{""plan"":""d1"",""location"":""level 1"",""assignee"":""night crew""}",2026-05-05
leave a note that the concrete needs to cure for 48 hours before loading,edit_task,"{""comments"":""concrete needs to cure for 48 hours before loading""}",2026-05-05
add a comment gc requested this be done before the owner walkthrough,edit_task,"{""comments"":""GC requested this be done before the owner walkthrough""}",2026-05-05
note that we're waiting on the permit to come through,edit_task,"{""comments"":""waiting on permit to come through""}",2026-05-05
add note ceiling height in this area is 9 feet not 10,edit_task,"{""comments"":""ceiling height in this area is 9 feet not 10""}",2026-05-05
put a note that the material is already on site,edit_task,"{""comments"":""material is already on site""}",2026-05-05
add a comment that the adjacent unit is occupied so keep noise down after 6pm,edit_task,"{""comments"":""adjacent unit is occupied so keep noise down after 6pm""}",2026-05-05
note asbestos survey required before demo,edit_task,"{""comments"":""asbestos survey required before demo""}",2026-05-05
add comment the owner wants daily progress photos,edit_task,"{""comments"":""owner wants daily progress photos""}",2026-05-05
leave a note that access requires escort from building security,edit_task,"{""comments"":""access requires escort from building security""}",2026-05-05
add a note the existing conduit is undersized might need upsizing,edit_task,"{""comments"":""existing conduit is undersized might need upsizing""}",2026-05-05
note that the inspector is coming friday morning,edit_task,"{""comments"":""inspector is coming Friday morning""}",2026-05-05
add comment coordinate with the plumber before roughing in,edit_task,"{""comments"":""coordinate with the plumber before roughing in""}",2026-05-05
put a note that this is a warranty repair not new work,edit_task,"{""comments"":""this is a warranty repair not new work""}",2026-05-05
add note we need to order the glass panel it's not in stock,edit_task,"{""comments"":""we need to order the glass panel it's not in stock""}",2026-05-05
leave a comment that the water shutoff is in the basement mechanical room,edit_task,"{""comments"":""water shutoff is in the basement mechanical room""}",2026-05-05
note that the gc wants a 2 hour notice before we start demo,edit_task,"{""comments"":""GC wants a 2 hour notice before we start demo""}",2026-05-05
add a note match existing paint color exactly sample on site,edit_task,"{""comments"":""match existing paint color exactly sample on site""}",2026-05-05
comment that this task is blocked waiting on structural engineer sign off,edit_task,"{""comments"":""this task is blocked waiting on structural engineer sign off""}",2026-05-05
assign to jake and add a note he needs a scissor lift for this one,edit_task,"{""assignee"":""jake"",""comments"":""he needs a scissor lift for this one""}",2026-05-05
mark it p1 and note that the tenant is complaining every day,edit_task,"{""priority"":""p1"",""comments"":""tenant is complaining every day""}",2026-05-05
set status to on hold and add note waiting on material delivery,edit_task,"{""status"":""on hold"",""comments"":""waiting on material delivery""}",2026-05-05
due by friday and leave a note that overtime is approved for this one,edit_task,"{""end_date"":""2026-05-08"",""comments"":""overtime is approved for this one""}",2026-05-05
bump to p1 and note roof leak is getting worse with the rain,edit_task,"{""priority"":""p1"",""comments"":""roof leak is getting worse with the rain""}",2026-05-05
set cost to 4500 and add a comment this includes labor and materials,edit_task,"{""cost"":""4500"",""comments"":""this includes labor and materials""}",2026-05-05
assign to carlos note he needs badge access to get into the server room,edit_task,"{""assignee"":""carlos"",""comments"":""he needs badge access to get into the server room""}",2026-05-05
mark it verified and note the inspector signed off this morning,edit_task,"{""status"":""verified"",""comments"":""the inspector signed off this morning""}",2026-05-05
set manpower to 3 and add note the fourth guy called in sick,edit_task,"{""manpower"":""3"",""comments"":""the fourth guy called in sick""}",2026-05-05
location is suite 204 and note the elevator is out use the freight entrance,edit_task,"{""location"":""suite 204"",""comments"":""the elevator is out use the freight entrance""}",2026-05-05
set priority p2 and add a comment this can wait until after the inspection monday,edit_task,"{""priority"":""p2"",""comments"":""this can wait until after the inspection Monday""}",2026-05-05
push deadline to end of month and note we're waiting on back ordered parts,edit_task,"{""end_date"":""2026-05-31"",""comments"":""we're waiting on back ordered parts""}",2026-05-05
set location to north pit 3,edit_task,"{""location"":""north pit 3""}",2026-05-05
make the plan sheet plum 3,edit_task,"{""plan"":""sheet plum 3""}",2026-05-05
put anya on it,edit_task,"{""assignee"":""anya""}",2026-05-05
set assignee to nuri,edit_task,"{""assignee"":""nuri""}",2026-05-05
note that leave badge at desk q,edit_task,"{""comments"":""leave badge at desk q""}",2026-05-05
move this to attic west 9,edit_task,"{""location"":""attic west 9""}",2026-05-05
set plan to aa 19,edit_task,"{""plan"":""aa 19""}",2026-05-05
assign this to johny,edit_task,"{""assignee"":""johny""}",2026-05-05
set location to attic west 9,edit_task,"{""location"":""attic west 9""}",2026-05-05
set assignee to kael,edit_task,"{""assignee"":""kael""}",2026-05-05
set plan to detail fox 2,edit_task,"{""plan"":""detail fox 2""}",2026-05-05
make the assignee zayvion,edit_task,"{""assignee"":""zayvion""}",2026-05-05
make the plan detail fox 2,edit_task,"{""plan"":""detail fox 2""}",2026-05-05
make the plan p memo 6,edit_task,"{""plan"":""p memo 6""}",2026-05-05
set location to unit k2,edit_task,"{""location"":""unit k2""}",2026-05-05
move this to plan fp zebra 4,edit_task,"{""plan"":""fp zebra 4""}",2026-05-05
assign this to omri,edit_task,"{""assignee"":""omri""}",2026-05-05
add a comment temp sensor reads odd at noon,edit_task,"{""comments"":""temp sensor reads odd at noon""}",2026-05-05
set assignee to lev,edit_task,"{""assignee"":""lev""}",2026-05-05
add a comment call vendor about model x9,edit_task,"{""comments"":""call vendor about model x9""}",2026-05-05
put teo on it,edit_task,"{""assignee"":""teo""}",2026-05-05
note that temp sensor reads odd at noon,edit_task,"{""comments"":""temp sensor reads odd at noon""}",2026-05-05
note that call vendor about model x9,edit_task,"{""comments"":""call vendor about model x9""}",2026-05-05
set assignee to soren,edit_task,"{""assignee"":""soren""}",2026-05-05
put omri on it,edit_task,"{""assignee"":""omri""}",2026-05-05
make the plan zone maple,edit_task,"{""plan"":""zone maple""}",2026-05-05
note that send photo to arun,edit_task,"{""comments"":""send photo to arun""}",2026-05-05
assign this to nuri,edit_task,"{""assignee"":""nuri""}",2026-05-05
set location to dock c orange,edit_task,"{""location"":""dock c orange""}",2026-05-05
set location to corridor mint,edit_task,"{""location"":""corridor mint""}",2026-05-05
put johny on it,edit_task,"{""assignee"":""johny""}",2026-05-05
put lev on it,edit_task,"{""assignee"":""lev""}",2026-05-05
set assignee to omri,edit_task,"{""assignee"":""omri""}",2026-05-05
assign this to eshan,edit_task,"{""assignee"":""eshan""}",2026-05-05
put nuri on it,edit_task,"{""assignee"":""nuri""}",2026-05-05
note that owner asked for quiet cart wheels,edit_task,"{""comments"":""owner asked for quiet cart wheels""}",2026-05-05
make the location lab beta,edit_task,"{""location"":""lab beta""}",2026-05-05
add a comment access only after 6 15,edit_task,"{""comments"":""access only after 6 15""}",2026-05-05
assign it to zayvion,edit_task,"{""assignee"":""zayvion""}",2026-05-05
assign this to micah,edit_task,"{""assignee"":""micah""}",2026-05-05
assign it to bram,edit_task,"{""assignee"":""bram""}",2026-05-05
move this to north pit 3,edit_task,"{""location"":""north pit 3""}",2026-05-05
assign it to lev,edit_task,"{""assignee"":""lev""}",2026-05-05
put micah on it,edit_task,"{""assignee"":""micah""}",2026-05-05
move this to corridor mint,edit_task,"{""location"":""corridor mint""}",2026-05-05
tag omri as assignee,edit_task,"{""assignee"":""omri""}",2026-05-05
assign it to eshan,edit_task,"{""assignee"":""eshan""}",2026-05-05
tag johny as assignee,edit_task,"{""assignee"":""johny""}",2026-05-05
assign it to kael,edit_task,"{""assignee"":""kael""}",2026-05-05
set assignee to micah,edit_task,"{""assignee"":""micah""}",2026-05-05
task is in north pit 3,edit_task,"{""location"":""north pit 3""}",2026-05-05
make the location corridor mint,edit_task,"{""location"":""corridor mint""}",2026-05-05
make the location bay q7,edit_task,"{""location"":""bay q7""}",2026-05-05
make the assignee irie,edit_task,"{""assignee"":""irie""}",2026-05-05
assign it to micah,edit_task,"{""assignee"":""micah""}",2026-05-05
make the assignee nuri,edit_task,"{""assignee"":""nuri""}",2026-05-05
location should be corridor mint,edit_task,"{""location"":""corridor mint""}",2026-05-05
assign this to anya,edit_task,"{""assignee"":""anya""}",2026-05-05
put bram on it,edit_task,"{""assignee"":""bram""}",2026-05-05
update location to room zx 14,edit_task,"{""location"":""room zx 14""}",2026-05-05
make the assignee maelle,edit_task,"{""assignee"":""maelle""}",2026-05-05
assign it to omri,edit_task,"{""assignee"":""omri""}",2026-05-05
tag kael as assignee,edit_task,"{""assignee"":""kael""}",2026-05-05
set location to room zx 14,edit_task,"{""location"":""room zx 14""}",2026-05-05
assign this to teo,edit_task,"{""assignee"":""teo""}",2026-05-05
make the assignee bram,edit_task,"{""assignee"":""bram""}",2026-05-05
task is in corridor mint,edit_task,"{""location"":""corridor mint""}",2026-05-05
assign it to teo,edit_task,"{""assignee"":""teo""}",2026-05-05
update location to corridor mint,edit_task,"{""location"":""corridor mint""}",2026-05-05
assign this to maelle,edit_task,"{""assignee"":""maelle""}",2026-05-05
make the assignee kael,edit_task,"{""assignee"":""kael""}",2026-05-05
assign this to bram,edit_task,"{""assignee"":""bram""}",2026-05-05
location should be north pit 3,edit_task,"{""location"":""north pit 3""}",2026-05-05
tag bram as assignee,edit_task,"{""assignee"":""bram""}",2026-05-05
set assignee to eshan,edit_task,"{""assignee"":""eshan""}",2026-05-05
assign this to lev,edit_task,"{""assignee"":""lev""}",2026-05-05
put maelle on it,edit_task,"{""assignee"":""maelle""}",2026-05-05
make the location attic west 9 make the plan c note 17,edit_task,"{""location"":""attic west 9"",""plan"":""c note 17""}",2026-05-05
set category to millwork tag this as closeout and set location to vault m,edit_task,"{""category"":""millwork"",""tags"":[""closeout""],""location"":""vault m""}",2026-05-05
this is electrical work add tag closeout move this to unit k2,edit_task,"{""category"":""electrical"",""tags"":[""closeout""],""location"":""unit k2""}",2026-05-05
set priority to p1 and add a comment leave badge at desk q,edit_task,"{""priority"":""p1"",""comments"":""leave badge at desk q""}",2026-05-05
use tag electrical and make the assignee johny,edit_task,"{""tags"":[""electrical""],""assignee"":""johny""}",2026-05-05
add tag nightshift and put nuri on it,edit_task,"{""tags"":[""nightshift""],""assignee"":""nuri""}",2026-05-05
mark it pending owner signoff put nuri on it note that leave badge at desk q,edit_task,"{""status"":""pending owner signoff"",""assignee"":""nuri"",""comments"":""leave badge at desk q""}",2026-05-05
make it medium and note that key is with lena,edit_task,"{""priority"":""p2"",""comments"":""key is with lena""}",2026-05-05
set category to waterproofing tag this as closeout and set location to unit k2,edit_task,"{""category"":""waterproofing"",""tags"":[""closeout""],""location"":""unit k2""}",2026-05-05
tag this phase2 assign this to anya,edit_task,"{""tags"":[""phase2""],""assignee"":""anya""}",2026-05-05
budget is 10500 put 3 workers on it end on 20260527,edit_task,"{""cost"":""10500"",""manpower"":""3"",""end_date"":""2026-05-27""}",2026-05-05
category should be roofing use tag electrical location should be dock c orange,edit_task,"{""category"":""roofing"",""tags"":[""electrical""],""location"":""dock c orange""}",2026-05-05
set category to acoustics tag this as qahold and set location to north pit 3,edit_task,"{""category"":""acoustics"",""tags"":[""qahold""],""location"":""north pit 3""}",2026-05-05
set location to tower 5 niche and set plan to aa 19,edit_task,"{""location"":""tower 5 niche"",""plan"":""aa 19""}",2026-05-05
make cost 4800 make manpower 6 make end date 20260527,edit_task,"{""cost"":""4800"",""manpower"":""6"",""end_date"":""2026-05-27""}",2026-05-05
move this to dock c orange and put it on aqx 12,edit_task,"{""location"":""dock c orange"",""plan"":""aqx 12""}",2026-05-05
tag this as safety and assign it to faris,edit_task,"{""tags"":[""safety""],""assignee"":""faris""}",2026-05-05
make the location unit k2 make the plan detail fox 2,edit_task,"{""location"":""unit k2"",""plan"":""detail fox 2""}",2026-05-05
add tag ownerpunch and put zayvion on it,edit_task,"{""tags"":[""ownerpunch""],""assignee"":""zayvion""}",2026-05-05
location should be vault m plan should be detail fox 2,edit_task,"{""location"":""vault m"",""plan"":""detail fox 2""}",2026-05-05
set category to roofing tag this as tempfix and set location to corridor mint,edit_task,"{""category"":""roofing"",""tags"":[""tempfix""],""location"":""corridor mint""}",2026-05-05
set location to north pit 3 and set plan to rcp delta 8,edit_task,"{""location"":""north pit 3"",""plan"":""rcp delta 8""}",2026-05-05
set location to attic west 9 and set plan to c note 17,edit_task,"{""location"":""attic west 9"",""plan"":""c note 17""}",2026-05-05
set status to needs review assign it to johny and add a comment call vendor about model x9,edit_task,"{""status"":""needs review"",""assignee"":""johny"",""comments"":""call vendor about model x9""}",2026-05-05
set status to ready for turnover assign it to johny and add a comment temp sensor reads odd at noon,edit_task,"{""status"":""ready for turnover"",""assignee"":""johny"",""comments"":""temp sensor reads odd at noon""}",2026-05-05
budget is 10500 put 3 workers on it end on 20260509,edit_task,"{""cost"":""10500"",""manpower"":""3"",""end_date"":""2026-05-09""}",2026-05-05
set priority to p1 and add a comment do not touch valve p,edit_task,"{""priority"":""p1"",""comments"":""do not touch valve p""}",2026-05-05
set status to verified assign it to johny and add a comment key is with lena,edit_task,"{""status"":""verified"",""assignee"":""johny"",""comments"":""key is with lena""}",2026-05-05
status should be blocked by access assignee is nuri comment says use orange tape only,edit_task,"{""status"":""blocked by access"",""assignee"":""nuri"",""comments"":""use orange tape only""}",2026-05-05
move this to vault m and put it on detail fox 2,edit_task,"{""location"":""vault m"",""plan"":""detail fox 2""}",2026-05-05
tag this riser assign this to omri,edit_task,"{""tags"":[""riser""],""assignee"":""omri""}",2026-05-05
add tag phase2 and put anya on it,edit_task,"{""tags"":[""phase2""],""assignee"":""anya""}",2026-05-05
add tag riser and put omri on it,edit_task,"{""tags"":[""riser""],""assignee"":""omri""}",2026-05-05
set priority to p1 and add a comment key is with lena,edit_task,"{""priority"":""p1"",""comments"":""key is with lena""}",2026-05-05
status should be open assignee is johny comment says call vendor about model x9,edit_task,"{""status"":""open"",""assignee"":""johny"",""comments"":""call vendor about model x9""}",2026-05-05
priority should be p3 comment says owner asked for quiet cart wheels,edit_task,"{""priority"":""p3"",""comments"":""owner asked for quiet cart wheels""}",2026-05-05
tag this ownerpunch assign this to zayvion,edit_task,"{""tags"":[""ownerpunch""],""assignee"":""zayvion""}",2026-05-05
category should be electrical use tag safety location should be attic west 9,edit_task,"{""category"":""electrical"",""tags"":[""safety""],""location"":""attic west 9""}",2026-05-05
set priority to p1 and add a comment use orange tape only,edit_task,"{""priority"":""p1"",""comments"":""use orange tape only""}",2026-05-05
set location to unit k2 and set plan to detail fox 2,edit_task,"{""location"":""unit k2"",""plan"":""detail fox 2""}",2026-05-05
move this to lab beta and put it on rcp delta 8,edit_task,"{""location"":""lab beta"",""plan"":""rcp delta 8""}",2026-05-05
category should be waterproofing use tag tempfix location should be tower 5 niche,edit_task,"{""category"":""waterproofing"",""tags"":[""tempfix""],""location"":""tower 5 niche""}",2026-05-05
priority should be p3 comment says leave badge at desk q,edit_task,"{""priority"":""p3"",""comments"":""leave badge at desk q""}",2026-05-05
tag this as electrical and assign it to johny,edit_task,"{""tags"":[""electrical""],""assignee"":""johny""}",2026-05-05
set cost to 1200 manpower to 1 and due date to 20260527,edit_task,"{""cost"":""1200"",""manpower"":""1"",""end_date"":""2026-05-27""}",2026-05-05
set priority to p1 and add a comment hold for iris from unit 4,edit_task,"{""priority"":""p1"",""comments"":""hold for iris from unit 4""}",2026-05-05
this is painting work add tag electrical move this to dock c orange,edit_task,"{""category"":""painting"",""tags"":[""electrical""],""location"":""dock c orange""}",2026-05-05
tag this nightshift assign this to nuri,edit_task,"{""tags"":[""nightshift""],""assignee"":""nuri""}",2026-05-05
priority should be p3 comment says do not touch valve p,edit_task,"{""priority"":""p3"",""comments"":""do not touch valve p""}",2026-05-05
use tag safety and make the assignee faris,edit_task,"{""tags"":[""safety""],""assignee"":""faris""}",2026-05-05
mark it tracked put nuri on it note that send photo to arun,edit_task,"{""status"":""tracked"",""assignee"":""nuri"",""comments"":""send photo to arun""}",2026-05-05
make it medium and note that leave badge at desk q,edit_task,"{""priority"":""p2"",""comments"":""leave badge at desk q""}",2026-05-05
set cost to 1200 manpower to 1 and due date to 20260509,edit_task,"{""cost"":""1200"",""manpower"":""1"",""end_date"":""2026-05-09""}",2026-05-05
this is controls work add tag safety move this to attic west 9,edit_task,"{""category"":""controls"",""tags"":[""safety""],""location"":""attic west 9""}",2026-05-05
set priority to p1 and add a comment owner asked for quiet cart wheels,edit_task,"{""priority"":""p1"",""comments"":""owner asked for quiet cart wheels""}",2026-05-05
mark it open put johny on it note that call vendor about model x9,edit_task,"{""status"":""open"",""assignee"":""johny"",""comments"":""call vendor about model x9""}",2026-05-05
priority should be p3 comment says temp sensor reads odd at noon,edit_task,"{""priority"":""p3"",""comments"":""temp sensor reads odd at noon""}",2026-05-05
priority should be p3 comment says use orange tape only,edit_task,"{""priority"":""p3"",""comments"":""use orange tape only""}",2026-05-05
make it medium and note that owner asked for quiet cart wheels,edit_task,"{""priority"":""p2"",""comments"":""owner asked for quiet cart wheels""}",2026-05-05
mark it ready for turnover put johny on it note that do not touch valve p,edit_task,"{""status"":""ready for turnover"",""assignee"":""johny"",""comments"":""do not touch valve p""}",2026-05-05
mark it ready for turnover put johny on it note that call vendor about model x9,edit_task,"{""status"":""ready for turnover"",""assignee"":""johny"",""comments"":""call vendor about model x9""}",2026-05-05
make the location north pit 3 make the plan rcp delta 8,edit_task,"{""location"":""north pit 3"",""plan"":""rcp delta 8""}",2026-05-05
status should be blocked by access assignee is nuri comment says leave badge at desk q,edit_task,"{""status"":""blocked by access"",""assignee"":""nuri"",""comments"":""leave badge at desk q""}",2026-05-05
mark it verified put johny on it note that hold for iris from unit 4,edit_task,"{""status"":""verified"",""assignee"":""johny"",""comments"":""hold for iris from unit 4""}",2026-05-05
this is electrical work add tag qahold move this to north pit 3,edit_task,"{""category"":""electrical"",""tags"":[""qahold""],""location"":""north pit 3""}",2026-05-05
this is controls work add tag qahold move this to north pit 3,edit_task,"{""category"":""controls"",""tags"":[""qahold""],""location"":""north pit 3""}",2026-05-05
make it medium and note that temp sensor reads odd at noon,edit_task,"{""priority"":""p2"",""comments"":""temp sensor reads odd at noon""}",2026-05-05
set category to electrical tag this as closeout and set location to unit k2,edit_task,"{""category"":""electrical"",""tags"":[""closeout""],""location"":""unit k2""}",2026-05-05
set priority to p1 and add a comment send photo to arun,edit_task,"{""priority"":""p1"",""comments"":""send photo to arun""}",2026-05-05
set category to life safety tag this as safety and set location to room zx 14,edit_task,"{""category"":""life safety"",""tags"":[""safety""],""location"":""room zx 14""}",2026-05-05
this is millwork work add tag electrical move this to dock c orange,edit_task,"{""category"":""millwork"",""tags"":[""electrical""],""location"":""dock c orange""}",2026-05-05
category should be roofing use tag closeout location should be vault m,edit_task,"{""category"":""roofing"",""tags"":[""closeout""],""location"":""vault m""}",2026-05-05
category should be life safety use tag qahold location should be lab beta,edit_task,"{""category"":""life safety"",""tags"":[""qahold""],""location"":""lab beta""}",2026-05-05
set priority to p1 and add a comment temp sensor reads odd at noon,edit_task,"{""priority"":""p1"",""comments"":""temp sensor reads odd at noon""}",2026-05-05
mark it open put johny on it note that hold for iris from unit 4,edit_task,"{""status"":""open"",""assignee"":""johny"",""comments"":""hold for iris from unit 4""}",2026-05-05
priority should be p3 comment says access only after 6 15,edit_task,"{""priority"":""p3"",""comments"":""access only after 6 15""}",2026-05-05
status should be ready for turnover assignee is johny comment says temp sensor reads odd at noon,edit_task,"{""status"":""ready for turnover"",""assignee"":""johny"",""comments"":""temp sensor reads odd at noon""}",2026-05-05
make it medium and note that hold for iris from unit 4,edit_task,"{""priority"":""p2"",""comments"":""hold for iris from unit 4""}",2026-05-05
category should be millwork use tag safety location should be room zx 14,edit_task,"{""category"":""millwork"",""tags"":[""safety""],""location"":""room zx 14""}",2026-05-05
set status to pending owner signoff assign it to nuri and add a comment owner asked for quiet cart wheels,edit_task,"{""status"":""pending owner signoff"",""assignee"":""nuri"",""comments"":""owner asked for quiet cart wheels""}",2026-05-05
this is acoustics work add tag safety move this to attic west 9,edit_task,"{""category"":""acoustics"",""tags"":[""safety""],""location"":""attic west 9""}",2026-05-05
mark it on hold put nuri on it note that access only after 6 15,edit_task,"{""status"":""on hold"",""assignee"":""nuri"",""comments"":""access only after 6 15""}",2026-05-05
add tag westwing and put teo on it,edit_task,"{""tags"":[""westwing""],""assignee"":""teo""}",2026-05-05
tag this as qahold and assign it to lev,edit_task,"{""tags"":[""qahold""],""assignee"":""lev""}",2026-05-05
category should be waterproofing use tag closeout location should be unit k2,edit_task,"{""category"":""waterproofing"",""tags"":[""closeout""],""location"":""unit k2""}",2026-05-05
set status to on hold assign it to nuri and add a comment owner asked for quiet cart wheels,edit_task,"{""status"":""on hold"",""assignee"":""nuri"",""comments"":""owner asked for quiet cart wheels""}",2026-05-05
make it medium and note that use orange tape only,edit_task,"{""priority"":""p2"",""comments"":""use orange tape only""}",2026-05-05
category should be waterproofing use tag safety location should be attic west 9,edit_task,"{""category"":""waterproofing"",""tags"":[""safety""],""location"":""attic west 9""}",2026-05-05
mark it blocked by access put nuri on it note that owner asked for quiet cart wheels,edit_task,"{""status"":""blocked by access"",""assignee"":""nuri"",""comments"":""owner asked for quiet cart wheels""}",2026-05-05
mark it needs review put johny on it note that temp sensor reads odd at noon,edit_task,"{""status"":""needs review"",""assignee"":""johny"",""comments"":""temp sensor reads odd at noon""}",2026-05-05
set category to acoustics tag this as electrical and set location to bay q7,edit_task,"{""category"":""acoustics"",""tags"":[""electrical""],""location"":""bay q7""}",2026-05-05
make the location tower 5 niche make the plan aa 19,edit_task,"{""location"":""tower 5 niche"",""plan"":""aa 19""}",2026-05-05
make the location bay q7 make the plan aqx 12,edit_task,"{""location"":""bay q7"",""plan"":""aqx 12""}",2026-05-05
use tag closeout and make the assignee eshan,edit_task,"{""tags"":[""closeout""],""assignee"":""eshan""}",2026-05-05
mark it verified put johny on it note that temp sensor reads odd at noon,edit_task,"{""status"":""verified"",""assignee"":""johny"",""comments"":""temp sensor reads odd at noon""}",2026-05-05
use tag tempfix and make the assignee marcell,edit_task,"{""tags"":[""tempfix""],""assignee"":""marcell""}",2026-05-05
make cost 4800 make manpower 6 make end date 20260509,edit_task,"{""cost"":""4800"",""manpower"":""6"",""end_date"":""2026-05-09""}",2026-05-05
set status to ready for turnover assign it to johny and add a comment call vendor about model x9,edit_task,"{""status"":""ready for turnover"",""assignee"":""johny"",""comments"":""call vendor about model x9""}",2026-05-05
make it medium and note that call vendor about model x9,edit_task,"{""priority"":""p2"",""comments"":""call vendor about model x9""}",2026-05-05
status should be pending owner signoff assignee is nuri comment says leave badge at desk q,edit_task,"{""status"":""pending owner signoff"",""assignee"":""nuri"",""comments"":""leave badge at desk q""}",2026-05-05
use tag qahold and make the assignee lev,edit_task,"{""tags"":[""qahold""],""assignee"":""lev""}",2026-05-05
tag this as closeout and assign it to eshan,edit_task,"{""tags"":[""closeout""],""assignee"":""eshan""}",2026-05-05
set category to life safety tag this as closeout and set location to vault m,edit_task,"{""category"":""life safety"",""tags"":[""closeout""],""location"":""vault m""}",2026-05-05
this is roofing work add tag safety move this to room zx 14,edit_task,"{""category"":""roofing"",""tags"":[""safety""],""location"":""room zx 14""}",2026-05-05
category should be acoustics use tag closeout location should be unit k2,edit_task,"{""category"":""acoustics"",""tags"":[""closeout""],""location"":""unit k2""}",2026-05-05
set location to bay q7 and set plan to aqx 12,edit_task,"{""location"":""bay q7"",""plan"":""aqx 12""}",2026-05-05
set category to electrical tag this as safety and set location to attic west 9,edit_task,"{""category"":""electrical"",""tags"":[""safety""],""location"":""attic west 9""}",2026-05-05
location should be corridor mint plan should be aa 19,edit_task,"{""location"":""corridor mint"",""plan"":""aa 19""}",2026-05-05
status should be ready for turnover assignee is johny comment says key is with lena,edit_task,"{""status"":""ready for turnover"",""assignee"":""johny"",""comments"":""key is with lena""}",2026-05-05
tag this as tempfix and assign it to marcell,edit_task,"{""tags"":[""tempfix""],""assignee"":""marcell""}",2026-05-05
move this to room zx 14 and put it on c note 17,edit_task,"{""location"":""room zx 14"",""plan"":""c note 17""}",2026-05-05
priority should be p3 comment says key is with lena,edit_task,"{""priority"":""p3"",""comments"":""key is with lena""}",2026-05-05
set status to verified assign it to johny and add a comment do not touch valve p,edit_task,"{""status"":""verified"",""assignee"":""johny"",""comments"":""do not touch valve p""}",2026-05-05
tag this westwing assign this to teo,edit_task,"{""tags"":[""westwing""],""assignee"":""teo""}",2026-05-05
location should be room zx 14 plan should be c note 17,edit_task,"{""location"":""room zx 14"",""plan"":""c note 17""}",2026-05-05
this is painting work add tag tempfix move this to corridor mint,edit_task,"{""category"":""painting"",""tags"":[""tempfix""],""location"":""corridor mint""}",2026-05-05
make it medium and note that send photo to arun,edit_task,"{""priority"":""p2"",""comments"":""send photo to arun""}",2026-05-05
change category to life safety assign this to omri,edit_task,"{""category"":""life safety"",""assignee"":""omri""}",2026-05-05
set tag to riser and priority to p1,edit_task,"{""tags"":[""riser""],""priority"":""p1""}",2026-05-05
set assignee to nuri and location to dock c orange,edit_task,"{""assignee"":""nuri"",""location"":""dock c orange""}",2026-05-05
this is acoustics work put lev on it,edit_task,"{""category"":""acoustics"",""assignee"":""lev""}",2026-05-05
put this in on hold and set priority to p2,edit_task,"{""status"":""on hold"",""priority"":""p2""}",2026-05-05
make the category painting make the assignee anya,edit_task,"{""category"":""painting"",""assignee"":""anya""}",2026-05-05
set assignee to johny and priority to p2,edit_task,"{""assignee"":""johny"",""priority"":""p2""}",2026-05-05
change category to electrical assign this to faris,edit_task,"{""category"":""electrical"",""assignee"":""faris""}",2026-05-05
set cost to 4800 and assign it to johny,edit_task,"{""cost"":""4800"",""assignee"":""johny""}",2026-05-05
set assignee to johny and priority to p3,edit_task,"{""assignee"":""johny"",""priority"":""p3""}",2026-05-05
make the assignee omri make the location lab beta,edit_task,"{""assignee"":""omri"",""location"":""lab beta""}",2026-05-05
assign this to eshan move this to tower 5 niche,edit_task,"{""assignee"":""eshan"",""location"":""tower 5 niche""}",2026-05-05
set category to controls and assign it to johny,edit_task,"{""category"":""controls"",""assignee"":""johny""}",2026-05-05
category should be painting assignee should be zayvion,edit_task,"{""category"":""painting"",""assignee"":""zayvion""}",2026-05-05
assign this to johny cost is 4800,edit_task,"{""cost"":""4800"",""assignee"":""johny""}",2026-05-05
status should be needs review priority should be p1,edit_task,"{""status"":""needs review"",""priority"":""p1""}",2026-05-05
task is in lab beta leave a comment do not touch valve p,edit_task,"{""location"":""lab beta"",""comments"":""do not touch valve p""}",2026-05-05
make the assignee lev make it p2,edit_task,"{""assignee"":""lev"",""priority"":""p2""}",2026-05-05
assignee should be lev location should be unit k2,edit_task,"{""assignee"":""lev"",""location"":""unit k2""}",2026-05-05
category should be electrical assignee should be eshan,edit_task,"{""category"":""electrical"",""assignee"":""eshan""}",2026-05-05
set status to on hold and priority to p3,edit_task,"{""status"":""on hold"",""priority"":""p3""}",2026-05-05
tag this as nightshift and set priority to p1,edit_task,"{""tags"":[""nightshift""],""priority"":""p1""}",2026-05-05
make cost 22000 make the assignee nuri,edit_task,"{""cost"":""22000"",""assignee"":""nuri""}",2026-05-05
set cost to 22000 and assign it to nuri,edit_task,"{""cost"":""22000"",""assignee"":""nuri""}",2026-05-05
location should be tower 5 niche comment says key is with lena,edit_task,"{""location"":""tower 5 niche"",""comments"":""key is with lena""}",2026-05-05
set assignee to johny and add a comment hold for iris from unit 4,edit_task,"{""assignee"":""johny"",""comments"":""hold for iris from unit 4""}",2026-05-05
set cost to 2500 and assign it to nuri,edit_task,"{""cost"":""2500"",""assignee"":""nuri""}",2026-05-05
this is painting work put teo on it,edit_task,"{""category"":""painting"",""assignee"":""teo""}",2026-05-05
make the assignee eshan add note do not touch valve p,edit_task,"{""assignee"":""eshan"",""comments"":""do not touch valve p""}",2026-05-05
put this in ready for turnover and set priority to p3,edit_task,"{""status"":""ready for turnover"",""priority"":""p3""}",2026-05-05
make the category millwork make the assignee anya,edit_task,"{""category"":""millwork"",""assignee"":""anya""}",2026-05-05
put lev on it leave a comment owner asked for quiet cart wheels,edit_task,"{""assignee"":""lev"",""comments"":""owner asked for quiet cart wheels""}",2026-05-05
make cost 2500 make the assignee nuri,edit_task,"{""cost"":""2500"",""assignee"":""nuri""}",2026-05-05
budget is 10500 put johny on it,edit_task,"{""cost"":""10500"",""assignee"":""johny""}",2026-05-05
set location to dock c orange and add a comment hold for iris from unit 4,edit_task,"{""location"":""dock c orange"",""comments"":""hold for iris from unit 4""}",2026-05-05
put faris on it bump priority to p2,edit_task,"{""assignee"":""faris"",""priority"":""p2""}",2026-05-05
tag should be westwing priority should be p3,edit_task,"{""tags"":[""westwing""],""priority"":""p3""}",2026-05-05
set assignee to johny and location to bay q7,edit_task,"{""assignee"":""johny"",""location"":""bay q7""}",2026-05-05
assignee should be eshan priority should be p3,edit_task,"{""assignee"":""eshan"",""priority"":""p3""}",2026-05-05
set location to bay q7 and add a comment hold for iris from unit 4,edit_task,"{""location"":""bay q7"",""comments"":""hold for iris from unit 4""}",2026-05-05
assign this to faris note that leave badge at desk q,edit_task,"{""assignee"":""faris"",""comments"":""leave badge at desk q""}",2026-05-05
assign this to nuri cost is 7600,edit_task,"{""cost"":""7600"",""assignee"":""nuri""}",2026-05-05
put anya on it task is in room zx 14,edit_task,"{""assignee"":""anya"",""location"":""room zx 14""}",2026-05-05
set assignee to johny and add a comment send photo to arun,edit_task,"{""assignee"":""johny"",""comments"":""send photo to arun""}",2026-05-05
status should be ready for turnover priority should be p2,edit_task,"{""status"":""ready for turnover"",""priority"":""p2""}",2026-05-05
use tag tempfix bump priority to p1,edit_task,"{""tags"":[""tempfix""],""priority"":""p1""}",2026-05-05
set category to roofing and assign it to nuri,edit_task,"{""category"":""roofing"",""assignee"":""nuri""}",2026-05-05
set status to open and priority to p1,edit_task,"{""status"":""open"",""priority"":""p1""}",2026-05-05
assign this to faris note that key is with lena,edit_task,"{""assignee"":""faris"",""comments"":""key is with lena""}",2026-05-05
category should be controls assignee should be eshan,edit_task,"{""category"":""controls"",""assignee"":""eshan""}",2026-05-05
add tag ownerpunch and make it medium,edit_task,"{""tags"":[""ownerpunch""],""priority"":""p2""}",2026-05-05
tag should be qahold priority should be p1,edit_task,"{""tags"":[""qahold""],""priority"":""p1""}",2026-05-05
set tag to riser and priority to p3,edit_task,"{""tags"":[""riser""],""priority"":""p3""}",2026-05-05
use tag phase2 bump priority to p1,edit_task,"{""tags"":[""phase2""],""priority"":""p1""}",2026-05-05
location should be corridor mint comment says key is with lena,edit_task,"{""location"":""corridor mint"",""comments"":""key is with lena""}",2026-05-05
budget is 7600 put nuri on it,edit_task,"{""cost"":""7600"",""assignee"":""nuri""}",2026-05-05
budget is 22000 put nuri on it,edit_task,"{""cost"":""22000"",""assignee"":""nuri""}",2026-05-05
make the location vault m add note temp sensor reads odd at noon,edit_task,"{""location"":""vault m"",""comments"":""temp sensor reads odd at noon""}",2026-05-05
budget is 2500 put nuri on it,edit_task,"{""cost"":""2500"",""assignee"":""nuri""}",2026-05-05
make the category roofing make the assignee anya,edit_task,"{""category"":""roofing"",""assignee"":""anya""}",2026-05-05
assignee should be teo location should be vault m,edit_task,"{""assignee"":""teo"",""location"":""vault m""}",2026-05-05
make the assignee eshan add note use orange tape only,edit_task,"{""assignee"":""eshan"",""comments"":""use orange tape only""}",2026-05-05
move this to room zx 14 note that call vendor about model x9,edit_task,"{""location"":""room zx 14"",""comments"":""call vendor about model x9""}",2026-05-05
make the assignee lev make it p1,edit_task,"{""assignee"":""lev"",""priority"":""p1""}",2026-05-05
assign this to marcell and make it urgent,edit_task,"{""assignee"":""marcell"",""priority"":""p1""}",2026-05-05
add tag closeout and make it urgent,edit_task,"{""tags"":[""closeout""],""priority"":""p1""}",2026-05-05
assign this to zayvion move this to corridor mint,edit_task,"{""assignee"":""zayvion"",""location"":""corridor mint""}",2026-05-05
assignee should be marcell comment says access only after 6 15,edit_task,"{""assignee"":""marcell"",""comments"":""access only after 6 15""}",2026-05-05
budget is 4800 put johny on it,edit_task,"{""cost"":""4800"",""assignee"":""johny""}",2026-05-05
set assignee to johny and priority to p1,edit_task,"{""assignee"":""johny"",""priority"":""p1""}",2026-05-05
this is roofing work put teo on it,edit_task,"{""category"":""roofing"",""assignee"":""teo""}",2026-05-05
make the assignee faris make the location north pit 3,edit_task,"{""assignee"":""faris"",""location"":""north pit 3""}",2026-05-05
move this to attic west 9 note that call vendor about model x9,edit_task,"{""location"":""attic west 9"",""comments"":""call vendor about model x9""}",2026-05-05
tag should be westwing priority should be p1,edit_task,"{""tags"":[""westwing""],""priority"":""p1""}",2026-05-05
make the category electrical make the assignee marcell,edit_task,"{""category"":""electrical"",""assignee"":""marcell""}",2026-05-05
change category to painting assign this to omri,edit_task,"{""category"":""painting"",""assignee"":""omri""}",2026-05-05
make the category controls make the assignee marcell,edit_task,"{""category"":""controls"",""assignee"":""marcell""}",2026-05-05
assign this to marcell and make it low,edit_task,"{""assignee"":""marcell"",""priority"":""p3""}",2026-05-05
put faris on it bump priority to p1,edit_task,"{""assignee"":""faris"",""priority"":""p1""}",2026-05-05
cost should be 7600 assignee should be nuri,edit_task,"{""cost"":""7600"",""assignee"":""nuri""}",2026-05-05
change the status to on hold bump priority to p2,edit_task,"{""status"":""on hold"",""priority"":""p2""}",2026-05-05
category should be millwork assignee should be zayvion,edit_task,"{""category"":""millwork"",""assignee"":""zayvion""}",2026-05-05
make the location unit k2 add note temp sensor reads odd at noon,edit_task,"{""location"":""unit k2"",""comments"":""temp sensor reads odd at noon""}",2026-05-05
status should be blocked by access priority should be p3,edit_task,"{""status"":""blocked by access"",""priority"":""p3""}",2026-05-05
category should be waterproofing assignee should be eshan,edit_task,"{""category"":""waterproofing"",""assignee"":""eshan""}",2026-05-05
make cost 10500 make the assignee johny,edit_task,"{""cost"":""10500"",""assignee"":""johny""}",2026-05-05
change the status to blocked by access bump priority to p3,edit_task,"{""status"":""blocked by access"",""priority"":""p3""}",2026-05-05
assignee should be eshan priority should be p2,edit_task,"{""assignee"":""eshan"",""priority"":""p2""}",2026-05-05
task is in north pit 3 leave a comment do not touch valve p,edit_task,"{""location"":""north pit 3"",""comments"":""do not touch valve p""}",2026-05-05
status should be pending owner signoff priority should be p2,edit_task,"{""status"":""pending owner signoff"",""priority"":""p2""}",2026-05-05
assignee should be eshan priority should be p1,edit_task,"{""assignee"":""eshan"",""priority"":""p1""}",2026-05-05
set cost to 7600 and assign it to nuri,edit_task,"{""cost"":""7600"",""assignee"":""nuri""}",2026-05-05
tag this as electrical and set priority to p2,edit_task,"{""tags"":[""electrical""],""priority"":""p2""}",2026-05-05
set tag to safety and priority to p2,edit_task,"{""tags"":[""safety""],""priority"":""p2""}",2026-05-05
status should be verified priority should be p3,edit_task,"{""status"":""verified"",""priority"":""p3""}",2026-05-05
put faris on it bump priority to p3,edit_task,"{""assignee"":""faris"",""priority"":""p3""}",2026-05-05
set status to tracked and priority to p2,edit_task,"{""status"":""tracked"",""priority"":""p2""}",2026-05-05
put marcell on it task is in attic west 9,edit_task,"{""assignee"":""marcell"",""location"":""attic west 9""}",2026-05-05
tag this as electrical and set priority to p1,edit_task,"{""tags"":[""electrical""],""priority"":""p1""}",2026-05-05
assignee should be marcell comment says temp sensor reads odd at noon,edit_task,"{""assignee"":""marcell"",""comments"":""temp sensor reads odd at noon""}",2026-05-05
assign this to nuri cost is 2500,edit_task,"{""cost"":""2500"",""assignee"":""nuri""}",2026-05-05
cost should be 4800 assignee should be johny,edit_task,"{""cost"":""4800"",""assignee"":""johny""}",2026-05-05
change category to millwork assign this to omri,edit_task,"{""category"":""millwork"",""assignee"":""omri""}",2026-05-05
put this in blocked by access and set priority to p1,edit_task,"{""status"":""blocked by access"",""priority"":""p1""}",2026-05-05
use tag phase2 bump priority to p3,edit_task,"{""tags"":[""phase2""],""priority"":""p3""}",2026-05-05
mark it tracked and make it low,edit_task,"{""status"":""tracked"",""priority"":""p3""}",2026-05-05
set start date to january 3 2025,edit_task,"{""start_date"":""2025-01-03""}",2026-05-05
set due date to january 14 2025,edit_task,"{""end_date"":""2025-01-14""}",2026-05-05
start on january 7 2025 and finish on january 22 2025,edit_task,"{""start_date"":""2025-01-07"",""end_date"":""2025-01-22""}",2026-05-05
get it done by january 18 2025,edit_task,"{""end_date"":""2025-01-18""}",2026-05-05
start date should be january 14 2025 and due date should be january 22 2025,edit_task,"{""start_date"":""2025-01-14"",""end_date"":""2025-01-22""}",2026-05-05
mobilize on january 3 2025,edit_task,"{""start_date"":""2025-01-03""}",2026-05-05
finish on january 27 2025,edit_task,"{""end_date"":""2025-01-27""}",2026-05-05
begin january 18 2025,edit_task,"{""start_date"":""2025-01-18""}",2026-05-05
wrap this up on january 7 2025,edit_task,"{""end_date"":""2025-01-07""}",2026-05-05
set the start date to january 22 2025,edit_task,"{""start_date"":""2025-01-22""}",2026-05-05
set the deadline for january 18 2025,edit_task,"{""end_date"":""2025-01-18""}",2026-05-05
set start date to 3 january 2025,edit_task,"{""start_date"":""2025-01-03""}",2026-05-05
set due date to 14 january 2025,edit_task,"{""end_date"":""2025-01-14""}",2026-05-05
start on 7 january 2025 and finish on 22 january 2025,edit_task,"{""start_date"":""2025-01-07"",""end_date"":""2025-01-22""}",2026-05-05
get it done by 18 january 2025,edit_task,"{""end_date"":""2025-01-18""}",2026-05-05
start date should be 14 january 2025 and due date should be 22 january 2025,edit_task,"{""start_date"":""2025-01-14"",""end_date"":""2025-01-22""}",2026-05-05
mobilize on 3 january 2025,edit_task,"{""start_date"":""2025-01-03""}",2026-05-05
finish on 27 january 2025,edit_task,"{""end_date"":""2025-01-27""}",2026-05-05
begin 18 january 2025,edit_task,"{""start_date"":""2025-01-18""}",2026-05-05
wrap this up on 7 january 2025,edit_task,"{""end_date"":""2025-01-07""}",2026-05-05
set the start date to 22 january 2025,edit_task,"{""start_date"":""2025-01-22""}",2026-05-05
set the deadline for 18 january 2025,edit_task,"{""end_date"":""2025-01-18""}",2026-05-05
set start date to february 3 2026,edit_task,"{""start_date"":""2026-02-03""}",2026-05-05
set due date to february 14 2026,edit_task,"{""end_date"":""2026-02-14""}",2026-05-05
start on february 7 2026 and finish on february 22 2026,edit_task,"{""start_date"":""2026-02-07"",""end_date"":""2026-02-22""}",2026-05-05
get it done by february 18 2026,edit_task,"{""end_date"":""2026-02-18""}",2026-05-05
start date should be february 14 2026 and due date should be february 22 2026,edit_task,"{""start_date"":""2026-02-14"",""end_date"":""2026-02-22""}",2026-05-05
mobilize on february 3 2026,edit_task,"{""start_date"":""2026-02-03""}",2026-05-05
finish on february 27 2026,edit_task,"{""end_date"":""2026-02-27""}",2026-05-05
begin february 18 2026,edit_task,"{""start_date"":""2026-02-18""}",2026-05-05
wrap this up on february 7 2026,edit_task,"{""end_date"":""2026-02-07""}",2026-05-05
set the start date to february 22 2026,edit_task,"{""start_date"":""2026-02-22""}",2026-05-05
set the deadline for february 18 2026,edit_task,"{""end_date"":""2026-02-18""}",2026-05-05
set start date to 3 february 2026,edit_task,"{""start_date"":""2026-02-03""}",2026-05-05
set due date to 14 february 2026,edit_task,"{""end_date"":""2026-02-14""}",2026-05-05
start on 7 february 2026 and finish on 22 february 2026,edit_task,"{""start_date"":""2026-02-07"",""end_date"":""2026-02-22""}",2026-05-05
get it done by 18 february 2026,edit_task,"{""end_date"":""2026-02-18""}",2026-05-05
start date should be 14 february 2026 and due date should be 22 february 2026,edit_task,"{""start_date"":""2026-02-14"",""end_date"":""2026-02-22""}",2026-05-05
mobilize on 3 february 2026,edit_task,"{""start_date"":""2026-02-03""}",2026-05-05
finish on 27 february 2026,edit_task,"{""end_date"":""2026-02-27""}",2026-05-05
begin 18 february 2026,edit_task,"{""start_date"":""2026-02-18""}",2026-05-05
wrap this up on 7 february 2026,edit_task,"{""end_date"":""2026-02-07""}",2026-05-05
set the start date to 22 february 2026,edit_task,"{""start_date"":""2026-02-22""}",2026-05-05
set the deadline for 18 february 2026,edit_task,"{""end_date"":""2026-02-18""}",2026-05-05
set start date to march 3 2027,edit_task,"{""start_date"":""2027-03-03""}",2026-05-05
set due date to march 14 2027,edit_task,"{""end_date"":""2027-03-14""}",2026-05-05
start on march 7 2027 and finish on march 22 2027,edit_task,"{""start_date"":""2027-03-07"",""end_date"":""2027-03-22""}",2026-05-05
get it done by march 18 2027,edit_task,"{""end_date"":""2027-03-18""}",2026-05-05
start date should be march 14 2027 and due date should be march 22 2027,edit_task,"{""start_date"":""2027-03-14"",""end_date"":""2027-03-22""}",2026-05-05
mobilize on march 3 2027,edit_task,"{""start_date"":""2027-03-03""}",2026-05-05
finish on march 27 2027,edit_task,"{""end_date"":""2027-03-27""}",2026-05-05
begin march 18 2027,edit_task,"{""start_date"":""2027-03-18""}",2026-05-05
wrap this up on march 7 2027,edit_task,"{""end_date"":""2027-03-07""}",2026-05-05
set the start date to march 22 2027,edit_task,"{""start_date"":""2027-03-22""}",2026-05-05
set the deadline for march 18 2027,edit_task,"{""end_date"":""2027-03-18""}",2026-05-05
set start date to 3 march 2027,edit_task,"{""start_date"":""2027-03-03""}",2026-05-05
set due date to 14 march 2027,edit_task,"{""end_date"":""2027-03-14""}",2026-05-05
start on 7 march 2027 and finish on 22 march 2027,edit_task,"{""start_date"":""2027-03-07"",""end_date"":""2027-03-22""}",2026-05-05
get it done by 18 march 2027,edit_task,"{""end_date"":""2027-03-18""}",2026-05-05
start date should be 14 march 2027 and due date should be 22 march 2027,edit_task,"{""start_date"":""2027-03-14"",""end_date"":""2027-03-22""}",2026-05-05
mobilize on 3 march 2027,edit_task,"{""start_date"":""2027-03-03""}",2026-05-05
finish on 27 march 2027,edit_task,"{""end_date"":""2027-03-27""}",2026-05-05
begin 18 march 2027,edit_task,"{""start_date"":""2027-03-18""}",2026-05-05
wrap this up on 7 march 2027,edit_task,"{""end_date"":""2027-03-07""}",2026-05-05
set the start date to 22 march 2027,edit_task,"{""start_date"":""2027-03-22""}",2026-05-05
set the deadline for 18 march 2027,edit_task,"{""end_date"":""2027-03-18""}",2026-05-05
set start date to april 3 2025,edit_task,"{""start_date"":""2025-04-03""}",2026-05-05
set due date to april 14 2025,edit_task,"{""end_date"":""2025-04-14""}",2026-05-05
start on april 7 2025 and finish on april 22 2025,edit_task,"{""start_date"":""2025-04-07"",""end_date"":""2025-04-22""}",2026-05-05
get it done by april 18 2025,edit_task,"{""end_date"":""2025-04-18""}",2026-05-05
start date should be april 14 2025 and due date should be april 22 2025,edit_task,"{""start_date"":""2025-04-14"",""end_date"":""2025-04-22""}",2026-05-05
mobilize on april 3 2025,edit_task,"{""start_date"":""2025-04-03""}",2026-05-05
finish on april 27 2025,edit_task,"{""end_date"":""2025-04-27""}",2026-05-05
begin april 18 2025,edit_task,"{""start_date"":""2025-04-18""}",2026-05-05
wrap this up on april 7 2025,edit_task,"{""end_date"":""2025-04-07""}",2026-05-05
set the start date to april 22 2025,edit_task,"{""start_date"":""2025-04-22""}",2026-05-05
set the deadline for april 18 2025,edit_task,"{""end_date"":""2025-04-18""}",2026-05-05
set start date to 3 april 2025,edit_task,"{""start_date"":""2025-04-03""}",2026-05-05
set due date to 14 april 2025,edit_task,"{""end_date"":""2025-04-14""}",2026-05-05
start on 7 april 2025 and finish on 22 april 2025,edit_task,"{""start_date"":""2025-04-07"",""end_date"":""2025-04-22""}",2026-05-05
get it done by 18 april 2025,edit_task,"{""end_date"":""2025-04-18""}",2026-05-05
start date should be 14 april 2025 and due date should be 22 april 2025,edit_task,"{""start_date"":""2025-04-14"",""end_date"":""2025-04-22""}",2026-05-05
mobilize on 3 april 2025,edit_task,"{""start_date"":""2025-04-03""}",2026-05-05
finish on 27 april 2025,edit_task,"{""end_date"":""2025-04-27""}",2026-05-05
begin 18 april 2025,edit_task,"{""start_date"":""2025-04-18""}",2026-05-05
wrap this up on 7 april 2025,edit_task,"{""end_date"":""2025-04-07""}",2026-05-05
set the start date to 22 april 2025,edit_task,"{""start_date"":""2025-04-22""}",2026-05-05
set the deadline for 18 april 2025,edit_task,"{""end_date"":""2025-04-18""}",2026-05-05
set start date to may 3 2026,edit_task,"{""start_date"":""2026-05-03""}",2026-05-05
set due date to may 14 2026,edit_task,"{""end_date"":""2026-05-14""}",2026-05-05
start on may 7 2026 and finish on may 22 2026,edit_task,"{""start_date"":""2026-05-07"",""end_date"":""2026-05-22""}",2026-05-05
get it done by may 18 2026,edit_task,"{""end_date"":""2026-05-18""}",2026-05-05
start date should be may 14 2026 and due date should be may 22 2026,edit_task,"{""start_date"":""2026-05-14"",""end_date"":""2026-05-22""}",2026-05-05
mobilize on may 3 2026,edit_task,"{""start_date"":""2026-05-03""}",2026-05-05
finish on may 27 2026,edit_task,"{""end_date"":""2026-05-27""}",2026-05-05
begin may 18 2026,edit_task,"{""start_date"":""2026-05-18""}",2026-05-05
wrap this up on may 7 2026,edit_task,"{""end_date"":""2026-05-07""}",2026-05-05
set the start date to may 22 2026,edit_task,"{""start_date"":""2026-05-22""}",2026-05-05
set the deadline for may 18 2026,edit_task,"{""end_date"":""2026-05-18""}",2026-05-05
set start date to 3 may 2026,edit_task,"{""start_date"":""2026-05-03""}",2026-05-05
set due date to 14 may 2026,edit_task,"{""end_date"":""2026-05-14""}",2026-05-05
start on 7 may 2026 and finish on 22 may 2026,edit_task,"{""start_date"":""2026-05-07"",""end_date"":""2026-05-22""}",2026-05-05
get it done by 18 may 2026,edit_task,"{""end_date"":""2026-05-18""}",2026-05-05
start date should be 14 may 2026 and due date should be 22 may 2026,edit_task,"{""start_date"":""2026-05-14"",""end_date"":""2026-05-22""}",2026-05-05
mobilize on 3 may 2026,edit_task,"{""start_date"":""2026-05-03""}",2026-05-05
finish on 27 may 2026,edit_task,"{""end_date"":""2026-05-27""}",2026-05-05
begin 18 may 2026,edit_task,"{""start_date"":""2026-05-18""}",2026-05-05
wrap this up on 7 may 2026,edit_task,"{""end_date"":""2026-05-07""}",2026-05-05
set the start date to 22 may 2026,edit_task,"{""start_date"":""2026-05-22""}",2026-05-05
set the deadline for 18 may 2026,edit_task,"{""end_date"":""2026-05-18""}",2026-05-05
set start date to june 3 2027,edit_task,"{""start_date"":""2027-06-03""}",2026-05-05
set due date to june 14 2027,edit_task,"{""end_date"":""2027-06-14""}",2026-05-05
start on june 7 2027 and finish on june 22 2027,edit_task,"{""start_date"":""2027-06-07"",""end_date"":""2027-06-22""}",2026-05-05
get it done by june 18 2027,edit_task,"{""end_date"":""2027-06-18""}",2026-05-05
start date should be june 14 2027 and due date should be june 22 2027,edit_task,"{""start_date"":""2027-06-14"",""end_date"":""2027-06-22""}",2026-05-05
mobilize on june 3 2027,edit_task,"{""start_date"":""2027-06-03""}",2026-05-05
finish on june 27 2027,edit_task,"{""end_date"":""2027-06-27""}",2026-05-05
begin june 18 2027,edit_task,"{""start_date"":""2027-06-18""}",2026-05-05
wrap this up on june 7 2027,edit_task,"{""end_date"":""2027-06-07""}",2026-05-05
set the start date to june 22 2027,edit_task,"{""start_date"":""2027-06-22""}",2026-05-05
set the deadline for june 18 2027,edit_task,"{""end_date"":""2027-06-18""}",2026-05-05
set start date to 3 june 2027,edit_task,"{""start_date"":""2027-06-03""}",2026-05-05
set due date to 14 june 2027,edit_task,"{""end_date"":""2027-06-14""}",2026-05-05
start on 7 june 2027 and finish on 22 june 2027,edit_task,"{""start_date"":""2027-06-07"",""end_date"":""2027-06-22""}",2026-05-05
get it done by 18 june 2027,edit_task,"{""end_date"":""2027-06-18""}",2026-05-05
start date should be 14 june 2027 and due date should be 22 june 2027,edit_task,"{""start_date"":""2027-06-14"",""end_date"":""2027-06-22""}",2026-05-05
mobilize on 3 june 2027,edit_task,"{""start_date"":""2027-06-03""}",2026-05-05
finish on 27 june 2027,edit_task,"{""end_date"":""2027-06-27""}",2026-05-05
begin 18 june 2027,edit_task,"{""start_date"":""2027-06-18""}",2026-05-05
wrap this up on 7 june 2027,edit_task,"{""end_date"":""2027-06-07""}",2026-05-05
set the start date to 22 june 2027,edit_task,"{""start_date"":""2027-06-22""}",2026-05-05
set the deadline for 18 june 2027,edit_task,"{""end_date"":""2027-06-18""}",2026-05-05
set start date to july 3 2025,edit_task,"{""start_date"":""2025-07-03""}",2026-05-05
set due date to july 14 2025,edit_task,"{""end_date"":""2025-07-14""}",2026-05-05
start on july 7 2025 and finish on july 22 2025,edit_task,"{""start_date"":""2025-07-07"",""end_date"":""2025-07-22""}",2026-05-05
get it done by july 18 2025,edit_task,"{""end_date"":""2025-07-18""}",2026-05-05
start date should be july 14 2025 and due date should be july 22 2025,edit_task,"{""start_date"":""2025-07-14"",""end_date"":""2025-07-22""}",2026-05-05
mobilize on july 3 2025,edit_task,"{""start_date"":""2025-07-03""}",2026-05-05
finish on july 27 2025,edit_task,"{""end_date"":""2025-07-27""}",2026-05-05
begin july 18 2025,edit_task,"{""start_date"":""2025-07-18""}",2026-05-05
wrap this up on july 7 2025,edit_task,"{""end_date"":""2025-07-07""}",2026-05-05
set the start date to july 22 2025,edit_task,"{""start_date"":""2025-07-22""}",2026-05-05
set the deadline for july 18 2025,edit_task,"{""end_date"":""2025-07-18""}",2026-05-05
set start date to 3 july 2025,edit_task,"{""start_date"":""2025-07-03""}",2026-05-05
set due date to 14 july 2025,edit_task,"{""end_date"":""2025-07-14""}",2026-05-05
start on 7 july 2025 and finish on 22 july 2025,edit_task,"{""start_date"":""2025-07-07"",""end_date"":""2025-07-22""}",2026-05-05
get it done by 18 july 2025,edit_task,"{""end_date"":""2025-07-18""}",2026-05-05
start date should be 14 july 2025 and due date should be 22 july 2025,edit_task,"{""start_date"":""2025-07-14"",""end_date"":""2025-07-22""}",2026-05-05
mobilize on 3 july 2025,edit_task,"{""start_date"":""2025-07-03""}",2026-05-05
finish on 27 july 2025,edit_task,"{""end_date"":""2025-07-27""}",2026-05-05
begin 18 july 2025,edit_task,"{""start_date"":""2025-07-18""}",2026-05-05
wrap this up on 7 july 2025,edit_task,"{""end_date"":""2025-07-07""}",2026-05-05
set the start date to 22 july 2025,edit_task,"{""start_date"":""2025-07-22""}",2026-05-05
set the deadline for 18 july 2025,edit_task,"{""end_date"":""2025-07-18""}",2026-05-05
set start date to august 3 2026,edit_task,"{""start_date"":""2026-08-03""}",2026-05-05
set due date to august 14 2026,edit_task,"{""end_date"":""2026-08-14""}",2026-05-05
start on august 7 2026 and finish on august 22 2026,edit_task,"{""start_date"":""2026-08-07"",""end_date"":""2026-08-22""}",2026-05-05
get it done by august 18 2026,edit_task,"{""end_date"":""2026-08-18""}",2026-05-05
start date should be august 14 2026 and due date should be august 22 2026,edit_task,"{""start_date"":""2026-08-14"",""end_date"":""2026-08-22""}",2026-05-05
mobilize on august 3 2026,edit_task,"{""start_date"":""2026-08-03""}",2026-05-05
finish on august 27 2026,edit_task,"{""end_date"":""2026-08-27""}",2026-05-05
begin august 18 2026,edit_task,"{""start_date"":""2026-08-18""}",2026-05-05
wrap this up on august 7 2026,edit_task,"{""end_date"":""2026-08-07""}",2026-05-05
set the start date to august 22 2026,edit_task,"{""start_date"":""2026-08-22""}",2026-05-05
set the deadline for august 18 2026,edit_task,"{""end_date"":""2026-08-18""}",2026-05-05
set start date to 3 august 2026,edit_task,"{""start_date"":""2026-08-03""}",2026-05-05
set due date to 14 august 2026,edit_task,"{""end_date"":""2026-08-14""}",2026-05-05
start on 7 august 2026 and finish on 22 august 2026,edit_task,"{""start_date"":""2026-08-07"",""end_date"":""2026-08-22""}",2026-05-05
get it done by 18 august 2026,edit_task,"{""end_date"":""2026-08-18""}",2026-05-05
start date should be 14 august 2026 and due date should be 22 august 2026,edit_task,"{""start_date"":""2026-08-14"",""end_date"":""2026-08-22""}",2026-05-05
mobilize on 3 august 2026,edit_task,"{""start_date"":""2026-08-03""}",2026-05-05
finish on 27 august 2026,edit_task,"{""end_date"":""2026-08-27""}",2026-05-05
begin 18 august 2026,edit_task,"{""start_date"":""2026-08-18""}",2026-05-05
wrap this up on 7 august 2026,edit_task,"{""end_date"":""2026-08-07""}",2026-05-05
set the start date to 22 august 2026,edit_task,"{""start_date"":""2026-08-22""}",2026-05-05
set the deadline for 18 august 2026,edit_task,"{""end_date"":""2026-08-18""}",2026-05-05
set start date to september 3 2027,edit_task,"{""start_date"":""2027-09-03""}",2026-05-05
set due date to september 14 2027,edit_task,"{""end_date"":""2027-09-14""}",2026-05-05
start on september 7 2027 and finish on september 22 2027,edit_task,"{""start_date"":""2027-09-07"",""end_date"":""2027-09-22""}",2026-05-05
get it done by september 18 2027,edit_task,"{""end_date"":""2027-09-18""}",2026-05-05
start date should be september 14 2027 and due date should be september 22 2027,edit_task,"{""start_date"":""2027-09-14"",""end_date"":""2027-09-22""}",2026-05-05
mobilize on september 3 2027,edit_task,"{""start_date"":""2027-09-03""}",2026-05-05
finish on september 27 2027,edit_task,"{""end_date"":""2027-09-27""}",2026-05-05
begin september 18 2027,edit_task,"{""start_date"":""2027-09-18""}",2026-05-05
wrap this up on september 7 2027,edit_task,"{""end_date"":""2027-09-07""}",2026-05-05
set the start date to september 22 2027,edit_task,"{""start_date"":""2027-09-22""}",2026-05-05
set the deadline for september 18 2027,edit_task,"{""end_date"":""2027-09-18""}",2026-05-05
set start date to 3 september 2027,edit_task,"{""start_date"":""2027-09-03""}",2026-05-05
set due date to 14 september 2027,edit_task,"{""end_date"":""2027-09-14""}",2026-05-05
start on 7 september 2027 and finish on 22 september 2027,edit_task,"{""start_date"":""2027-09-07"",""end_date"":""2027-09-22""}",2026-05-05
get it done by 18 september 2027,edit_task,"{""end_date"":""2027-09-18""}",2026-05-05
start date should be 14 september 2027 and due date should be 22 september 2027,edit_task,"{""start_date"":""2027-09-14"",""end_date"":""2027-09-22""}",2026-05-05
mobilize on 3 september 2027,edit_task,"{""start_date"":""2027-09-03""}",2026-05-05
finish on 27 september 2027,edit_task,"{""end_date"":""2027-09-27""}",2026-05-05
begin 18 september 2027,edit_task,"{""start_date"":""2027-09-18""}",2026-05-05
wrap this up on 7 september 2027,edit_task,"{""end_date"":""2027-09-07""}",2026-05-05
set the start date to 22 september 2027,edit_task,"{""start_date"":""2027-09-22""}",2026-05-05
set the deadline for 18 september 2027,edit_task,"{""end_date"":""2027-09-18""}",2026-05-05
set start date to october 3 2025,edit_task,"{""start_date"":""2025-10-03""}",2026-05-05
set due date to october 14 2025,edit_task,"{""end_date"":""2025-10-14""}",2026-05-05
start on october 7 2025 and finish on october 22 2025,edit_task,"{""start_date"":""2025-10-07"",""end_date"":""2025-10-22""}",2026-05-05
get it done by october 18 2025,edit_task,"{""end_date"":""2025-10-18""}",2026-05-05
start date should be october 14 2025 and due date should be october 22 2025,edit_task,"{""start_date"":""2025-10-14"",""end_date"":""2025-10-22""}",2026-05-05
mobilize on october 3 2025,edit_task,"{""start_date"":""2025-10-03""}",2026-05-05
finish on october 27 2025,edit_task,"{""end_date"":""2025-10-27""}",2026-05-05
begin october 18 2025,edit_task,"{""start_date"":""2025-10-18""}",2026-05-05
wrap this up on october 7 2025,edit_task,"{""end_date"":""2025-10-07""}",2026-05-05
set the start date to october 22 2025,edit_task,"{""start_date"":""2025-10-22""}",2026-05-05
set the deadline for october 18 2025,edit_task,"{""end_date"":""2025-10-18""}",2026-05-05
set start date to 3 october 2025,edit_task,"{""start_date"":""2025-10-03""}",2026-05-05
set due date to 14 october 2025,edit_task,"{""end_date"":""2025-10-14""}",2026-05-05
start on 7 october 2025 and finish on 22 october 2025,edit_task,"{""start_date"":""2025-10-07"",""end_date"":""2025-10-22""}",2026-05-05
get it done by 18 october 2025,edit_task,"{""end_date"":""2025-10-18""}",2026-05-05
start date should be 14 october 2025 and due date should be 22 october 2025,edit_task,"{""start_date"":""2025-10-14"",""end_date"":""2025-10-22""}",2026-05-05
mobilize on 3 october 2025,edit_task,"{""start_date"":""2025-10-03""}",2026-05-05
finish on 27 october 2025,edit_task,"{""end_date"":""2025-10-27""}",2026-05-05
begin 18 october 2025,edit_task,"{""start_date"":""2025-10-18""}",2026-05-05
wrap this up on 7 october 2025,edit_task,"{""end_date"":""2025-10-07""}",2026-05-05
set the start date to 22 october 2025,edit_task,"{""start_date"":""2025-10-22""}",2026-05-05
set the deadline for 18 october 2025,edit_task,"{""end_date"":""2025-10-18""}",2026-05-05
set start date to november 3 2026,edit_task,"{""start_date"":""2026-11-03""}",2026-05-05
set due date to november 14 2026,edit_task,"{""end_date"":""2026-11-14""}",2026-05-05
start on november 7 2026 and finish on november 22 2026,edit_task,"{""start_date"":""2026-11-07"",""end_date"":""2026-11-22""}",2026-05-05
get it done by november 18 2026,edit_task,"{""end_date"":""2026-11-18""}",2026-05-05
start date should be november 14 2026 and due date should be november 22 2026,edit_task,"{""start_date"":""2026-11-14"",""end_date"":""2026-11-22""}",2026-05-05
mobilize on november 3 2026,edit_task,"{""start_date"":""2026-11-03""}",2026-05-05
finish on november 27 2026,edit_task,"{""end_date"":""2026-11-27""}",2026-05-05
begin november 18 2026,edit_task,"{""start_date"":""2026-11-18""}",2026-05-05
wrap this up on november 7 2026,edit_task,"{""end_date"":""2026-11-07""}",2026-05-05
set the start date to november 22 2026,edit_task,"{""start_date"":""2026-11-22""}",2026-05-05
set the deadline for november 18 2026,edit_task,"{""end_date"":""2026-11-18""}",2026-05-05
set start date to 3 november 2026,edit_task,"{""start_date"":""2026-11-03""}",2026-05-05
set due date to 14 november 2026,edit_task,"{""end_date"":""2026-11-14""}",2026-05-05
start on 7 november 2026 and finish on 22 november 2026,edit_task,"{""start_date"":""2026-11-07"",""end_date"":""2026-11-22""}",2026-05-05
get it done by 18 november 2026,edit_task,"{""end_date"":""2026-11-18""}",2026-05-05
start date should be 14 november 2026 and due date should be 22 november 2026,edit_task,"{""start_date"":""2026-11-14"",""end_date"":""2026-11-22""}",2026-05-05
mobilize on 3 november 2026,edit_task,"{""start_date"":""2026-11-03""}",2026-05-05
finish on 27 november 2026,edit_task,"{""end_date"":""2026-11-27""}",2026-05-05
begin 18 november 2026,edit_task,"{""start_date"":""2026-11-18""}",2026-05-05
wrap this up on 7 november 2026,edit_task,"{""end_date"":""2026-11-07""}",2026-05-05
set the start date to 22 november 2026,edit_task,"{""start_date"":""2026-11-22""}",2026-05-05
set the deadline for 18 november 2026,edit_task,"{""end_date"":""2026-11-18""}",2026-05-05
set start date to december 3 2027,edit_task,"{""start_date"":""2027-12-03""}",2026-05-05
set due date to december 14 2027,edit_task,"{""end_date"":""2027-12-14""}",2026-05-05
start on december 7 2027 and finish on december 22 2027,edit_task,"{""start_date"":""2027-12-07"",""end_date"":""2027-12-22""}",2026-05-05
get it done by december 18 2027,edit_task,"{""end_date"":""2027-12-18""}",2026-05-05
start date should be december 14 2027 and due date should be december 22 2027,edit_task,"{""start_date"":""2027-12-14"",""end_date"":""2027-12-22""}",2026-05-05
mobilize on december 3 2027,edit_task,"{""start_date"":""2027-12-03""}",2026-05-05
finish on december 27 2027,edit_task,"{""end_date"":""2027-12-27""}",2026-05-05
begin december 18 2027,edit_task,"{""start_date"":""2027-12-18""}",2026-05-05
wrap this up on december 7 2027,edit_task,"{""end_date"":""2027-12-07""}",2026-05-05
set the start date to december 22 2027,edit_task,"{""start_date"":""2027-12-22""}",2026-05-05
set the deadline for december 18 2027,edit_task,"{""end_date"":""2027-12-18""}",2026-05-05
set start date to 3 december 2027,edit_task,"{""start_date"":""2027-12-03""}",2026-05-05
set due date to 14 december 2027,edit_task,"{""end_date"":""2027-12-14""}",2026-05-05
start on 7 december 2027 and finish on 22 december 2027,edit_task,"{""start_date"":""2027-12-07"",""end_date"":""2027-12-22""}",2026-05-05
get it done by 18 december 2027,edit_task,"{""end_date"":""2027-12-18""}",2026-05-05
start date should be 14 december 2027 and due date should be 22 december 2027,edit_task,"{""start_date"":""2027-12-14"",""end_date"":""2027-12-22""}",2026-05-05
mobilize on 3 december 2027,edit_task,"{""start_date"":""2027-12-03""}",2026-05-05
finish on 27 december 2027,edit_task,"{""end_date"":""2027-12-27""}",2026-05-05
begin 18 december 2027,edit_task,"{""start_date"":""2027-12-18""}",2026-05-05
wrap this up on 7 december 2027,edit_task,"{""end_date"":""2027-12-07""}",2026-05-05
set the start date to 22 december 2027,edit_task,"{""start_date"":""2027-12-22""}",2026-05-05
set the deadline for 18 december 2027,edit_task,"{""end_date"":""2027-12-18""}",2026-05-05
move this to a3 and set the location to mezzanine,edit_task,"{""plan"":""a3"",""location"":""mezzanine""}",2026-05-05
put it on sheet 9 location should be room 201,edit_task,"{""plan"":""sheet 9"",""location"":""room 201""}",2026-05-05
set plan to rcp delta 8 and location to north pit 3,edit_task,"{""plan"":""rcp delta 8"",""location"":""north pit 3""}",2026-05-05
move this to fp3 and set location to server room,edit_task,"{""plan"":""fp3"",""location"":""server room""}",2026-05-05
put this on e4 and make the location suite 3b,edit_task,"{""plan"":""e4"",""location"":""suite 3b""}",2026-05-05
set the location to attic west 9 and put it on structural s2,edit_task,"{""location"":""attic west 9"",""plan"":""structural s2""}",2026-05-05
location should be bay q7 plan should be aqx 12,edit_task,"{""location"":""bay q7"",""plan"":""aqx 12""}",2026-05-05
move to id101 and set the location to lobby deck,edit_task,"{""plan"":""id101"",""location"":""lobby deck""}",2026-05-05
put this on a201 location data center floor,edit_task,"{""plan"":""a201"",""location"":""data center floor""}",2026-05-05
set plan to ground floor and location to elevator shaft b,edit_task,"{""plan"":""ground floor"",""location"":""elevator shaft b""}",2026-05-05
make the plan c note 17 and the location room zx 14,edit_task,"{""plan"":""c note 17"",""location"":""room zx 14""}",2026-05-05
put it on m2 and set location to bay 12,edit_task,"{""plan"":""m2"",""location"":""bay 12""}",2026-05-05
plan goes on roof level and location is mechanical room level 3,edit_task,"{""plan"":""roof level"",""location"":""mechanical room level 3""}",2026-05-05
move this to civil sheet 3 set the location to south corridor,edit_task,"{""plan"":""civil sheet 3"",""location"":""south corridor""}",2026-05-05
set the location to pool deck and put this on a101,edit_task,"{""location"":""pool deck"",""plan"":""a101""}",2026-05-05
location is unit k2 and plan is structural s2,edit_task,"{""location"":""unit k2"",""plan"":""structural s2""}",2026-05-05
put this on p4 and make the location boiler room,edit_task,"{""plan"":""p4"",""location"":""boiler room""}",2026-05-05
set plan to detail fox 2 and location to vault m,edit_task,"{""plan"":""detail fox 2"",""location"":""vault m""}",2026-05-05
location should be east wing and plan should be e1,edit_task,"{""location"":""east wing"",""plan"":""e1""}",2026-05-05
move to a4 and set location to suite 101,edit_task,"{""plan"":""a4"",""location"":""suite 101""}",2026-05-05
put it on c1 and make the location parking garage level 1,edit_task,"{""plan"":""c1"",""location"":""parking garage level 1""}",2026-05-05
set location to stairwell b and plan to s2,edit_task,"{""location"":""stairwell b"",""plan"":""s2""}",2026-05-05
make the plan sheet plum 3 and location north pit 3,edit_task,"{""plan"":""sheet plum 3"",""location"":""north pit 3""}",2026-05-05
put this on a301 and set the location to mechanical room,edit_task,"{""plan"":""a301"",""location"":""mechanical room""}",2026-05-05
location should be level 5 and plan should be mezzanine,edit_task,"{""location"":""level 5"",""plan"":""mezzanine""}",2026-05-05
move this to e1 and set location to lobby bathroom,edit_task,"{""plan"":""e1"",""location"":""lobby bathroom""}",2026-05-05
set plan to fp2 and location to bay 12,edit_task,"{""plan"":""fp2"",""location"":""bay 12""}",2026-05-05
put it on roof level and set the location to grid line b2,edit_task,"{""plan"":""roof level"",""location"":""grid line b2""}",2026-05-05
move to id 101 and set location to main lobby,edit_task,"{""plan"":""id101"",""location"":""main lobby""}",2026-05-05
set the location to exterior facade east and put it on m3,edit_task,"{""location"":""exterior facade east"",""plan"":""m3""}",2026-05-05
cost is 1200 and put 3 workers on it,edit_task,"{""cost"":""1200"",""manpower"":""3""}",2026-05-05
budget is 2500 crew of 5,edit_task,"{""cost"":""2500"",""manpower"":""5""}",2026-05-05
make the cost 7000 manpower should be 2,edit_task,"{""cost"":""7000"",""manpower"":""2""}",2026-05-05
figure 15000 for this with a team of 8,edit_task,"{""cost"":""15000"",""manpower"":""8""}",2026-05-05
set budget to 3500 and manpower to 1,edit_task,"{""cost"":""3500"",""manpower"":""1""}",2026-05-05
cost around 6000 crew of 4,edit_task,"{""cost"":""6000"",""manpower"":""4""}",2026-05-05
budget is 20000 and this needs 10 workers,edit_task,"{""cost"":""20000"",""manpower"":""10""}",2026-05-05
set cost to 5000 and give it a crew of 6,edit_task,"{""cost"":""5000"",""manpower"":""6""}",2026-05-05
materials came out to 800 and manpower is 2,edit_task,"{""cost"":""800"",""manpower"":""2""}",2026-05-05
cost should be 10000 and team size is 7,edit_task,"{""cost"":""10000"",""manpower"":""7""}",2026-05-05
price it at 4000 with 3 workers,edit_task,"{""cost"":""4000"",""manpower"":""3""}",2026-05-05
put the budget at 9000 and manpower at 5,edit_task,"{""cost"":""9000"",""manpower"":""5""}",2026-05-05
make it 22000 and crew of 9,edit_task,"{""cost"":""22000"",""manpower"":""9""}",2026-05-05
budget about 1500 crew of 1,edit_task,"{""cost"":""1500"",""manpower"":""1""}",2026-05-05
set cost to 4800 and manpower to 4,edit_task,"{""cost"":""4800"",""manpower"":""4""}",2026-05-05
cost is 7600 and this takes 2 workers,edit_task,"{""cost"":""7600"",""manpower"":""2""}",2026-05-05
budget 3000 manpower 6,edit_task,"{""cost"":""3000"",""manpower"":""6""}",2026-05-05
call it 12000 with a team of 7,edit_task,"{""cost"":""12000"",""manpower"":""7""}",2026-05-05
set the budget to 1800 and manpower to 3,edit_task,"{""cost"":""1800"",""manpower"":""3""}",2026-05-05
we are at 14000 with 5 guys on it,edit_task,"{""cost"":""14000"",""manpower"":""5""}",2026-05-05
make the cost 6500 and crew size 2,edit_task,"{""cost"":""6500"",""manpower"":""2""}",2026-05-05
budget around 11000 and team of 8,edit_task,"{""cost"":""11000"",""manpower"":""8""}",2026-05-05
set this at 2000 with 4 workers,edit_task,"{""cost"":""2000"",""manpower"":""4""}",2026-05-05
cost should be 3200 manpower should be 2,edit_task,"{""cost"":""3200"",""manpower"":""2""}",2026-05-05
run this at 500 and one worker,edit_task,"{""cost"":""500"",""manpower"":""1""}",2026-05-05
make it 2700 and give it 3 workers,edit_task,"{""cost"":""2700"",""manpower"":""3""}",2026-05-05
budget 12500 and crew of 6,edit_task,"{""cost"":""12500"",""manpower"":""6""}",2026-05-05
cost is 9800 manpower is 5,edit_task,"{""cost"":""9800"",""manpower"":""5""}",2026-05-05
set budget at 4100 team of 2,edit_task,"{""cost"":""4100"",""manpower"":""2""}",2026-05-05
price this at 16000 with 9 workers,edit_task,"{""cost"":""16000"",""manpower"":""9""}",2026-05-05
make it p1 and note use orange tape only,edit_task,"{""priority"":""p1"",""comments"":""use orange tape only""}",2026-05-05
set priority to p2 and add a comment owner asked for quiet cart wheels,edit_task,"{""priority"":""p2"",""comments"":""owner asked for quiet cart wheels""}",2026-05-05
bump it to p3 and note waiting on permit to come through,edit_task,"{""priority"":""p3"",""comments"":""waiting on permit to come through""}",2026-05-05
make this urgent and note roof leak is getting worse with the rain,edit_task,"{""priority"":""p1"",""comments"":""roof leak is getting worse with the rain""}",2026-05-05
set medium priority and add note hold for iris from unit 4,edit_task,"{""priority"":""p2"",""comments"":""hold for iris from unit 4""}",2026-05-05
low priority and note leave badge at desk q,edit_task,"{""priority"":""p3"",""comments"":""leave badge at desk q""}",2026-05-05
set p1 and comment gc requested this be done before the owner walkthrough,edit_task,"{""priority"":""p1"",""comments"":""GC requested this be done before the owner walkthrough""}",2026-05-05
make it p2 and note this can wait until after the inspection monday,edit_task,"{""priority"":""p2"",""comments"":""this can wait until after the inspection Monday""}",2026-05-05
priority is p3 and note temp sensor reads odd at noon,edit_task,"{""priority"":""p3"",""comments"":""temp sensor reads odd at noon""}",2026-05-05
set this to p1 and note do not touch valve p,edit_task,"{""priority"":""p1"",""comments"":""do not touch valve p""}",2026-05-05
make it urgent and note owner wants daily progress photos,edit_task,"{""priority"":""p1"",""comments"":""owner wants daily progress photos""}",2026-05-05
set priority p2 and note asbestos survey required before demo,edit_task,"{""priority"":""p2"",""comments"":""asbestos survey required before demo""}",2026-05-05
make it low priority and note materials are already on site,edit_task,"{""priority"":""p3"",""comments"":""materials are already on site""}",2026-05-05
priority p1 and note call vendor about model x9,edit_task,"{""priority"":""p1"",""comments"":""call vendor about model x9""}",2026-05-05
set medium priority and note access is tight in that area,edit_task,"{""priority"":""p2"",""comments"":""access is tight in that area""}",2026-05-05
mark it p3 and note keep noise down after 6,edit_task,"{""priority"":""p3"",""comments"":""keep noise down after 6""}",2026-05-05
make it urgent and leave a note that key is with lena,edit_task,"{""priority"":""p1"",""comments"":""key is with lena""}",2026-05-05
priority should be p2 and note he needs a scissor lift for this one,edit_task,"{""priority"":""p2"",""comments"":""he needs a scissor lift for this one""}",2026-05-05
set p3 and note the fourth guy called in sick,edit_task,"{""priority"":""p3"",""comments"":""the fourth guy called in sick""}",2026-05-05
bump this to p1 and note use quiet wheels only,edit_task,"{""priority"":""p1"",""comments"":""use quiet wheels only""}",2026-05-05
make it medium and add note coordinate with security first,edit_task,"{""priority"":""p2"",""comments"":""coordinate with security first""}",2026-05-05
set low priority and note wait for shutdown window,edit_task,"{""priority"":""p3"",""comments"":""wait for shutdown window""}",2026-05-05
make this p1 and note field verify before cutting,edit_task,"{""priority"":""p1"",""comments"":""field verify before cutting""}",2026-05-05
priority should be p2 and note owner wants mockup first,edit_task,"{""priority"":""p2"",""comments"":""owner wants mockup first""}",2026-05-05
set this to p3 and note tenant has classes until 5,edit_task,"{""priority"":""p3"",""comments"":""tenant has classes until 5""}",2026-05-05
make it urgent and note need lift reservation,edit_task,"{""priority"":""p1"",""comments"":""need lift reservation""}",2026-05-05
set p2 and note waiting on submittal response,edit_task,"{""priority"":""p2"",""comments"":""waiting on submittal response""}",2026-05-05
make it p3 and note no access before noon,edit_task,"{""priority"":""p3"",""comments"":""no access before noon""}",2026-05-05
priority p1 add comment isolate circuit first,edit_task,"{""priority"":""p1"",""comments"":""isolate circuit first""}",2026-05-05
set it to p2 and note leave area broom clean when finished,edit_task,"{""priority"":""p2"",""comments"":""leave the area broom clean when finished""}",2026-05-05
put this on a3 set the location to mezzanine and mark it open,edit_task,"{""plan"":""a3"",""location"":""mezzanine"",""status"":""open""}",2026-05-05
move this to fp3 location room 201 and mark closed,edit_task,"{""plan"":""fp3"",""location"":""room 201"",""status"":""closed""}",2026-05-05
put it on sheet 9 location room 106 and leave it on hold,edit_task,"{""plan"":""sheet 9"",""location"":""room 106"",""status"":""on hold""}",2026-05-05
set plan to e4 location suite 3b and mark tracked,edit_task,"{""plan"":""e4"",""location"":""suite 3b"",""status"":""tracked""}",2026-05-05
move it to a201 location data center floor and mark pending inspection,edit_task,"{""plan"":""a201"",""location"":""data center floor"",""status"":""pending inspection""}",2026-05-05
put this on roof level location mechanical room level 3 and leave it verified,edit_task,"{""plan"":""roof level"",""location"":""mechanical room level 3"",""status"":""verified""}",2026-05-05
set the plan to civil sheet 3 location south corridor and mark it complete,edit_task,"{""plan"":""civil sheet 3"",""location"":""south corridor"",""status"":""complete""}",2026-05-05
move this to structural s2 location east wing and leave it in progress,edit_task,"{""plan"":""structural s2"",""location"":""east wing"",""status"":""in progress""}",2026-05-05
put it on id101 location main lobby and mark it needs review,edit_task,"{""plan"":""id101"",""location"":""main lobby"",""status"":""needs review""}",2026-05-05
set the plan to ground floor location elevator shaft b and mark it scheduled,edit_task,"{""plan"":""ground floor"",""location"":""elevator shaft b"",""status"":""scheduled""}",2026-05-05
move this to m2 location bay 12 and leave it open,edit_task,"{""plan"":""m2"",""location"":""bay 12"",""status"":""open""}",2026-05-05
put it on c note 17 location room zx 14 and mark it verified,edit_task,"{""plan"":""c note 17"",""location"":""room zx 14"",""status"":""verified""}",2026-05-05
set plan to detail fox 2 location vault m and leave it pending,edit_task,"{""plan"":""detail fox 2"",""location"":""vault m"",""status"":""pending""}",2026-05-05
move it to p4 location boiler room and mark it ready for turnover,edit_task,"{""plan"":""p4"",""location"":""boiler room"",""status"":""ready for turnover""}",2026-05-05
put this on a101 location pool deck and leave it blocked by access,edit_task,"{""plan"":""a101"",""location"":""pool deck"",""status"":""blocked by access""}",2026-05-05
set the plan to fp2 location bay 12 and mark it open,edit_task,"{""plan"":""fp2"",""location"":""bay 12"",""status"":""open""}",2026-05-05
move this to structural s2 location unit k2 and mark it tracked,edit_task,"{""plan"":""structural s2"",""location"":""unit k2"",""status"":""tracked""}",2026-05-05
put it on e1 location lobby bathroom and mark it complete,edit_task,"{""plan"":""e1"",""location"":""lobby bathroom"",""status"":""complete""}",2026-05-05
set the plan to a301 location mechanical room and leave it pending inspection,edit_task,"{""plan"":""a301"",""location"":""mechanical room"",""status"":""pending inspection""}",2026-05-05
move this to sheet plum 3 location north pit 3 and mark it on hold,edit_task,"{""plan"":""sheet plum 3"",""location"":""north pit 3"",""status"":""on hold""}",2026-05-05
put it on s2 location stairwell b and mark it in progress,edit_task,"{""plan"":""s2"",""location"":""stairwell b"",""status"":""in progress""}",2026-05-05
set the plan to a4 location suite 101 and leave it verified,edit_task,"{""plan"":""a4"",""location"":""suite 101"",""status"":""verified""}",2026-05-05
move it to m3 location exterior facade east and mark it open,edit_task,"{""plan"":""m3"",""location"":""exterior facade east"",""status"":""open""}",2026-05-05
put this on c1 location parking garage level 1 and leave it closed,edit_task,"{""plan"":""c1"",""location"":""parking garage level 1"",""status"":""closed""}",2026-05-05
set plan to rcp delta 8 location north pit 3 and mark it needs review,edit_task,"{""plan"":""rcp delta 8"",""location"":""north pit 3"",""status"":""needs review""}",2026-05-05
move it to a202 location room 305 and mark it scheduled,edit_task,"{""plan"":""a202"",""location"":""room 305"",""status"":""scheduled""}",2026-05-05
put this on s1 location south corridor and mark it open,edit_task,"{""plan"":""s1"",""location"":""south corridor"",""status"":""open""}",2026-05-05
set the plan to id101 location server room and leave it on hold,edit_task,"{""plan"":""id101"",""location"":""server room"",""status"":""on hold""}",2026-05-05
move it to e1 location grid line b2 and mark it tracked,edit_task,"{""plan"":""e1"",""location"":""grid line b2"",""status"":""tracked""}",2026-05-05
put it on structural s2 location attic west 9 and mark it complete,edit_task,"{""plan"":""structural s2"",""location"":""attic west 9"",""status"":""complete""}",2026-05-05
set category to electrical tag this as safety and assign it to faris,edit_task,"{""category"":""electrical"",""tags"":[""safety""],""assignee"":""faris""}",2026-05-05
make the category waterproofing tag it closeout and put omri on it,edit_task,"{""category"":""waterproofing"",""tags"":[""closeout""],""assignee"":""omri""}",2026-05-05
set category to controls add tag riser and assign to johny,edit_task,"{""category"":""controls"",""tags"":[""riser""],""assignee"":""johny""}",2026-05-05
this is painting work tag it ownerpunch and put teo on it,edit_task,"{""category"":""painting"",""tags"":[""ownerpunch""],""assignee"":""teo""}",2026-05-05
set the category to life safety tag this as safety and assign it to nuri,edit_task,"{""category"":""life safety"",""tags"":[""safety""],""assignee"":""nuri""}",2026-05-05
make category demolition tag it tempfix and give it to zayvion,edit_task,"{""category"":""demolition"",""tags"":[""tempfix""],""assignee"":""zayvion""}",2026-05-05
set category to glazing tag this as qahold and assign felix,edit_task,"{""category"":""glazing"",""tags"":[""qahold""],""assignee"":""felix""}",2026-05-05
category should be millwork use tag door hardware and put luis on it,edit_task,"{""category"":""millwork"",""tags"":[""door hardware""],""assignee"":""luis""}",2026-05-05
set category to roofing tag install tracker and assign to sal,edit_task,"{""category"":""roofing"",""tags"":[""install tracker""],""assignee"":""sal""}",2026-05-05
make the category mechanical tag this as roughin and assign to carlos,edit_task,"{""category"":""mechanical"",""tags"":[""rough in""],""assignee"":""carlos""}",2026-05-05
set category to windows tag it window qc and put sarah on it,edit_task,"{""category"":""windows"",""tags"":[""window qc""],""assignee"":""sarah""}",2026-05-05
category is fire alarm tag this as safety and assign maria,edit_task,"{""category"":""fire alarm"",""tags"":[""safety""],""assignee"":""maria""}",2026-05-05
set the category to data add tag voice data and put brenda on it,edit_task,"{""category"":""data"",""tags"":[""voice data""],""assignee"":""brenda""}",2026-05-05
make category civil tag it site work and assign mike,edit_task,"{""category"":""civil"",""tags"":[""site work""],""assignee"":""mike""}",2026-05-05
set category to foundation tag site work and put dave on it,edit_task,"{""category"":""foundation"",""tags"":[""site work""],""assignee"":""dave""}",2026-05-05
category should be firestopping use tag fire stopping and assign pat,edit_task,"{""category"":""firestopping"",""tags"":[""fire stopping""],""assignee"":""pat""}",2026-05-05
set category to architectural tag closeout and assign nadia,edit_task,"{""category"":""architectural"",""tags"":[""closeout""],""assignee"":""nadia""}",2026-05-05
make the category carpentry tag punch list and give it to juan,edit_task,"{""category"":""carpentry"",""tags"":[""punch list""],""assignee"":""juan""}",2026-05-05
set category to acoustics tag unit protection and assign lev,edit_task,"{""category"":""acoustics"",""tags"":[""unit protection""],""assignee"":""lev""}",2026-05-05
category should be concrete tag safety and put eddie on it,edit_task,"{""category"":""concrete"",""tags"":[""safety""],""assignee"":""eddie""}",2026-05-05
set the category to cabling tag cable pull and assign troy,edit_task,"{""category"":""cabling"",""tags"":[""cable pull""],""assignee"":""troy""}",2026-05-05
make category equipment tag electrical and put johnny on it,edit_task,"{""category"":""equipment"",""tags"":[""electrical""],""assignee"":""johnny""}",2026-05-05
set category to exterior tag sealing and assign kim,edit_task,"{""category"":""exterior"",""tags"":[""sealing""],""assignee"":""kim""}",2026-05-05
category should be asphalt tag cutting and put sarah on it,edit_task,"{""category"":""asphalt"",""tags"":[""cutting""],""assignee"":""sarah""}",2026-05-05
set the category to cleaning tag closeout and assign jake,edit_task,"{""category"":""cleaning"",""tags"":[""closeout""],""assignee"":""jake""}",2026-05-05
make category utilities tag safety and put hector on it,edit_task,"{""category"":""utilities"",""tags"":[""safety""],""assignee"":""hector""}",2026-05-05
set category to lighting add tag electrical and assign gus,edit_task,"{""category"":""lighting"",""tags"":[""electrical""],""assignee"":""gus""}",2026-05-05
category should be framing tag incomplete work and assign vic,edit_task,"{""category"":""framing"",""tags"":[""incomplete work""],""assignee"":""vic""}",2026-05-05
set the category to doors tag door hardware and assign bram,edit_task,"{""category"":""doors"",""tags"":[""door hardware""],""assignee"":""bram""}",2026-05-05
make category security tag cctv checklist and give it to anya,edit_task,"{""category"":""security"",""tags"":[""cctv checklist""],""assignee"":""anya""}",2026-05-05
assign it to carlos mark it in progress priority two due end of month,edit_task,"{""assignee"":""carlos"",""status"":""in progress"",""priority"":""p2"",""end_date"":""2026-05-31""}",2026-05-05
move this to electrical category assign to the mep crew mark tracked priority one,edit_task,"{""category"":""electrical"",""assignee"":""mep crew"",""status"":""tracked"",""priority"":""p1""}",2026-05-05
reassign to julia location is lobby floor two status verified,edit_task,"{""assignee"":""julia"",""location"":""lobby floor 2"",""status"":""verified""}",2026-05-05
set priority p1 due date may 15 assign to sarah mark it open,edit_task,"{""priority"":""p1"",""end_date"":""2026-05-15"",""assignee"":""sarah"",""status"":""open""}",2026-05-05
put chen on it start next monday end of next month category plumbing,edit_task,"{""assignee"":""chen"",""start_date"":""2026-05-11"",""end_date"":""2026-06-30"",""category"":""plumbing""}",2026-05-05
location is unit 4b plan is drawing a5 assign to hector mark complete,edit_task,"{""location"":""unit 4b"",""plan"":""a5"",""assignee"":""hector"",""status"":""complete""}",2026-05-05
set cost to 12000 assign to the roofing crew mark in progress due by the 20th,edit_task,"{""cost"":""12000"",""assignee"":""roofing crew"",""status"":""in progress"",""end_date"":""2026-05-20""}",2026-05-05
tag it safety and structural needs to be done by friday reassign to omar,edit_task,"{""tags"":[""safety"",""structural""],""end_date"":""2026-05-08"",""assignee"":""omar""}",2026-05-05
manpower 3 workers category framing start date monday end date may 20,edit_task,"{""manpower"":""3"",""category"":""framing"",""start_date"":""2026-05-11"",""end_date"":""2026-05-20""}",2026-05-05
reassign to the fire protection crew plan is drawing fp 2 mark needs review cost 8000,edit_task,"{""assignee"":""fire protection crew"",""plan"":""fp 2"",""status"":""needs review"",""cost"":""8000""}",2026-05-05
category hvac location mechanical room level 3 assign to mike priority p2,edit_task,"{""category"":""hvac"",""location"":""mechanical room level 3"",""assignee"":""mike"",""priority"":""p2""}",2026-05-05
mark on hold add comment waiting on structural engineer approval assign to dan,edit_task,"{""status"":""on hold"",""comments"":""waiting on structural engineer approval"",""assignee"":""dan""}",2026-05-05
priority p1 location stairwell b assign to safety officer mark open,edit_task,"{""priority"":""p1"",""location"":""stairwell b"",""assignee"":""safety officer"",""status"":""open""}",2026-05-05
assign this to nadia glazing work penthouse floor due end of month priority p1 mark it in progress,edit_task,"{""assignee"":""nadia"",""category"":""glazing"",""location"":""penthouse"",""end_date"":""2026-05-31"",""priority"":""p1"",""status"":""in progress""}",2026-05-05
move to hvac category assign to the mechanical crew location level 2 plant room start monday end of next month,edit_task,"{""category"":""hvac"",""assignee"":""mechanical crew"",""location"":""level 2 plant room"",""start_date"":""2026-05-11"",""end_date"":""2026-06-30""}",2026-05-05
set priority p2 assign to electrical crew category electrical plan drawing e3 mark tracked,edit_task,"{""priority"":""p2"",""assignee"":""electrical crew"",""category"":""electrical"",""plan"":""e3"",""status"":""tracked""}",2026-05-05
reassign to liu start date today end date may 31 location roof level category roofing priority p1,edit_task,"{""assignee"":""liu"",""start_date"":""2026-05-05"",""end_date"":""2026-05-31"",""location"":""roof level"",""category"":""roofing"",""priority"":""p1""}",2026-05-05
mark this verified assign to inspector jones location unit 203 category finishes add comment ready for owner walkthrough,edit_task,"{""status"":""verified"",""assignee"":""inspector jones"",""location"":""unit 203"",""category"":""finishes"",""comments"":""ready for owner walkthrough""}",2026-05-05
it's a 5 man crew cost is about 25000 mark in progress due end of month category concrete assign to the pour crew,edit_task,"{""manpower"":""5"",""cost"":""25000"",""status"":""in progress"",""end_date"":""2026-05-31"",""category"":""concrete"",""assignee"":""pour crew""}",2026-05-05
assign to ahmed priority p1 due next friday location loading dock mark open category steel,edit_task,"{""assignee"":""ahmed"",""priority"":""p1"",""end_date"":""2026-05-15"",""location"":""loading dock"",""status"":""open"",""category"":""steel""}",2026-05-05
this is electrical work on drawing e7 assign to kim mark tracked location level 4 east wing priority two,edit_task,"{""category"":""electrical"",""plan"":""e7"",""assignee"":""kim"",""status"":""tracked"",""location"":""level 4 east wing"",""priority"":""p2""}",2026-05-05
maria is handling the tile work in the lobby restrooms plumbing category start monday end may 20 priority p2 budget 6000,edit_task,"{""assignee"":""maria"",""location"":""lobby restrooms"",""category"":""plumbing"",""start_date"":""2026-05-11"",""end_date"":""2026-05-20"",""priority"":""p2"",""cost"":""6000""}",2026-05-05
reassign to the masonry crew mark in progress location exterior west facade category masonry priority p1 due end of month manpower 6,edit_task,"{""assignee"":""masonry crew"",""status"":""in progress"",""location"":""exterior west facade"",""category"":""masonry"",""priority"":""p1"",""end_date"":""2026-05-31"",""manpower"":""6""}",2026-05-05
plan a3 location zone 4 assign to the framing crew category framing mark in progress manpower 4 start date may 11,edit_task,"{""plan"":""a3"",""location"":""zone 4"",""assignee"":""framing crew"",""category"":""framing"",""status"":""in progress"",""manpower"":""4"",""start_date"":""2026-05-11""}",2026-05-05
set cost to 18000 manpower 8 category steel assign to iron workers location level 5 mark in progress start today,edit_task,"{""cost"":""18000"",""manpower"":""8"",""category"":""steel"",""assignee"":""iron workers"",""location"":""level 5"",""status"":""in progress"",""start_date"":""2026-05-05""}",2026-05-05
mark on hold location stairwell a plan level 2 drawing assign to safety team add comment blocked pending fire marshal sign off,edit_task,"{""status"":""on hold"",""location"":""stairwell a"",""plan"":""level 2"",""assignee"":""safety team"",""comments"":""blocked pending fire marshal sign off""}",2026-05-05
reassign to nguyen priority p1 start date may 11 end date may 31 category drywall location corridor 3 mark tracked,edit_task,"{""assignee"":""nguyen"",""priority"":""p1"",""start_date"":""2026-05-11"",""end_date"":""2026-05-31"",""category"":""drywall"",""location"":""corridor 3"",""status"":""tracked""}",2026-05-05
this is fire alarm work on plan drawing fa 3 assign to fire alarm crew location basement level 1 mark in progress due end of month cost 9500,edit_task,"{""category"":""fire alarm"",""plan"":""fa 3"",""assignee"":""fire alarm crew"",""location"":""basement level 1"",""status"":""in progress"",""end_date"":""2026-05-31"",""cost"":""9500""}",2026-05-05
lisa is doing the painting in the east wing corridor on level 3 finishes work start next monday end may 31 priority two budget 4500 manpower 2 mark in progress,edit_task,"{""assignee"":""lisa"",""location"":""east wing corridor level 3"",""category"":""finishes"",""start_date"":""2026-05-11"",""end_date"":""2026-05-31"",""priority"":""p2"",""cost"":""4500"",""manpower"":""2"",""status"":""in progress""}",2026-05-05
assign to the concrete crew location basement slab b1 category concrete plan drawing s2 mark in progress start today end may 20 manpower 10 cost 35000,edit_task,"{""assignee"":""concrete crew"",""location"":""basement slab b1"",""category"":""concrete"",""plan"":""s2"",""status"":""in progress"",""start_date"":""2026-05-05"",""end_date"":""2026-05-20"",""manpower"":""10"",""cost"":""35000""}",2026-05-05
mark verified location unit 101 category electrical plan drawing e1 assign to inspector chen add comment passed inspection all outlets grounded priority p1,edit_task,"{""status"":""verified"",""location"":""unit 101"",""category"":""electrical"",""plan"":""e1"",""assignee"":""inspector chen"",""comments"":""passed inspection all outlets grounded"",""priority"":""p1""}",2026-05-05
reassign to the plumbing crew location level 2 bathrooms category plumbing plan p2 start date today end date may 20 manpower 3 cost 7500,edit_task,"{""assignee"":""plumbing crew"",""location"":""level 2 bathrooms"",""category"":""plumbing"",""plan"":""p2"",""start_date"":""2026-05-05"",""end_date"":""2026-05-20"",""manpower"":""3"",""cost"":""7500""}",2026-05-05
alex is on the drywall in zone 3 level 5 plan drawing a7 framing category start today finish may 25 3 man crew budget 11000 mark in progress priority p2,edit_task,"{""assignee"":""alex"",""location"":""zone 3 level 5"",""plan"":""a7"",""category"":""drywall"",""start_date"":""2026-05-05"",""end_date"":""2026-05-25"",""manpower"":""3"",""cost"":""11000"",""status"":""in progress"",""priority"":""p2""}",2026-05-05
location is penthouse mechanical room category hvac plan drawing m6 assign to mechanical crew start next monday end of next month 5 workers cost 28000 mark in progress priority p1,edit_task,"{""location"":""penthouse mechanical room"",""category"":""hvac"",""plan"":""m6"",""assignee"":""mechanical crew"",""start_date"":""2026-05-11"",""end_date"":""2026-06-30"",""manpower"":""5"",""cost"":""28000"",""status"":""in progress"",""priority"":""p1""}",2026-05-05
put 4 workers on this cost 9000 due next friday mark in progress,edit_task,"{""manpower"":""4"",""cost"":""9000"",""end_date"":""2026-05-15"",""status"":""in progress""}",2026-05-05
category fire protection assign to sprinkler crew priority p1 mark open,edit_task,"{""category"":""fire protection"",""assignee"":""sprinkler crew"",""priority"":""p1"",""status"":""open""}",2026-05-05
location is parking garage level b1 category waterproofing plan drawing wp 1 assign to waterproofing crew,edit_task,"{""location"":""parking garage level b1"",""category"":""waterproofing"",""plan"":""wp 1"",""assignee"":""waterproofing crew""}",2026-05-05
add comment materials delayed two weeks update due date to may 31 mark on hold,edit_task,"{""comments"":""materials delayed two weeks"",""end_date"":""2026-05-31"",""status"":""on hold""}",2026-05-05
assign to rachel category finishes location lobby mark verified,edit_task,"{""assignee"":""rachel"",""category"":""finishes"",""location"":""lobby"",""status"":""verified""}",2026-05-05
priority p1 due may 11 category structural assign to the engineer,edit_task,"{""priority"":""p1"",""end_date"":""2026-05-11"",""category"":""structural"",""assignee"":""the engineer""}",2026-05-05
location is courtyard plan drawing l3 category landscaping assign to grounds crew,edit_task,"{""location"":""courtyard"",""plan"":""l3"",""category"":""landscaping"",""assignee"":""grounds crew""}",2026-05-05
manpower 2 workers cost 3500 category painting location stairwell b,edit_task,"{""manpower"":""2"",""cost"":""3500"",""category"":""painting"",""location"":""stairwell b""}",2026-05-05
add tag punch list mark needs review assign to project manager,edit_task,"{""tags"":[""punch list""],""status"":""needs review"",""assignee"":""project manager""}",2026-05-05
category electrical plan e9 location level 6 east mark in progress,edit_task,"{""category"":""electrical"",""plan"":""e9"",""location"":""level 6 east"",""status"":""in progress""}",2026-05-05
assign to dmitri start date may 11 end date may 20 category drywall,edit_task,"{""assignee"":""dmitri"",""start_date"":""2026-05-11"",""end_date"":""2026-05-20"",""category"":""drywall""}",2026-05-05
mark complete assign to closeout team add comment as built drawings submitted,edit_task,"{""status"":""complete"",""assignee"":""closeout team"",""comments"":""as built drawings submitted""}",2026-05-05
location roof level category roofing assign to roofers plan drawing r1,edit_task,"{""location"":""roof level"",""category"":""roofing"",""assignee"":""roofers"",""plan"":""r1""}",2026-05-05
set priority p3 manpower 1 due end of next month category painting,edit_task,"{""priority"":""p3"",""manpower"":""1"",""end_date"":""2026-06-30"",""category"":""painting""}",2026-05-05
assign to wei category concrete location loading dock mark on hold,edit_task,"{""assignee"":""wei"",""category"":""concrete"",""location"":""loading dock"",""status"":""on hold""}",2026-05-05
plan drawing a2 assign to foreman bob location zone 1 mark in progress,edit_task,"{""plan"":""a2"",""assignee"":""foreman bob"",""location"":""zone 1"",""status"":""in progress""}",2026-05-05
cost 5500 manpower 3 category insulation mark in progress,edit_task,"{""cost"":""5500"",""manpower"":""3"",""category"":""insulation"",""status"":""in progress""}",2026-05-05
location is fire egress corridor plan fe 1 category fire protection mark open,edit_task,"{""location"":""fire egress corridor"",""plan"":""fe 1"",""category"":""fire protection"",""status"":""open""}",2026-05-05
assign to patricia category finishes location unit 108 due may 15,edit_task,"{""assignee"":""patricia"",""category"":""finishes"",""location"":""unit 108"",""end_date"":""2026-05-15""}",2026-05-05
add tags structural and urgent priority p1 assign to the structural engineer,edit_task,"{""tags"":[""structural"",""urgent""],""priority"":""p1"",""assignee"":""structural engineer""}",2026-05-05
status ready for turnover assign to owner rep location level 1,edit_task,"{""status"":""ready for turnover"",""assignee"":""owner rep"",""location"":""level 1""}",2026-05-05
plan m3 category hvac location mechanical penthouse assign to air handler crew,edit_task,"{""plan"":""m3"",""category"":""hvac"",""location"":""mechanical penthouse"",""assignee"":""air handler crew""}",2026-05-05
mark complete location unit 201 category electrical add comment all outlets and panels inspected,edit_task,"{""status"":""complete"",""location"":""unit 201"",""category"":""electrical"",""comments"":""all outlets and panels inspected""}",2026-05-05
assign to the tile crew cost 8200 manpower 3 due next friday,edit_task,"{""assignee"":""tile crew"",""cost"":""8200"",""manpower"":""3"",""end_date"":""2026-05-15""}",2026-05-05
location courtyard level plan l2 category landscaping mark in progress,edit_task,"{""location"":""courtyard level"",""plan"":""l2"",""category"":""landscaping"",""status"":""in progress""}",2026-05-05
reassign to ivan priority p2 location unit 404 category plumbing,edit_task,"{""assignee"":""ivan"",""priority"":""p2"",""location"":""unit 404"",""category"":""plumbing""}",2026-05-05
assign to elena category painting location all units level 6 start next monday due end of month mark in progress,edit_task,"{""assignee"":""elena"",""category"":""painting"",""location"":""all units level 6"",""start_date"":""2026-05-11"",""end_date"":""2026-05-31"",""status"":""in progress""}",2026-05-05
plan drawing s4 category structural location transfer slab level 3 assign to structural crew mark in progress priority p1,edit_task,"{""plan"":""s4"",""category"":""structural"",""location"":""transfer slab level 3"",""assignee"":""structural crew"",""status"":""in progress"",""priority"":""p1""}",2026-05-05
manpower 6 cost 20000 category concrete location pour deck level 5 start today,edit_task,"{""manpower"":""6"",""cost"":""20000"",""category"":""concrete"",""location"":""pour deck level 5"",""start_date"":""2026-05-05""}",2026-05-05
add comment owner requested change assign to pm location lobby level 2 mark needs review priority p2,edit_task,"{""comments"":""owner requested change"",""assignee"":""pm"",""location"":""lobby level 2"",""status"":""needs review"",""priority"":""p2""}",2026-05-05
assign to grace location level 3 hallway category drywall plan a6 priority p3,edit_task,"{""assignee"":""grace"",""location"":""level 3 hallway"",""category"":""drywall"",""plan"":""a6"",""priority"":""p3""}",2026-05-05
mark verified category plumbing location level 2 bathrooms add comment pressure test passed assign to inspector,edit_task,"{""status"":""verified"",""category"":""plumbing"",""location"":""level 2 bathrooms"",""comments"":""pressure test passed"",""assignee"":""inspector""}",2026-05-05
assign to demolition crew location level 7 category demolition start may 11 end may 20,edit_task,"{""assignee"":""demolition crew"",""location"":""level 7"",""category"":""demolition"",""start_date"":""2026-05-11"",""end_date"":""2026-05-20""}",2026-05-05
category fire alarm plan fa 1 assign to fire alarm crew location lobby level 1 priority p1,edit_task,"{""category"":""fire alarm"",""plan"":""fa 1"",""assignee"":""fire alarm crew"",""location"":""lobby level 1"",""priority"":""p1""}",2026-05-05
set cost 14000 manpower 5 category framing assign to framing crew location level 8,edit_task,"{""cost"":""14000"",""manpower"":""5"",""category"":""framing"",""assignee"":""framing crew"",""location"":""level 8""}",2026-05-05
mark blocked by access location roof assign to foreman add comment waiting for crane permit,edit_task,"{""status"":""blocked by access"",""location"":""roof"",""assignee"":""foreman"",""comments"":""waiting for crane permit""}",2026-05-05
assign to the hvac crew location data center level b1 category hvac plan m2 mark in progress,edit_task,"{""assignee"":""hvac crew"",""location"":""data center level b1"",""category"":""hvac"",""plan"":""m2"",""status"":""in progress""}",2026-05-05
priority p1 due may 8 assign to safety officer location stairwell a mark open,edit_task,"{""priority"":""p1"",""end_date"":""2026-05-08"",""assignee"":""safety officer"",""location"":""stairwell a"",""status"":""open""}",2026-05-05
reassign to the elevator crew category elevator location elevator shaft 1 and 2 plan e lift 01 mark in progress priority p1 cost 45000,edit_task,"{""assignee"":""elevator crew"",""category"":""elevator"",""location"":""elevator shaft 1 and 2"",""plan"":""e lift 01"",""status"":""in progress"",""priority"":""p1"",""cost"":""45000""}",2026-05-05
location pool deck category waterproofing assign to waterproofing crew manpower 3 cost 9000 start may 11,edit_task,"{""location"":""pool deck"",""category"":""waterproofing"",""assignee"":""waterproofing crew"",""manpower"":""3"",""cost"":""9000"",""start_date"":""2026-05-11""}",2026-05-05
mark needs review assign to superintendent location level 4 add comment mep coordination issue category hvac priority p2,edit_task,"{""status"":""needs review"",""assignee"":""superintendent"",""location"":""level 4"",""comments"":""MEP coordination issue"",""category"":""hvac"",""priority"":""p2""}",2026-05-05
category tile assign to tile crew location all bathrooms level 3 plan a8 start next monday manpower 4,edit_task,"{""category"":""tile"",""assignee"":""tile crew"",""location"":""all bathrooms level 3"",""plan"":""a8"",""start_date"":""2026-05-11"",""manpower"":""4""}",2026-05-05
plan drawing p4 category plumbing location level 4 mechanical room assign to plumbing crew mark in progress cost 11500,edit_task,"{""plan"":""p4"",""category"":""plumbing"",""location"":""level 4 mechanical room"",""assignee"":""plumbing crew"",""status"":""in progress"",""cost"":""11500""}",2026-05-05
assign to max priority p2 category drywall location units 501 through 510 start today end may 25,edit_task,"{""assignee"":""max"",""priority"":""p2"",""category"":""drywall"",""location"":""units 501 through 510"",""start_date"":""2026-05-05"",""end_date"":""2026-05-25""}",2026-05-05
location is exterior north wall category cladding plan a9 assign to cladding crew mark open add comment shop drawings approved,edit_task,"{""location"":""exterior north wall"",""category"":""cladding"",""plan"":""a9"",""assignee"":""cladding crew"",""status"":""open"",""comments"":""shop drawings approved""}",2026-05-05
assign to sophie category painting location corridors level 2 manpower 2 cost 3200 mark in progress,edit_task,"{""assignee"":""sophie"",""category"":""painting"",""location"":""corridors level 2"",""manpower"":""2"",""cost"":""3200"",""status"":""in progress""}",2026-05-05
mark it complete assign to site manager priority p1 add comment final inspection passed location unit 102 category finishes,edit_task,"{""status"":""complete"",""assignee"":""site manager"",""priority"":""p1"",""comments"":""final inspection passed"",""location"":""unit 102"",""category"":""finishes""}",2026-05-05
mark on hold add comment equipment delivery delayed assign to project manager due date pushed to end of next month priority p2,edit_task,"{""status"":""on hold"",""comments"":""equipment delivery delayed"",""assignee"":""project manager"",""end_date"":""2026-06-30"",""priority"":""p2""}",2026-05-05
status pending inspection location unit 305 category electrical assign to inspector due may 20,edit_task,"{""status"":""pending inspection"",""location"":""unit 305"",""category"":""electrical"",""assignee"":""inspector"",""end_date"":""2026-05-20""}",2026-05-05
closed out assign to closeout manager location level 1 lobby add comment certificate of occupancy received,edit_task,"{""status"":""closed"",""assignee"":""closeout manager"",""location"":""level 1 lobby"",""comments"":""certificate of occupancy received""}",2026-05-05
mark in progress assign to framing crew location zone 5 level 3 plan a10 start today,edit_task,"{""status"":""in progress"",""assignee"":""framing crew"",""location"":""zone 5 level 3"",""plan"":""a10"",""start_date"":""2026-05-05""}",2026-05-05
tag it hazmat and safety location hazmat storage category demolition assign to hazmat crew priority p1,edit_task,"{""tags"":[""hazmat"",""safety""],""location"":""hazmat storage"",""category"":""demolition"",""assignee"":""hazmat crew"",""priority"":""p1""}",2026-05-05
add tags electrical and high voltage assign to licensed electrician location main switchroom plan e1 priority p1,edit_task,"{""tags"":[""electrical"",""high voltage""],""assignee"":""licensed electrician"",""location"":""main switchroom"",""plan"":""e1"",""priority"":""p1""}",2026-05-05
tag it punch list location lobby category finishes assign to punch crew due end of month mark needs review,edit_task,"{""tags"":[""punch list""],""location"":""lobby"",""category"":""finishes"",""assignee"":""punch crew"",""end_date"":""2026-05-31"",""status"":""needs review""}",2026-05-05
tags are structural and critical assign to structural engineer priority p1 mark on hold add comment awaiting rfi response,edit_task,"{""tags"":[""structural"",""critical""],""assignee"":""structural engineer"",""priority"":""p1"",""status"":""on hold"",""comments"":""awaiting RFI response""}",2026-05-05
note that the access is restricted after 5pm assign to night shift crew location server room mark in progress,edit_task,"{""comments"":""access is restricted after 5pm"",""assignee"":""night shift crew"",""location"":""server room"",""status"":""in progress""}",2026-05-05
add comment materials on backorder until june 1 mark on hold update due date to june 15 priority p2,edit_task,"{""comments"":""materials on backorder until june 1"",""status"":""on hold"",""end_date"":""2026-06-15"",""priority"":""p2""}",2026-05-05
assign to qc team mark needs review add comment rfi 047 submitted location roof drain category plumbing,edit_task,"{""assignee"":""qc team"",""status"":""needs review"",""comments"":""RFI 047 submitted"",""location"":""roof drain"",""category"":""plumbing""}",2026-05-05
priority p1 mark in progress assign to structural crew add comment engineer of record approved location transfer beam level 2,edit_task,"{""priority"":""p1"",""status"":""in progress"",""assignee"":""structural crew"",""comments"":""engineer of record approved"",""location"":""transfer beam level 2""}",2026-05-05
add note leave 48 hours for cure time category concrete location slab level 4 assign to concrete crew mark in progress,edit_task,"{""comments"":""leave 48 hours for cure time"",""category"":""concrete"",""location"":""slab level 4"",""assignee"":""concrete crew"",""status"":""in progress""}",2026-05-05
start date is monday end date is may 31 assign to painting crew category painting location exterior north,edit_task,"{""start_date"":""2026-05-11"",""end_date"":""2026-05-31"",""assignee"":""painting crew"",""category"":""painting"",""location"":""exterior north""}",2026-05-05
due next friday start today assign to the roofing crew mark in progress priority p1,edit_task,"{""end_date"":""2026-05-15"",""start_date"":""2026-05-05"",""assignee"":""roofing crew"",""status"":""in progress"",""priority"":""p1""}",2026-05-05
start date may 20 end date june 30 category hvac assign to mechanical crew location rooftop,edit_task,"{""start_date"":""2026-05-20"",""end_date"":""2026-06-30"",""category"":""hvac"",""assignee"":""mechanical crew"",""location"":""rooftop""}",2026-05-05
push end date to end of next month start next monday assign to framing crew location level 9,edit_task,"{""end_date"":""2026-06-30"",""start_date"":""2026-05-11"",""assignee"":""framing crew"",""location"":""level 9""}",2026-05-05
start date may 11 end date may 25 manpower 5 cost 16000 category steel location level 6,edit_task,"{""start_date"":""2026-05-11"",""end_date"":""2026-05-25"",""manpower"":""5"",""cost"":""16000"",""category"":""steel"",""location"":""level 6""}",2026-05-05
budget is 75000 team of 12 workers category concrete location foundation pour mark in progress start today,edit_task,"{""cost"":""75000"",""manpower"":""12"",""category"":""concrete"",""location"":""foundation pour"",""status"":""in progress"",""start_date"":""2026-05-05""}",2026-05-05
update budget to 32000 manpower 7 assign to steel crew location level 4 framing mark in progress,edit_task,"{""cost"":""32000"",""manpower"":""7"",""assignee"":""steel crew"",""location"":""level 4 framing"",""status"":""in progress""}",2026-05-05
cost 4500 manpower 2 category drywall location unit 601 assign to drywall crew due may 20,edit_task,"{""cost"":""4500"",""manpower"":""2"",""category"":""drywall"",""location"":""unit 601"",""assignee"":""drywall crew"",""end_date"":""2026-05-20""}",2026-05-05
budget 18000 workers 6 category roofing location flat roof section b start next monday end may 31,edit_task,"{""cost"":""18000"",""manpower"":""6"",""category"":""roofing"",""location"":""flat roof section b"",""start_date"":""2026-05-11"",""end_date"":""2026-05-31""}",2026-05-05
assign to low voltage crew cost 6500 manpower 2 location server room category data cabling mark in progress priority p2,edit_task,"{""assignee"":""low voltage crew"",""cost"":""6500"",""manpower"":""2"",""location"":""server room"",""category"":""data cabling"",""status"":""in progress"",""priority"":""p2""}",2026-05-05
assign to it helpdesk mark in progress location server room priority p1 due friday,edit_task,"{""assignee"":""it helpdesk"",""status"":""in progress"",""location"":""server room"",""priority"":""p1"",""end_date"":""2026-05-08""}",2026-05-05
network switch in conference room b is down assign to network team priority p1 mark in progress,edit_task,"{""location"":""conference room b"",""assignee"":""network team"",""priority"":""p1"",""status"":""in progress""}",2026-05-05
software license renewal due end of month assign to it manager cost 2400 mark open,edit_task,"{""end_date"":""2026-05-31"",""assignee"":""it manager"",""cost"":""2400"",""status"":""open""}",2026-05-05
annual compliance report due end of month assign to legal team mark in progress priority p1,edit_task,"{""end_date"":""2026-05-31"",""assignee"":""legal team"",""status"":""in progress"",""priority"":""p1""}",2026-05-05
reassign to backup team add comment original assignee on leave mark in progress priority p1,edit_task,"{""assignee"":""backup team"",""comments"":""original assignee on leave"",""status"":""in progress"",""priority"":""p1""}",2026-05-05
mark complete add comment client signed off location site office,edit_task,"{""status"":""complete"",""comments"":""client signed off"",""location"":""site office""}",2026-05-05
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2026-06-30"",""status"":""on hold"",""comments"":""budget approval pending""}",2026-05-05
mark needs review assign to qa lead priority p1 add comment ready for final check,edit_task,"{""status"":""needs review"",""assignee"":""qa lead"",""priority"":""p1"",""comments"":""ready for final check""}",2026-05-05
set priority p1 assign to senior manager due next friday mark open,edit_task,"{""priority"":""p1"",""assignee"":""senior manager"",""end_date"":""2026-05-15"",""status"":""open""}",2026-05-05
set category to elevate,edit_task,"{""category"":""elevate""}",2026-05-05
change the category to mobilize,edit_task,"{""category"":""mobilize""}",2026-05-05
category is inspect,edit_task,"{""category"":""inspect""}",2026-05-05
update category to restore,edit_task,"{""category"":""restore""}",2026-05-05
mark it under category remediate,edit_task,"{""category"":""remediate""}",2026-05-05
the category should be escalate,edit_task,"{""category"":""escalate""}",2026-05-05
put it in category upgrade,edit_task,"{""category"":""upgrade""}",2026-05-05
category needs to be install,edit_task,"{""category"":""install""}",2026-05-05
set the category as repair,edit_task,"{""category"":""repair""}",2026-05-05
change category to assess,edit_task,"{""category"":""assess""}",2026-05-05
category is replace,edit_task,"{""category"":""replace""}",2026-05-05
update it to category monitor,edit_task,"{""category"":""monitor""}",2026-05-05
set category to survey,edit_task,"{""category"":""survey""}",2026-05-05
move it to the decommission category,edit_task,"{""category"":""decommission""}",2026-05-05
category should be commission,edit_task,"{""category"":""commission""}",2026-05-05
set category to mep 01,edit_task,"{""category"":""mep 01""}",2026-05-05
change category to zone 4,edit_task,"{""category"":""zone 4""}",2026-05-05
category is phase 2,edit_task,"{""category"":""phase 2""}",2026-05-05
update category to lot b,edit_task,"{""category"":""lot b""}",2026-05-05
set it to category section 3c,edit_task,"{""category"":""section 3c""}",2026-05-05
put this under category 47,edit_task,"{""category"":""47""}",2026-05-05
change the category to track a,edit_task,"{""category"":""track a""}",2026-05-05
set category to tenant improvement,edit_task,"{""category"":""tenant improvement""}",2026-05-05
change category to owner direct,edit_task,"{""category"":""owner direct""}",2026-05-05
category is value engineering,edit_task,"{""category"":""value engineering""}",2026-05-05
update category to close out work,edit_task,"{""category"":""close out work""}",2026-05-05
set it to category site logistics,edit_task,"{""category"":""site logistics""}",2026-05-05
the category is general conditions,edit_task,"{""category"":""general conditions""}",2026-05-05
move to category temporary works,edit_task,"{""category"":""temporary works""}",2026-05-05
set category to permit and approval,edit_task,"{""category"":""permit and approval""}",2026-05-05
change category to as built documentation,edit_task,"{""category"":""as built documentation""}",2026-05-05
set category to signage,edit_task,"{""category"":""signage""}",2026-05-05
change category to millwork,edit_task,"{""category"":""millwork""}",2026-05-05
category is balustrade,edit_task,"{""category"":""balustrade""}",2026-05-05
update category to soffit,edit_task,"{""category"":""soffit""}",2026-05-05
set it to category fenestration,edit_task,"{""category"":""fenestration""}",2026-05-05
category is sealant,edit_task,"{""category"":""sealant""}",2026-05-05
change the category to terrazzo,edit_task,"{""category"":""terrazzo""}",2026-05-05
set category to hardscape,edit_task,"{""category"":""hardscape""}",2026-05-05
the category is joinery,edit_task,"{""category"":""joinery""}",2026-05-05
update category to caulking,edit_task,"{""category"":""caulking""}",2026-05-05
move this to category operable walls,edit_task,"{""category"":""operable walls""}",2026-05-05
category is access flooring,edit_task,"{""category"":""access flooring""}",2026-05-05
set category to elevate assign to mike mark in progress,edit_task,"{""category"":""elevate"",""assignee"":""mike"",""status"":""in progress""}",2026-05-05
change category to mobilize priority p1 due end of month,edit_task,"{""category"":""mobilize"",""priority"":""p1"",""end_date"":""2026-05-31""}",2026-05-05
category is remediate location basement assign to cleanup crew,edit_task,"{""category"":""remediate"",""location"":""basement"",""assignee"":""cleanup crew""}",2026-05-05
update category to tenant improvement location level 3 mark in progress,edit_task,"{""category"":""tenant improvement"",""location"":""level 3"",""status"":""in progress""}",2026-05-05
set category to close out work assign to pm due end of month priority p2,edit_task,"{""category"":""close out work"",""assignee"":""pm"",""end_date"":""2026-05-31"",""priority"":""p2""}",2026-05-05
category is value engineering mark needs review assign to superintendent,edit_task,"{""category"":""value engineering"",""status"":""needs review"",""assignee"":""superintendent""}",2026-05-05
change category to phase 2 start date monday end date may 31,edit_task,"{""category"":""phase 2"",""start_date"":""2026-05-11"",""end_date"":""2026-05-31""}",2026-05-05
category should be owner direct cost 15000 assign to contractor,edit_task,"{""category"":""owner direct"",""cost"":""15000"",""assignee"":""contractor""}",2026-05-05
update category to site logistics manpower 6 mark in progress,edit_task,"{""category"":""site logistics"",""manpower"":""6"",""status"":""in progress""}",2026-05-05
category is general conditions location site office assign to super mark open,edit_task,"{""category"":""general conditions"",""location"":""site office"",""assignee"":""super"",""status"":""open""}",2026-05-05
change category to as built documentation assign to project engineer due end of month,edit_task,"{""category"":""as built documentation"",""assignee"":""project engineer"",""end_date"":""2026-05-31""}",2026-05-05
title fixing motor vans,edit_task,"{""title"":""fixing motor vans""}",2026-05-05
set title broken door level 3,edit_task,"{""title"":""broken door level 3""}",2026-05-05
update title water leak bathroom,edit_task,"{""title"":""water leak bathroom""}",2026-05-05
title is check hvac unit roof,edit_task,"{""title"":""check hvac unit roof""}",2026-05-05
set title to paint lobby walls,edit_task,"{""title"":""paint lobby walls""}",2026-05-05
update title to replace door hardware unit 4,edit_task,"{""title"":""replace door hardware unit 4""}",2026-05-05
call it concrete pour delayed,edit_task,"{""title"":""concrete pour delayed""}",2026-05-05
rename it to meet with inspector,edit_task,"{""title"":""meet with inspector""}",2026-05-05
make the title water coming through ceiling,edit_task,"{""title"":""water coming through ceiling""}",2026-05-05
change title to fix elevator lobby tile,edit_task,"{""title"":""fix elevator lobby tile""}",2026-05-05
title should be patch the wall unit 5,edit_task,"{""title"":""patch the wall unit 5""}",2026-05-05
the title is check on the generator,edit_task,"{""title"":""check on the generator""}",2026-05-05
title roof drain blocked,edit_task,"{""title"":""roof drain blocked""}",2026-05-05
set title window seal failing,edit_task,"{""title"":""window seal failing""}",2026-05-05
update title replace ceiling tiles corridor,edit_task,"{""title"":""replace ceiling tiles corridor""}",2026-05-05
title is broken light stairwell,edit_task,"{""title"":""broken light stairwell""}",2026-05-05
set title to fire door not closing,edit_task,"{""title"":""fire door not closing""}",2026-05-05
update title to call the structural engineer,edit_task,"{""title"":""call the structural engineer""}",2026-05-05
call it follow up with the electrician,edit_task,"{""title"":""follow up with the electrician""}",2026-05-05
rename it to grout cracking bathroom,edit_task,"{""title"":""grout cracking bathroom""}",2026-05-05
make the title handrail loose level 2,edit_task,"{""title"":""handrail loose level 2""}",2026-05-05
change title to ac not cooling conference room,edit_task,"{""title"":""ac not cooling conference room""}",2026-05-05
title should be check the sump pump,edit_task,"{""title"":""check the sump pump""}",2026-05-05
the title is exterior cladding damaged,edit_task,"{""title"":""exterior cladding damaged""}",2026-05-05
title basement flooding again,edit_task,"{""title"":""basement flooding again""}",2026-05-05
set title pipe insulation missing,edit_task,"{""title"":""pipe insulation missing""}",2026-05-05
update title touch up paint lobby,edit_task,"{""title"":""touch up paint lobby""}",2026-05-05
title is fix the intercom,edit_task,"{""title"":""fix the intercom""}",2026-05-05
set title to door closer broken unit 8,edit_task,"{""title"":""door closer broken unit 8""}",2026-05-05
update title to cable tray installation level 5,edit_task,"{""title"":""cable tray installation level 5""}",2026-05-05
call it clean up zone 3,edit_task,"{""title"":""clean up zone 3""}",2026-05-05
rename it to mark out utility lines,edit_task,"{""title"":""mark out utility lines""}",2026-05-05
make the title pour concrete footing b,edit_task,"{""title"":""pour concrete footing b""}",2026-05-05
change title to safety railing missing,edit_task,"{""title"":""safety railing missing""}",2026-05-05
title should be gas meter access blocked,edit_task,"{""title"":""gas meter access blocked""}",2026-05-05
the title is submit rfi for beam size,edit_task,"{""title"":""submit rfi for beam size""}",2026-05-05
title order more rebar,edit_task,"{""title"":""order more rebar""}",2026-05-05
set title coordinate with mep crew,edit_task,"{""title"":""coordinate with mep crew""}",2026-05-05
update title damp proofing cracked,edit_task,"{""title"":""damp proofing cracked""}",2026-05-05
title is tile lippage lobby,edit_task,"{""title"":""tile lippage lobby""}",2026-05-05
set title to follow up owner punch list,edit_task,"{""title"":""follow up owner punch list""}",2026-05-05
update title to balcony waterproofing failed,edit_task,"{""title"":""balcony waterproofing failed""}",2026-05-05
call it skylight leaking,edit_task,"{""title"":""skylight leaking""}",2026-05-05
rename it to replace broken faucet unit 12,edit_task,"{""title"":""replace broken faucet unit 12""}",2026-05-05
make the title check boiler room pressure,edit_task,"{""title"":""check boiler room pressure""}",2026-05-05
change title to missing smoke detector level 4,edit_task,"{""title"":""missing smoke detector level 4""}",2026-05-05
title should be stair nosing loose,edit_task,"{""title"":""stair nosing loose""}",2026-05-05
the title is ceiling grid misaligned,edit_task,"{""title"":""ceiling grid misaligned""}",2026-05-05
title expansion joint sealant,edit_task,"{""title"":""expansion joint sealant""}",2026-05-05
set title repaint fire door,edit_task,"{""title"":""repaint fire door""}",2026-05-05
update title patch spalled concrete column,edit_task,"{""title"":""patch spalled concrete column""}",2026-05-05
title is reroute drain pipe level 2,edit_task,"{""title"":""reroute drain pipe level 2""}",2026-05-05
set title to install access panel ceiling,edit_task,"{""title"":""install access panel ceiling""}",2026-05-05
update title to reattach loose cladding panel,edit_task,"{""title"":""reattach loose cladding panel""}",2026-05-05
call it fix running toilet unit 9,edit_task,"{""title"":""fix running toilet unit 9""}",2026-05-05
rename it to replace broken outlet cover,edit_task,"{""title"":""replace broken outlet cover""}",2026-05-05
make the title seal gap around pipe penetration,edit_task,"{""title"":""seal gap around pipe penetration""}",2026-05-05
change title to touch up caulk around windows,edit_task,"{""title"":""touch up caulk around windows""}",2026-05-05
title should be clean rust off railing,edit_task,"{""title"":""clean rust off railing""}",2026-05-05
the title is repoint brick facade section c,edit_task,"{""title"":""repoint brick facade section c""}",2026-05-05
title replace damaged floor tile lobby,edit_task,"{""title"":""replace damaged floor tile lobby""}",2026-05-05
set title fix squeaky floor unit 7,edit_task,"{""title"":""fix squeaky floor unit 7""}",2026-05-05
update title re grout shower unit 11,edit_task,"{""title"":""re grout shower unit 11""}",2026-05-05
title is replace cracked glass panel,edit_task,"{""title"":""replace cracked glass panel""}",2026-05-05
set title to adjust door alignment unit 3,edit_task,"{""title"":""adjust door alignment unit 3""}",2026-05-05
update title to clear blocked floor drain,edit_task,"{""title"":""clear blocked floor drain""}",2026-05-05
call it fix loose handrail roof terrace,edit_task,"{""title"":""fix loose handrail roof terrace""}",2026-05-05
rename it to reconnect disconnected duct,edit_task,"{""title"":""reconnect disconnected duct""}",2026-05-05
make the title replace missing ceiling tile level 6,edit_task,"{""title"":""replace missing ceiling tile level 6""}",2026-05-05
change title to fix tripping hazard loading dock,edit_task,"{""title"":""fix tripping hazard loading dock""}",2026-05-05
title should be tighten loose bolts on mezzanine,edit_task,"{""title"":""tighten loose bolts on mezzanine""}",2026-05-05
the title is patch hole in drywall corridor,edit_task,"{""title"":""patch hole in drywall corridor""}",2026-05-05
title reseal expansion joint roof,edit_task,"{""title"":""reseal expansion joint roof""}",2026-05-05
set title realign misaligned door frame,edit_task,"{""title"":""realign misaligned door frame""}",2026-05-05
update title check sprinkler head clearance,edit_task,"{""title"":""check sprinkler head clearance""}",2026-05-05
title is replace burned out exit sign,edit_task,"{""title"":""replace burned out exit sign""}",2026-05-05
set title to fix sticky sliding door,edit_task,"{""title"":""fix sticky sliding door""}",2026-05-05
update title to unclog sink drain unit 14,edit_task,"{""title"":""unclog sink drain unit 14""}",2026-05-05
call it inspect wall for moisture damage,edit_task,"{""title"":""inspect wall for moisture damage""}",2026-05-05
rename it to replace broken window latch,edit_task,"{""title"":""replace broken window latch""}",2026-05-05
make the title fix gap in skirting board,edit_task,"{""title"":""fix gap in skirting board""}",2026-05-05
change title to replace faulty light switch,edit_task,"{""title"":""replace faulty light switch""}",2026-05-05
title should be fix peeling paint stairwell,edit_task,"{""title"":""fix peeling paint stairwell""}",2026-05-05
the title is secure loose conduit level 3,edit_task,"{""title"":""secure loose conduit level 3""}",2026-05-05
title replace missing downspout section,edit_task,"{""title"":""replace missing downspout section""}",2026-05-05
set title reattach detached gutter,edit_task,"{""title"":""reattach detached gutter""}",2026-05-05
update title fix uneven paving courtyard,edit_task,"{""title"":""fix uneven paving courtyard""}",2026-05-05
title is replace corroded pipe fitting,edit_task,"{""title"":""replace corroded pipe fitting""}",2026-05-05
set title to clean blocked roof gutter,edit_task,"{""title"":""clean blocked roof gutter""}",2026-05-05
update title to fix broken gate latch,edit_task,"{""title"":""fix broken gate latch""}",2026-05-05
call it replace worn door threshold,edit_task,"{""title"":""replace worn door threshold""}",2026-05-05
rename it to fix loose toilet seat unit 6,edit_task,"{""title"":""fix loose toilet seat unit 6""}",2026-05-05
make the title re caulk bathtub unit 10,edit_task,"{""title"":""re caulk bathtub unit 10""}",2026-05-05
change title to replace broken hose bib,edit_task,"{""title"":""replace broken hose bib""}",2026-05-05
title should be fix sagging suspended ceiling,edit_task,"{""title"":""fix sagging suspended ceiling""}",2026-05-05
the title is touch up damaged paintwork,edit_task,"{""title"":""touch up damaged paintwork""}",2026-05-05
title replace missing outlet plate,edit_task,"{""title"":""replace missing outlet plate""}",2026-05-05
set title fix broken cabinet hinge,edit_task,"{""title"":""fix broken cabinet hinge""}",2026-05-05
update title reseal around air diffuser,edit_task,"{""title"":""reseal around air diffuser""}",2026-05-05
title is replace faulty door buzzer,edit_task,"{""title"":""replace faulty door buzzer""}",2026-05-05
set title to fix dripping tap unit 2,edit_task,"{""title"":""fix dripping tap unit 2""}",2026-05-05
update title to realign crooked light fitting,edit_task,"{""title"":""realign crooked light fitting""}",2026-05-05
title fixing motor vans assign to joe,edit_task,"{""title"":""fixing motor vans"",""assignee"":""joe""}",2026-05-05
title broken door level 3 location level 3 mark open,edit_task,"{""title"":""broken door level 3"",""location"":""level 3"",""status"":""open""}",2026-05-05
title water leak bathroom priority p1 assign to plumber,edit_task,"{""title"":""water leak bathroom"",""priority"":""p1"",""assignee"":""plumber""}",2026-05-05
title roof drain blocked location roof mark in progress,edit_task,"{""title"":""roof drain blocked"",""location"":""roof"",""status"":""in progress""}",2026-05-05
title ac not cooling conference room assign to hvac crew priority p2,edit_task,"{""title"":""ac not cooling conference room"",""assignee"":""hvac crew"",""priority"":""p2""}",2026-05-05
title safety railing missing location stairwell a priority p1 mark open,edit_task,"{""title"":""safety railing missing"",""location"":""stairwell a"",""priority"":""p1"",""status"":""open""}",2026-05-05
set title broken light stairwell category electrical assign to electrician,edit_task,"{""title"":""broken light stairwell"",""category"":""electrical"",""assignee"":""electrician""}",2026-05-05
update title fire door not closing location level 2 category fire protection,edit_task,"{""title"":""fire door not closing"",""location"":""level 2"",""category"":""fire protection""}",2026-05-05
title exterior cladding damaged location south facade mark needs review,edit_task,"{""title"":""exterior cladding damaged"",""location"":""south facade"",""status"":""needs review""}",2026-05-05
call it skylight leaking assign to roofing crew priority p1 mark in progress,edit_task,"{""title"":""skylight leaking"",""assignee"":""roofing crew"",""priority"":""p1"",""status"":""in progress""}",2026-05-05
title missing smoke detector level 4 location level 4 category fire alarm priority p1,edit_task,"{""title"":""missing smoke detector level 4"",""location"":""level 4"",""category"":""fire alarm"",""priority"":""p1""}",2026-05-05
title grout cracking bathroom location unit 203 category tile,edit_task,"{""title"":""grout cracking bathroom"",""location"":""unit 203"",""category"":""tile""}",2026-05-05
title check boiler room pressure location boiler room assign to mechanical team,edit_task,"{""title"":""check boiler room pressure"",""location"":""boiler room"",""assignee"":""mechanical team""}",2026-05-05
update title patch the wall unit 5 location unit 5 category drywall,edit_task,"{""title"":""patch the wall unit 5"",""location"":""unit 5"",""category"":""drywall""}",2026-05-05
title basement flooding again priority p1 assign to plumbing crew mark in progress,edit_task,"{""title"":""basement flooding again"",""priority"":""p1"",""assignee"":""plumbing crew"",""status"":""in progress""}",2026-05-05
title broken light stairwell location stairwell b category electrical mark open,edit_task,"{""title"":""broken light stairwell"",""location"":""stairwell b"",""category"":""electrical"",""status"":""open""}",2026-05-05
set title replace cracked glass panel location unit 5 category glazing assign to glazing crew,edit_task,"{""title"":""replace cracked glass panel"",""location"":""unit 5"",""category"":""glazing"",""assignee"":""glazing crew""}",2026-05-05
title clear blocked floor drain location basement category plumbing priority p2,edit_task,"{""title"":""clear blocked floor drain"",""location"":""basement"",""category"":""plumbing"",""priority"":""p2""}",2026-05-05
title patch hole in drywall corridor location corridor b category drywall assign to drywall crew,edit_task,"{""title"":""patch hole in drywall corridor"",""location"":""corridor b"",""category"":""drywall"",""assignee"":""drywall crew""}",2026-05-05
update title fix tripping hazard loading dock location loading dock priority p1 mark open,edit_task,"{""title"":""fix tripping hazard loading dock"",""location"":""loading dock"",""priority"":""p1"",""status"":""open""}",2026-05-05
title reseal expansion joint roof location roof category waterproofing assign to waterproofing crew,edit_task,"{""title"":""reseal expansion joint roof"",""location"":""roof"",""category"":""waterproofing"",""assignee"":""waterproofing crew""}",2026-05-05
title replace burned out exit sign location level 3 category fire alarm mark open priority p2,edit_task,"{""title"":""replace burned out exit sign"",""location"":""level 3"",""category"":""fire alarm"",""status"":""open"",""priority"":""p2""}",2026-05-05
title fix running toilet unit 9 location unit 9 category plumbing assign to plumber priority p2,edit_task,"{""title"":""fix running toilet unit 9"",""location"":""unit 9"",""category"":""plumbing"",""assignee"":""plumber"",""priority"":""p2""}",2026-05-05
title secure loose conduit level 3 location level 3 category electrical assign to electrician,edit_task,"{""title"":""secure loose conduit level 3"",""location"":""level 3"",""category"":""electrical"",""assignee"":""electrician""}",2026-05-05
call it touch up damaged paintwork location lobby category painting mark in progress,edit_task,"{""title"":""touch up damaged paintwork"",""location"":""lobby"",""category"":""painting"",""status"":""in progress""}",2026-05-05
title on this should be Fix roof ponding at drain,edit_task,"{""title"":""fix roof ponding at drain""}",2026-05-05
for the title put Seal parapet wall joint,edit_task,"{""title"":""seal parapet wall joint""}",2026-05-05
call this one Regrout bathroom floor tile,edit_task,"{""title"":""regrout bathroom floor tile""}",2026-05-05
set the title on this to Adjust bedroom door,edit_task,"{""title"":""adjust bedroom door""}",2026-05-05
rename this one to Waterproof planter wall,edit_task,"{""title"":""waterproof planter wall""}",2026-05-05
use Clear terrace drain for the title,edit_task,"{""title"":""clear terrace drain""}",2026-05-05
title needs to be Patch plaster at switch box,edit_task,"{""title"":""patch plaster at switch box""}",2026-05-05
mark the title as Touch up corridor paint,edit_task,"{""title"":""touch up corridor paint""}",2026-05-05
have the title read Align pantry cabinet doors,edit_task,"{""title"":""align pantry cabinet doors""}",2026-05-05
change the title on this to Reseal shower joints,edit_task,"{""title"":""reseal shower joints""}",2026-05-05
for this one use Correct floor slope as the title,edit_task,"{""title"":""correct floor slope""}",2026-05-05
retitle this to Tighten balcony railing,edit_task,"{""title"":""tighten balcony railing""}",2026-05-05
put the title down as Repaint peeling wall,edit_task,"{""title"":""repaint peeling wall""}",2026-05-05
update the title so it says Secure loose outlet,edit_task,"{""title"":""secure loose outlet""}",2026-05-05
make this title Level sunken pavers,edit_task,"{""title"":""level sunken pavers""}",2026-05-05
the title here should be Clean efflorescence off wall,edit_task,"{""title"":""clean efflorescence off wall""}",2026-05-05
use Caulk window frame for this title,edit_task,"{""title"":""caulk window frame""}",2026-05-05
call the title Refinish countertop edge,edit_task,"{""title"":""refinish countertop edge""}",2026-05-05
set this title to Unclog bathroom floor drain,edit_task,"{""title"":""unclog bathroom floor drain""}",2026-05-05
change name to Straighten curtain track,edit_task,"{""title"":""straighten curtain track""}",2026-05-05
title on this should be Recoat roof membrane,edit_task,"{""title"":""recoat roof membrane""}",2026-05-05
for the title put Reset hollow tile,edit_task,"{""title"":""reset hollow tile""}",2026-05-05
call this one Smooth plaster finish,edit_task,"{""title"":""smooth plaster finish""}",2026-05-05
set the title on this to Flush AC drain line,edit_task,"{""title"":""flush ac drain line""}",2026-05-05
rename this one to Align double doors,edit_task,"{""title"":""align double doors""}",2026-05-05
use Reset skirting tile for the title,edit_task,"{""title"":""reset skirting tile""}",2026-05-05
title needs to be Repair corner bead,edit_task,"{""title"":""repair corner bead""}",2026-05-05
mark the title as Adjust door closer,edit_task,"{""title"":""adjust door closer""}",2026-05-05
have the title read Shim threshold,edit_task,"{""title"":""shim threshold""}",2026-05-05
change the title on this to Dry out ceiling area,edit_task,"{""title"":""dry out ceiling area""}",2026-05-05
for this one use Brace handrail post as the title,edit_task,"{""title"":""brace handrail post""}",2026-05-05
retitle this to Polish marble threshold,edit_task,"{""title"":""polish marble threshold""}",2026-05-05
put the title down as Redirect downspout,edit_task,"{""title"":""redirect downspout""}",2026-05-05
update the title so it says Relevel floor drain cover,edit_task,"{""title"":""relevel floor drain cover""}",2026-05-05
make this title Fasten conduit support,edit_task,"{""title"":""fasten conduit support""}",2026-05-05
the title here should be Remove rust stains from facade,edit_task,"{""title"":""remove rust stains from facade""}",2026-05-05
use Repoint masonry joints for this title,edit_task,"{""title"":""repoint masonry joints""}",2026-05-05
call the title Lubricate window track,edit_task,"{""title"":""lubricate window track""}",2026-05-05
set this title to Run wiring in conduit,edit_task,"{""title"":""run wiring in conduit""}",2026-05-05
change name to Stabilize toilet,edit_task,"{""title"":""stabilize toilet""}",2026-05-05
title on this should be Repair stair nosing,edit_task,"{""title"":""repair stair nosing""}",2026-05-05
for the title put Clean mold off wall,edit_task,"{""title"":""clean mold off wall""}",2026-05-05
call this one Flush water line,edit_task,"{""title"":""flush water line""}",2026-05-05
set the title on this to Straighten fence panel,edit_task,"{""title"":""straighten fence panel""}",2026-05-05
rename this one to Blend paint color,edit_task,"{""title"":""blend paint color""}",2026-05-05
use Reattach base trim for the title,edit_task,"{""title"":""reattach base trim""}",2026-05-05
title needs to be Feather gypsum joints,edit_task,"{""title"":""feather gypsum joints""}",2026-05-05
mark the title as Repair wood veneer,edit_task,"{""title"":""repair wood veneer""}",2026-05-05
have the title read Build up low roof area,edit_task,"{""title"":""build up low roof area""}",2026-05-05
change the title on this to Redirect shower flow,edit_task,"{""title"":""redirect shower flow""}",2026-05-05
for this one use Blend patch marks as the title,edit_task,"{""title"":""blend patch marks""}",2026-05-05
retitle this to Reposition floor drain,edit_task,"{""title"":""reposition floor drain""}",2026-05-05
put the title down as Scrape roof coating,edit_task,"{""title"":""scrape roof coating""}",2026-05-05
update the title so it says Support ceiling grid,edit_task,"{""title"":""support ceiling grid""}",2026-05-05
make this title Clear weep holes,edit_task,"{""title"":""clear weep holes""}",2026-05-05
the title here should be Rehang cabinet door,edit_task,"{""title"":""rehang cabinet door""}",2026-05-05
use Dress tile edges for this title,edit_task,"{""title"":""dress tile edges""}",2026-05-05
call the title Reinforce partition frame,edit_task,"{""title"":""reinforce partition frame""}",2026-05-05
set this title to Reset pavers,edit_task,"{""title"":""reset pavers""}",2026-05-05
change name to Blend grout color,edit_task,"{""title"":""blend grout color""}",2026-05-05
title on this should be Reslope balcony to drain,edit_task,"{""title"":""reslope balcony to drain""}",2026-05-05
for the title put Adjust door latch,edit_task,"{""title"":""adjust door latch""}",2026-05-05
call this one Reseat frame gasket,edit_task,"{""title"":""reseat frame gasket""}",2026-05-05
set the title on this to Fill voids under tile,edit_task,"{""title"":""fill voids under tile""}",2026-05-05
rename this one to Recenter light canopy,edit_task,"{""title"":""recenter light canopy""}",2026-05-05
use Remove excess silicone for the title,edit_task,"{""title"":""remove excess silicone""}",2026-05-05
title needs to be Rework terrazzo finish,edit_task,"{""title"":""rework terrazzo finish""}",2026-05-05
mark the title as Ease countertop corner,edit_task,"{""title"":""ease countertop corner""}",2026-05-05
have the title read Check source of wall seepage,edit_task,"{""title"":""check source of wall seepage""}",2026-05-05
change the title on this to Rebed coping stones,edit_task,"{""title"":""rebed coping stones""}",2026-05-05
for this one use Sand concrete patch as the title,edit_task,"{""title"":""sand concrete patch""}",2026-05-05
retitle this to Retension shade fabric,edit_task,"{""title"":""retension shade fabric""}",2026-05-05
put the title down as Blend paint edges,edit_task,"{""title"":""blend paint edges""}",2026-05-05
update the title so it says Raise utility cover,edit_task,"{""title"":""raise utility cover""}",2026-05-05
make this title Resecure flashing edge,edit_task,"{""title"":""resecure flashing edge""}",2026-05-05
the title here should be Flush sprinkler line,edit_task,"{""title"":""flush sprinkler line""}",2026-05-05
use Match tile pattern for this title,edit_task,"{""title"":""match tile pattern""}",2026-05-05
call the title Reset bollard base,edit_task,"{""title"":""reset bollard base""}",2026-05-05
set this title to Rebalance HVAC airflow,edit_task,"{""title"":""rebalance hvac airflow""}",2026-05-05
change name to Regrade away from wall,edit_task,"{""title"":""regrade away from wall""}",2026-05-05
title on this should be Ease swollen wood door,edit_task,"{""title"":""ease swollen wood door""}",2026-05-05
for the title put Conceal exposed cable,edit_task,"{""title"":""conceal exposed cable""}",2026-05-05
call this one Recondition sealant joints,edit_task,"{""title"":""recondition sealant joints""}",2026-05-05
set the title on this to Dry wet insulation,edit_task,"{""title"":""dry wet insulation""}",2026-05-05
rename this one to Square access hatch,edit_task,"{""title"":""square access hatch""}",2026-05-05
use Match ceiling texture for the title,edit_task,"{""title"":""match ceiling texture""}",2026-05-05
title needs to be Reseat glass gasket,edit_task,"{""title"":""reseat glass gasket""}",2026-05-05
mark the title as Refresh floor markings,edit_task,"{""title"":""refresh floor markings""}",2026-05-05
have the title read Refinish metal frame,edit_task,"{""title"":""refinish metal frame""}",2026-05-05
change the title on this to Redirect overflow pipe,edit_task,"{""title"":""redirect overflow pipe""}",2026-05-05
for this one use Clear ventilation grille as the title,edit_task,"{""title"":""clear ventilation grille""}",2026-05-05
retitle this to Blend stucco texture,edit_task,"{""title"":""blend stucco texture""}",2026-05-05
put the title down as Reanchor stone cladding,edit_task,"{""title"":""reanchor stone cladding""}",2026-05-05
update the title so it says Even out joint width,edit_task,"{""title"":""even out joint width""}",2026-05-05
make this title Raise low concrete section,edit_task,"{""title"":""raise low concrete section""}",2026-05-05
the title here should be Recenter wall fixture,edit_task,"{""title"":""recenter wall fixture""}",2026-05-05
use Recoat protective finish for this title,edit_task,"{""title"":""recoat protective finish""}",2026-05-05
call the title Adjust sensor alignment,edit_task,"{""title"":""adjust sensor alignment""}",2026-05-05
set this title to Adjust sticking drawer,edit_task,"{""title"":""adjust sticking drawer""}",2026-05-05
change name to Improve roof drain outlet,edit_task,"{""title"":""improve roof drain outlet""}",2026-05-05
put this on a3 title should be valve access note,edit_task,"{""title"":""valve access note"",""plan"":""a3""}",2026-05-05
sheet 9 on this one title should be roof drain follow up,edit_task,"{""title"":""roof drain follow up"",""plan"":""sheet 9""}",2026-05-05
move this to rcp delta 8 call it lobby paint touch up,edit_task,"{""title"":""lobby paint touch up"",""plan"":""rcp delta 8""}",2026-05-05
s2 for this one and name it corridor tile reset,edit_task,"{""title"":""corridor tile reset"",""plan"":""s2""}",2026-05-05
roof level and title it balcony railing check,edit_task,"{""title"":""balcony railing check"",""plan"":""roof level""}",2026-05-05
put this on a301 title is window seal repair,edit_task,"{""title"":""window seal repair"",""plan"":""a301""}",2026-05-05
title should be gc callback for unit 18 put it on e4,edit_task,"{""title"":""gc callback for unit 18"",""plan"":""e4""}",2026-05-05
call this permit card photo move it to sheet 7,edit_task,"{""title"":""permit card photo"",""plan"":""sheet 7""}",2026-05-05
for fp3 use low slope drain cleanup as the title,edit_task,"{""title"":""low slope drain cleanup"",""plan"":""fp3""}",2026-05-05
set the title to valley flashing punch and put this on a201,edit_task,"{""title"":""valley flashing punch"",""plan"":""a201""}",2026-05-05
north pit note is the title put this on m2,edit_task,"{""title"":""north pit note"",""plan"":""m2""}",2026-05-05
pantry cabinet adjustment start may 12 2026,edit_task,"{""title"":""pantry cabinet adjustment"",""start_date"":""2026-05-12""}",2026-05-05
ceiling stain review starts june 3 2026,edit_task,"{""title"":""ceiling stain review"",""start_date"":""2026-06-03""}",2026-05-05
kick off parapet sealant repair on july 14 2026,edit_task,"{""title"":""parapet sealant repair"",""start_date"":""2026-07-14""}",2026-05-05
bathroom grout repair starts august 21 2026,edit_task,"{""title"":""bathroom grout repair"",""start_date"":""2026-08-21""}",2026-05-05
have door hardware adjustment starting september 5 2026,edit_task,"{""title"":""door hardware adjustment"",""start_date"":""2026-09-05""}",2026-05-05
drain line flush begins january 18 2027,edit_task,"{""title"":""drain line flush"",""start_date"":""2027-01-18""}",2026-05-05
stucco patch blend due may 19 2026,edit_task,"{""title"":""stucco patch blend"",""end_date"":""2026-05-19""}",2026-05-05
paver reset area needs to be done by june 11 2026,edit_task,"{""title"":""paver reset area"",""end_date"":""2026-06-11""}",2026-05-05
get outlet cover secure wrapped by july 25 2026,edit_task,"{""title"":""outlet cover secure"",""end_date"":""2026-07-25""}",2026-05-05
threshold shim work due october 2 2026,edit_task,"{""title"":""threshold shim work"",""end_date"":""2026-10-02""}",2026-05-05
facade rust cleanup by november 16 2026,edit_task,"{""title"":""facade rust cleanup"",""end_date"":""2026-11-16""}",2026-05-05
masonry joint repair needs to be done by february 9 2027,edit_task,"{""title"":""masonry joint repair"",""end_date"":""2027-02-09""}",2026-05-05
countertop edge repair this needs 2 guys,edit_task,"{""title"":""countertop edge repair"",""manpower"":""2""}",2026-05-05
curtain track adjustment crew of 3 on this one,edit_task,"{""title"":""curtain track adjustment"",""manpower"":""3""}",2026-05-05
sprinkler line flush put 4 workers on it,edit_task,"{""title"":""sprinkler line flush"",""manpower"":""4""}",2026-05-05
floor drain reset team of 5 for this,edit_task,"{""title"":""floor drain reset"",""manpower"":""5""}",2026-05-05
shade fabric tension gonna need 6 guys,edit_task,"{""title"":""shade fabric tension"",""manpower"":""6""}",2026-05-05
stone cladding anchor make it a 7 man crew,edit_task,"{""title"":""stone cladding anchor"",""manpower"":""7""}",2026-05-05
roof membrane touch up budget is 1200,edit_task,"{""title"":""roof membrane touch up"",""cost"":""1200""}",2026-05-05
utility cover raise cost is 2400,edit_task,"{""title"":""utility cover raise"",""cost"":""2400""}",2026-05-05
glass gasket reseat should be around 3600,edit_task,"{""title"":""glass gasket reseat"",""cost"":""3600""}",2026-05-05
sensor alignment check estimate 4800,edit_task,"{""title"":""sensor alignment check"",""cost"":""4800""}",2026-05-05
overflow pipe redirect budget about 5200,edit_task,"{""title"":""overflow pipe redirect"",""cost"":""5200""}",2026-05-05
access hatch square up call it 6800,edit_task,"{""title"":""access hatch square up"",""cost"":""6800""}",2026-05-05
handrail post brace tag this qa hold,edit_task,"{""title"":""handrail post brace"",""tags"":[""qa hold""]}",2026-05-05
conduit support tighten put closeout on it,edit_task,"{""title"":""conduit support tighten"",""tags"":[""closeout""]}",2026-05-05
sealant joint refresh tag owner note,edit_task,"{""title"":""sealant joint refresh"",""tags"":[""owner note""]}",2026-05-05
weep hole cleanup this is phase 2,edit_task,"{""title"":""weep hole cleanup"",""tags"":[""phase 2""]}",2026-05-05
vent grille clear tag waterproofing,edit_task,"{""title"":""vent grille clear"",""tags"":[""waterproofing""]}",2026-05-05
ceiling texture match tag safety,edit_task,"{""title"":""ceiling texture match"",""tags"":[""safety""]}",2026-05-05
wood door ease up note owner wants photos at closeout,edit_task,"{""title"":""wood door ease up"",""comments"":""owner wants photos at closeout""}",2026-05-05
patch mark blend comment leave access clear for inspection,edit_task,"{""title"":""patch mark blend"",""comments"":""leave access clear for inspection""}",2026-05-05
downspout redirect note materials are already on site,edit_task,"{""title"":""downspout redirect"",""comments"":""materials are already on site""}",2026-05-05
concrete patch sand add comment coordinate with GC before starting,edit_task,"{""title"":""concrete patch sand"",""comments"":""coordinate with GC before starting""}",2026-05-05
door frame note and note key is with the super,edit_task,"{""title"":""door frame note"",""comments"":""key is with the super""}",2026-05-05
wall seepage follow up add a note tenant needs 24 hour notice,edit_task,"{""title"":""wall seepage follow up"",""comments"":""tenant needs 24 hour notice""}",2026-05-05
roof curb seal review put it on a3 location mezzanine,edit_task,"{""title"":""roof curb seal review"",""plan"":""a3"",""location"":""mezzanine""}",2026-05-05
unit 12 touch up on sheet 7 location room 201,edit_task,"{""title"":""unit 12 touch up"",""plan"":""sheet 7"",""location"":""room 201""}",2026-05-05
call this lobby fixture reset put it on e4 in the server room,edit_task,"{""title"":""lobby fixture reset"",""plan"":""e4"",""location"":""server room""}",2026-05-05
drain basket follow up move to s2 location stairwell b,edit_task,"{""title"":""drain basket follow up"",""plan"":""s2"",""location"":""stairwell b""}",2026-05-05
parapet coping review put that on a201 in the west wing,edit_task,"{""title"":""parapet coping review"",""plan"":""a201"",""location"":""west wing""}",2026-05-05
courtyard door adjustment mike is on it make it p1,edit_task,"{""title"":""courtyard door adjustment"",""assignee"":""mike"",""priority"":""p1""}",2026-05-05
boiler room patch put sarah on it priority p2,edit_task,"{""title"":""boiler room patch"",""assignee"":""sarah"",""priority"":""p2""}",2026-05-05
suite 3b clean up goes to omar make it p3,edit_task,"{""title"":""suite 3b clean up"",""assignee"":""omar"",""priority"":""p3""}",2026-05-05
south corridor callback have felix handle it p1,edit_task,"{""title"":""south corridor callback"",""assignee"":""felix"",""priority"":""p1""}",2026-05-05
east wing inspection note brenda on this one p2,edit_task,"{""title"":""east wing inspection note"",""assignee"":""brenda"",""priority"":""p2""}",2026-05-05
main lobby punch note in the main lobby make it p1,edit_task,"{""title"":""main lobby punch note"",""location"":""main lobby"",""priority"":""p1""}",2026-05-05
penthouse leak check up in the penthouse level priority p2,edit_task,"{""title"":""penthouse leak check"",""location"":""penthouse level"",""priority"":""p2""}",2026-05-05
north pit 3 access note location north pit 3 make it p3,edit_task,"{""title"":""north pit 3 access note"",""location"":""north pit 3"",""priority"":""p3""}",2026-05-05
pool deck hardware issue put that at the pool deck and make it p2,edit_task,"{""title"":""pool deck hardware issue"",""location"":""pool deck"",""priority"":""p2""}",2026-05-05
server room seal check in the server room make it p1,edit_task,"{""title"":""server room seal check"",""location"":""server room"",""priority"":""p1""}",2026-05-05
put this on a301 location room 106 make it p2,edit_task,"{""plan"":""a301"",""location"":""room 106"",""priority"":""p2""}",2026-05-05
sheet 9 location suite 3b and make it p1,edit_task,"{""plan"":""sheet 9"",""location"":""suite 3b"",""priority"":""p1""}",2026-05-05
move this to rcp delta 8 location bay q7 p3,edit_task,"{""plan"":""rcp delta 8"",""location"":""bay q7"",""priority"":""p3""}",2026-05-05
s2 set location elevator shaft b make it p2,edit_task,"{""plan"":""s2"",""location"":""elevator shaft b"",""priority"":""p2""}",2026-05-05
roof level location unit 12 and bump it to p1,edit_task,"{""plan"":""roof level"",""location"":""unit 12"",""priority"":""p1""}",2026-05-05
for e4 mark it verified note owner asked for photos,edit_task,"{""plan"":""e4"",""status"":""verified"",""comments"":""owner asked for photos""}",2026-05-05
a3 put this on hold comment waiting on access from tenant,edit_task,"{""plan"":""a3"",""status"":""on hold"",""comments"":""waiting on access from tenant""}",2026-05-05
sheet 7 ready for turnover note leave area broom clean,edit_task,"{""plan"":""sheet 7"",""status"":""ready for turnover"",""comments"":""leave area broom clean""}",2026-05-05
a201 mark needs review note gc wants this watched closely,edit_task,"{""plan"":""a201"",""status"":""needs review"",""comments"":""gc wants this watched closely""}",2026-05-05
for s2 mark it closed add note check in before shutdown,edit_task,"{""plan"":""s2"",""status"":""closed"",""comments"":""check in before shutdown""}",2026-05-05
nadia is taking the broken glass panel in the penthouse level this is glazing work urgent done by end of month manpower team of 1 budget about 7000 mark closed,edit_task,"{""location"":""penthouse level"",""category"":""glazing"",""assignee"":""nadia"",""status"":""closed"",""end_date"":""2026-05-31"",""priority"":""p1"",""manpower"":""1"",""cost"":""7000""}",2026-05-05
patch the roof membrane in the penthouse level on fp2 due next friday put brenda and 3 guys on it budget 1500 make it medium category roofing,edit_task,"{""plan"":""fp2"",""location"":""penthouse level"",""category"":""roofing"",""assignee"":""brenda"",""end_date"":""2026-05-15"",""priority"":""p2"",""manpower"":""3"",""cost"":""1500""}",2026-05-05
sal is leading the new partition framing in the penthouse level start tomorrow finish wednesday cost 8000 need a crew of 5 mark it needs review,edit_task,"{""location"":""penthouse level"",""assignee"":""sal"",""status"":""needs review"",""start_date"":""2026-05-06"",""end_date"":""2026-05-06"",""manpower"":""5"",""cost"":""8000""}",2026-05-05
patch the roof membrane in the penthouse level on fp2 the gc wants it done by next friday put brenda and a crew of 3 on it budget 1500 make it medium priority this is roofing,edit_task,"{""plan"":""fp2"",""location"":""penthouse level"",""category"":""roofing"",""assignee"":""brenda"",""end_date"":""2026-05-15"",""priority"":""p2"",""manpower"":""3"",""cost"":""1500""}",2026-05-05
we've got a leak under the sink in the penthouse level on e1 the gc wants it done by next tuesday put steve and a team of 5 on it budget 3500 make it urgent this is plumbing,edit_task,"{""plan"":""e1"",""location"":""penthouse level"",""category"":""plumbing"",""assignee"":""steve"",""end_date"":""2026-05-12"",""priority"":""p1"",""manpower"":""5"",""cost"":""3500""}",2026-05-05
this one is caulking around the windows on a301 mark it high priority gus handles it before the inspection budget around 2500 location penthouse level category waterproofing,edit_task,"{""plan"":""a301"",""location"":""penthouse level"",""category"":""waterproofing"",""assignee"":""gus"",""end_date"":""2026-05-15"",""priority"":""p1"",""cost"":""2500""}",2026-05-05
need a new partition framed in penthouse level put tony on it should be done by may 7 cost around 2000,edit_task,"{""location"":""penthouse level"",""assignee"":""tony"",""end_date"":""2026-05-07"",""cost"":""2000""}",2026-05-05
maria is taking shower pan waterproofing in the penthouse level this is waterproofing work medium priority done by next friday manpower team of 6 budget 1200 mark complete,edit_task,"{""location"":""penthouse level"",""category"":""waterproofing"",""assignee"":""maria"",""status"":""complete"",""end_date"":""2026-05-15"",""priority"":""p2"",""manpower"":""6"",""cost"":""1200""}",2026-05-05
maria is leading a new wall framing job in the penthouse level start wednesday morning finish may 17 cost about 1200 need a team of 3 mark it open,edit_task,"{""location"":""penthouse level"",""assignee"":""maria"",""status"":""open"",""start_date"":""2026-05-06"",""end_date"":""2026-05-17"",""manpower"":""3"",""cost"":""1200""}",2026-05-05
change title to bathroom exhaust fan replacement and assign to hector,edit_task,"{""title"":""bathroom exhaust fan replacement"",""assignee"":""hector""}",2026-05-05
change title to sprinkler main drain test and mark it p1,edit_task,"{""title"":""sprinkler main drain test"",""priority"":""p1""}",2026-05-05
rename to west wing carpet removal and set priority to p2,edit_task,"{""title"":""west wing carpet removal"",""priority"":""p2""}",2026-05-05
rename to loading dock overhead door service and assign to ray,edit_task,"{""title"":""loading dock overhead door service"",""assignee"":""ray""}",2026-05-05
rename this to boiler flue inspection and set end date to may 20,edit_task,"{""title"":""boiler flue inspection"",""end_date"":""2026-05-20""}",2026-05-05
rename this to perimeter fence repair south lot and assign to felix,edit_task,"{""title"":""perimeter fence repair south lot"",""assignee"":""felix""}",2026-05-05
set title to compressed air line install shop floor and set manpower to 3,edit_task,"{""title"":""compressed air line install shop floor"",""manpower"":""3""}",2026-05-05
set title to expansion joint replacement deck level 2 and mark complete,edit_task,"{""title"":""expansion joint replacement deck level 2"",""status"":""complete""}",2026-05-05
update the name to high bay light fixture swap and assign to tony,edit_task,"{""assignee"":""tony""}",2026-05-05
update the name to overhead door spring replacement bay 3 and set cost to 750,edit_task,"{""cost"":""750""}",2026-05-05
call it retaining wall crack injection and set priority to p2,edit_task,"{""title"":""retaining wall crack injection"",""priority"":""p2""}",2026-05-05
label it hvac vibration isolator replacement rooftop and assign to sal,edit_task,"{""assignee"":""sal""}",2026-05-05
change title to fire suppression inspection and set priority p1,edit_task,"{""title"":""fire suppression inspection"",""priority"":""p1""}",2026-05-05
rename to chilled water pump alarm 7 and put teo on it,edit_task,"{""title"":""chilled water pump alarm 7"",""assignee"":""teo""}",2026-05-05
rename to rfi pending storefront mullion and put anya on it,edit_task,"{""title"":""rfi pending storefront mullion"",""assignee"":""anya""}",2026-05-05
change title to low slope drain cleanup assign this to nuri,edit_task,"{""title"":""low slope drain cleanup"",""assignee"":""nuri""}",2026-05-05
call it north stair guardrail touchup make the assignee lev,edit_task,"{""title"":""north stair guardrail touchup"",""assignee"":""lev""}",2026-05-05
change title to chilled water pump alarm 7 assign this to teo,edit_task,"{""title"":""chilled water pump alarm 7"",""assignee"":""teo""}",2026-05-05
set title to roof hatch corrosion followup and assign it to johny,edit_task,"{""title"":""roof hatch corrosion followup"",""assignee"":""johny""}",2026-05-05
rename to rtu 4 filter swap and put omri on it,edit_task,"{""title"":""rtu 4 filter swap"",""assignee"":""omri""}",2026-05-05
set title to gc callback for unit 18 and assign it to marcell,edit_task,"{""title"":""gc callback for unit 18"",""assignee"":""marcell""}",2026-05-05
call it west lobby punchlist item make the assignee eshan,edit_task,"{""title"":""west lobby punchlist item"",""assignee"":""eshan""}",2026-05-05
call it loading bay camera mount make the assignee faris,edit_task,"{""title"":""loading bay camera mount"",""assignee"":""faris""}",2026-05-05
rename to low slope drain cleanup and put nuri on it,edit_task,"{""title"":""low slope drain cleanup"",""assignee"":""nuri""}",2026-05-05
call it gc callback for unit 18 make the assignee marcell,edit_task,"{""title"":""gc callback for unit 18"",""assignee"":""marcell""}",2026-05-05
change title to rfi pending storefront mullion assign this to anya,edit_task,"{""title"":""rfi pending storefront mullion"",""assignee"":""anya""}",2026-05-05
change title to vav box 12 noise check assign this to zayvion,edit_task,"{""title"":""vav box 12 noise check"",""assignee"":""zayvion""}",2026-05-05
set title to loading bay camera mount and assign it to faris,edit_task,"{""title"":""loading bay camera mount"",""assignee"":""faris""}",2026-05-05
call it roof hatch corrosion followup make the assignee johny,edit_task,"{""title"":""roof hatch corrosion followup"",""assignee"":""johny""}",2026-05-05
rename to vav box 12 noise check and put zayvion on it,edit_task,"{""title"":""vav box 12 noise check"",""assignee"":""zayvion""}",2026-05-05
set title to north stair guardrail touchup and assign it to lev,edit_task,"{""title"":""north stair guardrail touchup"",""assignee"":""lev""}",2026-05-05
rename to chilled water pump alarm 7 move this to north pit 3,edit_task,"{""title"":""chilled water pump alarm 7"",""location"":""north pit 3""}",2026-05-05
set title to low slope drain cleanup and location to bay q7,edit_task,"{""title"":""low slope drain cleanup"",""location"":""bay q7""}",2026-05-05
title should be rfi pending storefront mullion plan should be mep kiwi,edit_task,"{""title"":""rfi pending storefront mullion"",""plan"":""mep kiwi""}",2026-05-05
call it north stair guardrail touchup make the plan c note 17,edit_task,"{""title"":""north stair guardrail touchup"",""plan"":""c note 17""}",2026-05-05
rename to loading bay camera mount put this on aa 19,edit_task,"{""title"":""loading bay camera mount"",""plan"":""aa 19""}",2026-05-05
update the title to west lobby punchlist item set plan to rcp delta 8,edit_task,"{""title"":""west lobby punchlist item"",""plan"":""rcp delta 8""}",2026-05-05
title should be loading bay camera mount location should be attic west 9,edit_task,"{""title"":""loading bay camera mount"",""location"":""attic west 9""}",2026-05-05
update the title to rfi pending storefront mullion set location to tower 5 niche,edit_task,"{""title"":""rfi pending storefront mullion"",""location"":""tower 5 niche""}",2026-05-05
set title to low slope drain cleanup and plan to sheet plum 3,edit_task,"{""title"":""low slope drain cleanup"",""plan"":""sheet plum 3""}",2026-05-05
call it vav box 12 noise check task is in unit k2,edit_task,"{""title"":""vav box 12 noise check"",""location"":""unit k2""}",2026-05-05
set title to roof hatch corrosion followup and plan to aqx 12,edit_task,"{""title"":""roof hatch corrosion followup"",""plan"":""aqx 12""}",2026-05-05
title should be rtu 4 filter swap location should be attic west 9,edit_task,"{""title"":""rtu 4 filter swap"",""location"":""attic west 9""}",2026-05-05
call it chilled water pump alarm 7 make the plan p memo 6,edit_task,"{""title"":""chilled water pump alarm 7"",""plan"":""p memo 6""}",2026-05-05
update the title to vav box 12 noise check set plan to zone maple,edit_task,"{""title"":""vav box 12 noise check"",""plan"":""zone maple""}",2026-05-05
rename to north stair guardrail touchup move this to north pit 3,edit_task,"{""title"":""north stair guardrail touchup"",""location"":""north pit 3""}",2026-05-05
rename to rtu 4 filter swap put this on fp zebra 4,edit_task,"{""title"":""rtu 4 filter swap"",""plan"":""fp zebra 4""}",2026-05-05
update the title to gc callback for unit 18 set location to tower 5 niche,edit_task,"{""title"":""gc callback for unit 18"",""location"":""tower 5 niche""}",2026-05-05
set title to roof hatch corrosion followup and location to bay q7,edit_task,"{""title"":""roof hatch corrosion followup"",""location"":""bay q7""}",2026-05-05
call it west lobby punchlist item task is in unit k2,edit_task,"{""title"":""west lobby punchlist item"",""location"":""unit k2""}",2026-05-05
in room 101 put carlos on it make the title slab on grade pour make it urgent tag it as site work and note tenant needs a heads up first,edit_task,"{""title"":""slabongrade pour"",""assignee"":""carlos"",""location"":""room 101"",""priority"":""p1"",""comments"":""tenant needs a heads up first"",""tags"":[""site work""]}",2026-05-05
for a301 leave it open note tenant needs a heads up first and use slab on grade pour for the title,edit_task,"{""title"":""slabongrade pour"",""plan"":""a301"",""status"":""open"",""comments"":""tenant needs a heads up first""}",2026-05-05
for this one carlos is on it in room 101 use slab on grade pour for the title set the category to foundation and make it urgent,edit_task,"{""title"":""slabongrade pour"",""location"":""room 101"",""assignee"":""carlos"",""priority"":""p1"",""category"":""foundation""}",2026-05-05
carlos can take it in room 101 and the title on this should be slab on grade pour and tag it as site work leave it open,edit_task,"{""title"":""slabongrade pour"",""location"":""room 101"",""assignee"":""carlos"",""status"":""open"",""tags"":[""site work""]}",2026-05-05
in room 106 put nadia on it make the title plumbing for faucet does not align with sink make it medium priority tag it as deficiency and note keep noise down after 6,edit_task,"{""title"":""plumbing for faucet does not align with sink"",""assignee"":""nadia"",""location"":""room 106"",""priority"":""p2"",""comments"":""keep noise down after 6"",""tags"":[""deficiency""]}",2026-05-05
for fp 3 leave it in progress note keep noise down after 6 and use plumbing for faucet does not align with sink for the title,edit_task,"{""title"":""plumbing for faucet does not align with sink"",""plan"":""fp3"",""status"":""in progress"",""comments"":""keep noise down after 6""}",2026-05-05
for this one nadia is on it in room 106 use plumbing for faucet does not align with sink for the title set the category to mechanical and make it medium priority,edit_task,"{""title"":""plumbing for faucet does not align with sink"",""location"":""room 106"",""assignee"":""nadia"",""priority"":""p2"",""category"":""mechanical""}",2026-05-05
nadia can take it in room 106 and the title on this should be plumbing for faucet does not align with sink and tag it as deficiency leave it in progress,edit_task,"{""title"":""plumbing for faucet does not align with sink"",""location"":""room 106"",""assignee"":""nadia"",""status"":""in progress"",""tags"":[""deficiency""]}",2026-05-05
in room 204 put omar on it make the title review emergency egress plan with safety manager make it low priority tag it as safety checklist and note take a photo when it is done,edit_task,"{""title"":""review emergency egress plan with safety manager"",""assignee"":""omar"",""location"":""room 204"",""priority"":""p3"",""comments"":""take a photo when it is done"",""tags"":[""safety checklist""]}",2026-05-05
for sheet 9 leave it on hold note take a photo when it is done and use review emergency egress plan with safety manager for the title,edit_task,"{""title"":""review emergency egress plan with safety manager"",""plan"":""sheet 9"",""status"":""on hold"",""comments"":""take a photo when it is done""}",2026-05-05
for this one omar is on it in room 204 use review emergency egress plan with safety manager for the title set the category to safety and make it low priority,edit_task,"{""title"":""review emergency egress plan with safety manager"",""location"":""room 204"",""assignee"":""omar"",""priority"":""p3"",""category"":""safety""}",2026-05-05
omar can take it in room 204 and the title on this should be review emergency egress plan with safety manager and tag it as safety checklist leave it on hold,edit_task,"{""title"":""review emergency egress plan with safety manager"",""location"":""room 204"",""assignee"":""omar"",""status"":""on hold"",""tags"":[""safety checklist""]}",2026-05-05
in room 316 put reza on it make the title float half inch sheetrock on this wall to fit in plumbing pipe make it urgent tag it as incomplete work and note check in with the gc before starting,edit_task,"{""title"":""float 1 2 sheetrock on this wall to fit in plumbing pipe"",""assignee"":""reza"",""location"":""room 316"",""priority"":""p1"",""comments"":""check in with the gc before starting"",""tags"":[""incomplete work""]}",2026-05-05
for mep 1 leave it pending note check in with the gc before starting and use float half inch sheetrock on this wall to fit in plumbing pipe for the title,edit_task,"{""title"":""float 1 2 sheetrock on this wall to fit in plumbing pipe"",""plan"":""mep1"",""status"":""pending"",""comments"":""check in with the gc before starting""}",2026-05-05
for this one reza is on it in room 316 use float half inch sheetrock on this wall to fit in plumbing pipe for the title set the category to framing and make it urgent,edit_task,"{""title"":""float 1 2 sheetrock on this wall to fit in plumbing pipe"",""location"":""room 316"",""assignee"":""reza"",""priority"":""p1"",""category"":""framing""}",2026-05-05
reza can take it in room 316 and the title on this should be float half inch sheetrock on this wall to fit in plumbing pipe and tag it as incomplete work leave it pending,edit_task,"{""title"":""float 1 2 sheetrock on this wall to fit in plumbing pipe"",""location"":""room 316"",""assignee"":""reza"",""status"":""pending"",""tags"":[""incomplete work""]}",2026-05-05
in north corridor put tony on it make the title client approval on color palette make it medium priority tag it as closeout and note materials are already on site,edit_task,"{""title"":""client approval on color palette"",""assignee"":""tony"",""location"":""north corridor"",""priority"":""p2"",""comments"":""materials are already on site"",""tags"":[""closeout""]}",2026-05-05
for s 2 leave it scheduled note materials are already on site and use client approval on color palette for the title,edit_task,"{""title"":""client approval on color palette"",""plan"":""s2"",""status"":""scheduled"",""comments"":""materials are already on site""}",2026-05-05
for this one tony is on it in north corridor use client approval on color palette for the title set the category to architectural and make it medium priority,edit_task,"{""title"":""client approval on color palette"",""location"":""north corridor"",""assignee"":""tony"",""priority"":""p2"",""category"":""architectural""}",2026-05-05
tony can take it in north corridor and the title on this should be client approval on color palette and tag it as closeout leave it scheduled,edit_task,"{""title"":""client approval on color palette"",""location"":""north corridor"",""assignee"":""tony"",""status"":""scheduled"",""tags"":[""closeout""]}",2026-05-05
in west wing put hector on it make the title found unmarked utility line in road make it low priority tag it as safety and note owner wants this watched closely,edit_task,"{""title"":""found unmarked utility line in road"",""assignee"":""hector"",""location"":""west wing"",""priority"":""p3"",""comments"":""owner wants this watched closely"",""tags"":[""safety""]}",2026-05-05
for id 101 mark it verified note owner wants this watched closely and use found unmarked utility line in road for the title,edit_task,"{""title"":""found unmarked utility line in road"",""plan"":""id101"",""status"":""verified"",""comments"":""owner wants this watched closely""}",2026-05-05
for this one hector is on it in west wing use found unmarked utility line in road for the title set the category to utilities and make it low priority,edit_task,"{""title"":""found unmarked utility line in road"",""location"":""west wing"",""assignee"":""hector"",""priority"":""p3"",""category"":""utilities""}",2026-05-05
hector can take it in west wing and the title on this should be found unmarked utility line in road and tag it as safety mark it verified,edit_task,"{""title"":""found unmarked utility line in road"",""location"":""west wing"",""assignee"":""hector"",""status"":""verified"",""tags"":[""safety""]}",2026-05-05
by elevator shaft b put jake on it make the title clean up needed make it urgent tag it as cleaning and note access is tight in that area,edit_task,"{""title"":""clean up needed"",""assignee"":""jake"",""location"":""elevator shaft b"",""priority"":""p1"",""comments"":""access is tight in that area"",""tags"":[""cleaning""]}",2026-05-05
for a202 mark it complete note access is tight in that area and use clean up needed for the title,edit_task,"{""title"":""clean up needed"",""plan"":""a202"",""status"":""complete"",""comments"":""access is tight in that area""}",2026-05-05
for this one jake is on it by elevator shaft b use clean up needed for the title set the category to cleaning and make it urgent,edit_task,"{""title"":""clean up needed"",""location"":""elevator shaft b"",""assignee"":""jake"",""priority"":""p1"",""category"":""cleaning""}",2026-05-05
jake can take it by elevator shaft b and the title on this should be clean up needed and tag it as cleaning mark it complete,edit_task,"{""title"":""clean up needed"",""location"":""elevator shaft b"",""assignee"":""jake"",""status"":""complete"",""tags"":[""cleaning""]}",2026-05-05
at loading dock put luis on it make the title doors and millwork make it medium priority tag it as door hardware and note leave the area broom clean when finished,edit_task,"{""title"":""doors and millwork"",""assignee"":""luis"",""location"":""loading dock"",""priority"":""p2"",""comments"":""leave the area broom clean when finished"",""tags"":[""door hardware""]}",2026-05-05
for e4 mark it closed note leave the area broom clean when finished and use doors and millwork for the title,edit_task,"{""title"":""doors and millwork"",""plan"":""e4"",""status"":""closed"",""comments"":""leave the area broom clean when finished""}",2026-05-05
for this one luis is on it at loading dock use doors and millwork for the title set the category to millwork and make it medium priority,edit_task,"{""title"":""doors and millwork"",""location"":""loading dock"",""assignee"":""luis"",""priority"":""p2"",""category"":""millwork""}",2026-05-05
luis can take it at loading dock and the title on this should be doors and millwork and tag it as door hardware mark it closed,edit_task,"{""title"":""doors and millwork"",""location"":""loading dock"",""assignee"":""luis"",""status"":""closed"",""tags"":[""door hardware""]}",2026-05-05
in mechanical room put brenda on it make the title tape and finish gyp board make it low priority tag it as incomplete work and note tenant needs a heads up first,edit_task,"{""title"":""tape finish gyp board"",""assignee"":""brenda"",""location"":""mechanical room"",""priority"":""p3"",""comments"":""tenant needs a heads up first"",""tags"":[""incomplete work""]}",2026-05-05
for p4 leave it ready for inspection note tenant needs a heads up first and use tape and finish gyp board for the title,edit_task,"{""title"":""tape finish gyp board"",""plan"":""p4"",""status"":""ready for inspection"",""comments"":""tenant needs a heads up first""}",2026-05-05
for this one brenda is on it in mechanical room use tape and finish gyp board for the title set the category to framing and make it low priority,edit_task,"{""title"":""tape finish gyp board"",""location"":""mechanical room"",""assignee"":""brenda"",""priority"":""p3"",""category"":""framing""}",2026-05-05
brenda can take it in mechanical room and the title on this should be tape and finish gyp board and tag it as incomplete work leave it ready for inspection,edit_task,"{""title"":""tape finish gyp board"",""location"":""mechanical room"",""assignee"":""brenda"",""status"":""ready for inspection"",""tags"":[""incomplete work""]}",2026-05-05
at pool deck put sarah on it make the title sawcut along break in asphalt make it urgent tag it as cutting and note keep noise down after 6,edit_task,"{""title"":""sawcut along break in asphalt"",""assignee"":""sarah"",""location"":""pool deck"",""priority"":""p1"",""comments"":""keep noise down after 6"",""tags"":[""cutting""]}",2026-05-05
for civil sheet 3 mark it needs attention note keep noise down after 6 and use sawcut along break in asphalt for the title,edit_task,"{""title"":""sawcut along break in asphalt"",""plan"":""civil sheet 3"",""status"":""needs attention"",""comments"":""keep noise down after 6""}",2026-05-05
for this one sarah is on it at pool deck use sawcut along break in asphalt for the title set the category to asphalt and make it urgent,edit_task,"{""title"":""sawcut along break in asphalt"",""location"":""pool deck"",""assignee"":""sarah"",""priority"":""p1"",""category"":""asphalt""}",2026-05-05
sarah can take it at pool deck and the title on this should be sawcut along break in asphalt and tag it as cutting mark it needs attention,edit_task,"{""title"":""sawcut along break in asphalt"",""location"":""pool deck"",""assignee"":""sarah"",""status"":""needs attention"",""tags"":[""cutting""]}",2026-05-05
in parking garage level 1 put mike on it make the title sawcutting sidewalk in progress make it medium priority tag it as site work and note take a photo when it is done,edit_task,"{""title"":""sawcutting sidewalk in progress"",""assignee"":""mike"",""location"":""parking garage level 1"",""priority"":""p2"",""comments"":""take a photo when it is done"",""tags"":[""site work""]}",2026-05-05
for a301 leave it open note take a photo when it is done and use sawcutting sidewalk in progress for the title,edit_task,"{""title"":""sawcutting sidewalk in progress"",""plan"":""a301"",""status"":""open"",""comments"":""take a photo when it is done""}",2026-05-05
for this one mike is on it in parking garage level 1 use sawcutting sidewalk in progress for the title set the category to civil and make it medium priority,edit_task,"{""title"":""sawcutting sidewalk in progress"",""location"":""parking garage level 1"",""assignee"":""mike"",""priority"":""p2"",""category"":""civil""}",2026-05-05
mike can take it in parking garage level 1 and the title on this should be sawcutting sidewalk in progress and tag it as site work leave it open,edit_task,"{""title"":""sawcutting sidewalk in progress"",""location"":""parking garage level 1"",""assignee"":""mike"",""status"":""open"",""tags"":[""site work""]}",2026-05-05
at lobby deck put pat on it make the title room 316 water ingress make it low priority tag it as deficiency and note check in with the gc before starting,edit_task,"{""title"":""rm 316 water ingress"",""assignee"":""pat"",""location"":""lobby deck"",""priority"":""p3"",""comments"":""check in with the gc before starting"",""tags"":[""deficiency""]}",2026-05-05
for fp 3 leave it in progress note check in with the gc before starting and use room 316 water ingress for the title,edit_task,"{""title"":""rm 316 water ingress"",""plan"":""fp3"",""status"":""in progress"",""comments"":""check in with the gc before starting""}",2026-05-05
for this one pat is on it at lobby deck use room 316 water ingress for the title set the category to waterproofing and make it low priority,edit_task,"{""title"":""rm 316 water ingress"",""location"":""lobby deck"",""assignee"":""pat"",""priority"":""p3"",""category"":""waterproofing""}",2026-05-05
pat can take it at lobby deck and the title on this should be room 316 water ingress and tag it as deficiency leave it in progress,edit_task,"{""title"":""rm 316 water ingress"",""location"":""lobby deck"",""assignee"":""pat"",""status"":""in progress"",""tags"":[""deficiency""]}",2026-05-05
in unit 12 put vic on it make the title room 106 wall completion make it urgent tag it as punch list and note materials are already on site,edit_task,"{""title"":""room 106 wall completion"",""assignee"":""vic"",""location"":""unit 12"",""priority"":""p1"",""comments"":""materials are already on site"",""tags"":[""punch list""]}",2026-05-05
for sheet 9 leave it on hold note materials are already on site and use room 106 wall completion for the title,edit_task,"{""title"":""room 106 wall completion"",""plan"":""sheet 9"",""status"":""on hold"",""comments"":""materials are already on site""}",2026-05-05
for this one vic is on it in unit 12 use room 106 wall completion for the title set the category to framing and make it urgent,edit_task,"{""title"":""room 106 wall completion"",""location"":""unit 12"",""assignee"":""vic"",""priority"":""p1"",""category"":""framing""}",2026-05-05
vic can take it in unit 12 and the title on this should be room 106 wall completion and tag it as punch list leave it on hold,edit_task,"{""title"":""room 106 wall completion"",""location"":""unit 12"",""assignee"":""vic"",""status"":""on hold"",""tags"":[""punch list""]}",2026-05-05
in basement level 2 put eddie on it make the title safety walk make it medium priority tag it as daily safety checklist and note owner wants this watched closely,edit_task,"{""title"":""safety walk"",""assignee"":""eddie"",""location"":""basement level 2"",""priority"":""p2"",""comments"":""owner wants this watched closely"",""tags"":[""daily safety checklist""]}",2026-05-05
for mep 1 leave it pending note owner wants this watched closely and use safety walk for the title,edit_task,"{""title"":""safety walk"",""plan"":""mep1"",""status"":""pending"",""comments"":""owner wants this watched closely""}",2026-05-05
for this one eddie is on it in basement level 2 use safety walk for the title set the category to safety and make it medium priority,edit_task,"{""title"":""safety walk"",""location"":""basement level 2"",""assignee"":""eddie"",""priority"":""p2"",""category"":""safety""}",2026-05-05
eddie can take it in basement level 2 and the title on this should be safety walk and tag it as daily safety checklist leave it pending,edit_task,"{""title"":""safety walk"",""location"":""basement level 2"",""assignee"":""eddie"",""status"":""pending"",""tags"":[""daily safety checklist""]}",2026-05-05
in courtyard put felix on it make the title caulk and seal epoxy to f r p clean paint off epoxy make it low priority tag it as sealing and note access is tight in that area,edit_task,"{""title"":""caulk and seal epoxy to frp clean paint off epoxy"",""assignee"":""felix"",""location"":""courtyard"",""priority"":""p3"",""comments"":""access is tight in that area"",""tags"":[""sealing""]}",2026-05-05
for s 2 leave it scheduled note access is tight in that area and use caulk and seal epoxy to f r p clean paint off epoxy for the title,edit_task,"{""title"":""caulk and seal epoxy to frp clean paint off epoxy"",""plan"":""s2"",""status"":""scheduled"",""comments"":""access is tight in that area""}",2026-05-05
for this one felix is on it in courtyard use caulk and seal epoxy to f r p clean paint off epoxy for the title set the category to waterproofing and make it low priority,edit_task,"{""title"":""caulk and seal epoxy to frp clean paint off epoxy"",""location"":""courtyard"",""assignee"":""felix"",""priority"":""p3"",""category"":""waterproofing""}",2026-05-05
felix can take it in courtyard and the title on this should be caulk and seal epoxy to f r p clean paint off epoxy and tag it as sealing leave it scheduled,edit_task,"{""title"":""caulk and seal epoxy to frp clean paint off epoxy"",""location"":""courtyard"",""assignee"":""felix"",""status"":""scheduled"",""tags"":[""sealing""]}",2026-05-05
in server room put johnny on it make the title ev charging station 1 make it urgent tag it as electrical and note leave the area broom clean when finished,edit_task,"{""title"":""ev charging station 1"",""assignee"":""johnny"",""location"":""server room"",""priority"":""p1"",""comments"":""leave the area broom clean when finished"",""tags"":[""electrical""]}",2026-05-05
for id 101 mark it verified note leave the area broom clean when finished and use ev charging station 1 for the title,edit_task,"{""title"":""ev charging station 1"",""plan"":""id101"",""status"":""verified"",""comments"":""leave the area broom clean when finished""}",2026-05-05
for this one johnny is on it in server room use ev charging station 1 for the title set the category to equipment and make it urgent,edit_task,"{""title"":""ev charging station 1"",""location"":""server room"",""assignee"":""johnny"",""priority"":""p1"",""category"":""equipment""}",2026-05-05
johnny can take it in server room and the title on this should be ev charging station 1 and tag it as electrical mark it verified,edit_task,"{""title"":""ev charging station 1"",""location"":""server room"",""assignee"":""johnny"",""status"":""verified"",""tags"":[""electrical""]}",2026-05-05
in room 101 put carlos on it make the title install conduit for ef 4 fan make it medium priority tag it as rough in and note tenant needs a heads up first,edit_task,"{""title"":""install conduit for ef4 fan"",""assignee"":""carlos"",""location"":""room 101"",""priority"":""p2"",""comments"":""tenant needs a heads up first"",""tags"":[""rough in""]}",2026-05-05
for a202 mark it complete note tenant needs a heads up first and use install conduit for ef 4 fan for the title,edit_task,"{""title"":""install conduit for ef4 fan"",""plan"":""a202"",""status"":""complete"",""comments"":""tenant needs a heads up first""}",2026-05-05
for this one carlos is on it in room 101 use install conduit for ef 4 fan for the title set the category to mechanical and make it medium priority,edit_task,"{""title"":""install conduit for ef4 fan"",""location"":""room 101"",""assignee"":""carlos"",""priority"":""p2"",""category"":""mechanical""}",2026-05-05
carlos can take it in room 101 and the title on this should be install conduit for ef 4 fan and tag it as rough in mark it complete,edit_task,"{""title"":""install conduit for ef4 fan"",""location"":""room 101"",""assignee"":""carlos"",""status"":""complete"",""tags"":[""rough in""]}",2026-05-05
in room 106 put nadia on it make the title clean pencil marks off wardrobe cabinet make it low priority tag it as cleaning and note keep noise down after 6,edit_task,"{""title"":""clean pencil marks off wardrobe cabinet"",""assignee"":""nadia"",""location"":""room 106"",""priority"":""p3"",""comments"":""keep noise down after 6"",""tags"":[""cleaning""]}",2026-05-05
for e4 mark it closed note keep noise down after 6 and use clean pencil marks off wardrobe cabinet for the title,edit_task,"{""title"":""clean pencil marks off wardrobe cabinet"",""plan"":""e4"",""status"":""closed"",""comments"":""keep noise down after 6""}",2026-05-05
for this one nadia is on it in room 106 use clean pencil marks off wardrobe cabinet for the title set the category to millwork and make it low priority,edit_task,"{""title"":""clean pencil marks off wardrobe cabinet"",""location"":""room 106"",""assignee"":""nadia"",""priority"":""p3"",""category"":""millwork""}",2026-05-05
nadia can take it in room 106 and the title on this should be clean pencil marks off wardrobe cabinet and tag it as cleaning mark it closed,edit_task,"{""title"":""clean pencil marks off wardrobe cabinet"",""location"":""room 106"",""assignee"":""nadia"",""status"":""closed"",""tags"":[""cleaning""]}",2026-05-05
in room 204 put omar on it make the title replace damaged carpet tile make it urgent tag it as owner punch and note take a photo when it is done,edit_task,"{""title"":""replace damaged carpet tile"",""assignee"":""omar"",""location"":""room 204"",""priority"":""p1"",""comments"":""take a photo when it is done"",""tags"":[""owner punch""]}",2026-05-05
for p4 leave it ready for inspection note take a photo when it is done and use replace damaged carpet tile for the title,edit_task,"{""title"":""replace damaged carpet tile"",""plan"":""p4"",""status"":""ready for inspection"",""comments"":""take a photo when it is done""}",2026-05-05
for this one omar is on it in room 204 use replace damaged carpet tile for the title set the category to architectural and make it urgent,edit_task,"{""title"":""replace damaged carpet tile"",""location"":""room 204"",""assignee"":""omar"",""priority"":""p1"",""category"":""architectural""}",2026-05-05
omar can take it in room 204 and the title on this should be replace damaged carpet tile and tag it as owner punch leave it ready for inspection,edit_task,"{""title"":""replace damaged carpet tile"",""location"":""room 204"",""assignee"":""omar"",""status"":""ready for inspection"",""tags"":[""owner punch""]}",2026-05-05
in room 316 put reza on it make the title accessories make it medium priority tag it as closeout and note check in with the gc before starting,edit_task,"{""title"":""accessories"",""assignee"":""reza"",""location"":""room 316"",""priority"":""p2"",""comments"":""check in with the gc before starting"",""tags"":[""closeout""]}",2026-05-05
for civil sheet 3 mark it needs attention note check in with the gc before starting and use accessories for the title,edit_task,"{""title"":""accessories"",""plan"":""civil sheet 3"",""status"":""needs attention"",""comments"":""check in with the gc before starting""}",2026-05-05
for this one reza is on it in room 316 use accessories for the title set the category to architectural and make it medium priority,edit_task,"{""title"":""accessories"",""location"":""room 316"",""assignee"":""reza"",""priority"":""p2"",""category"":""architectural""}",2026-05-05
reza can take it in room 316 and the title on this should be accessories and tag it as closeout mark it needs attention,edit_task,"{""title"":""accessories"",""location"":""room 316"",""assignee"":""reza"",""status"":""needs attention"",""tags"":[""closeout""]}",2026-05-05
in north corridor put tony on it make the title repair wall board once t stat is moved make it low priority tag it as deficiency and note materials are already on site,edit_task,"{""title"":""repair wall board once tstat is moved"",""assignee"":""tony"",""location"":""north corridor"",""priority"":""p3"",""comments"":""materials are already on site"",""tags"":[""deficiency""]}",2026-05-05
for a301 leave it open note materials are already on site and use repair wall board once t stat is moved for the title,edit_task,"{""title"":""repair wall board once tstat is moved"",""plan"":""a301"",""status"":""open"",""comments"":""materials are already on site""}",2026-05-05
for this one tony is on it in north corridor use repair wall board once t stat is moved for the title set the category to carpentry and make it low priority,edit_task,"{""title"":""repair wall board once tstat is moved"",""location"":""north corridor"",""assignee"":""tony"",""priority"":""p3"",""category"":""carpentry""}",2026-05-05
tony can take it in north corridor and the title on this should be repair wall board once t stat is moved and tag it as deficiency leave it open,edit_task,"{""title"":""repair wall board once tstat is moved"",""location"":""north corridor"",""assignee"":""tony"",""status"":""open"",""tags"":[""deficiency""]}",2026-05-05
in west wing put hector on it make the title vent not flush to ceiling make it urgent tag it as deficiency and note owner wants this watched closely,edit_task,"{""title"":""vent not flush to ceiling"",""assignee"":""hector"",""location"":""west wing"",""priority"":""p1"",""comments"":""owner wants this watched closely"",""tags"":[""deficiency""]}",2026-05-05
for fp 3 leave it in progress note owner wants this watched closely and use vent not flush to ceiling for the title,edit_task,"{""title"":""vent not flush to ceiling"",""plan"":""fp3"",""status"":""in progress"",""comments"":""owner wants this watched closely""}",2026-05-05
for this one hector is on it in west wing use vent not flush to ceiling for the title set the category to mechanical and make it urgent,edit_task,"{""title"":""vent not flush to ceiling"",""location"":""west wing"",""assignee"":""hector"",""priority"":""p1"",""category"":""mechanical""}",2026-05-05
hector can take it in west wing and the title on this should be vent not flush to ceiling and tag it as deficiency leave it in progress,edit_task,"{""title"":""vent not flush to ceiling"",""location"":""west wing"",""assignee"":""hector"",""status"":""in progress"",""tags"":[""deficiency""]}",2026-05-05
by elevator shaft b put jake on it make the title make tidy and neat of expansion joint make it medium priority tag it as sealing and note access is tight in that area,edit_task,"{""title"":""make tidy and neat of expansion joint"",""assignee"":""jake"",""location"":""elevator shaft b"",""priority"":""p2"",""comments"":""access is tight in that area"",""tags"":[""sealing""]}",2026-05-05
for sheet 9 leave it on hold note access is tight in that area and use make tidy and neat of expansion joint for the title,edit_task,"{""title"":""make tidy and neat of expansion joint"",""plan"":""sheet 9"",""status"":""on hold"",""comments"":""access is tight in that area""}",2026-05-05
for this one jake is on it by elevator shaft b use make tidy and neat of expansion joint for the title set the category to waterproofing and make it medium priority,edit_task,"{""title"":""make tidy and neat of expansion joint"",""location"":""elevator shaft b"",""assignee"":""jake"",""priority"":""p2"",""category"":""waterproofing""}",2026-05-05
jake can take it by elevator shaft b and the title on this should be make tidy and neat of expansion joint and tag it as sealing leave it on hold,edit_task,"{""title"":""make tidy and neat of expansion joint"",""location"":""elevator shaft b"",""assignee"":""jake"",""status"":""on hold"",""tags"":[""sealing""]}",2026-05-05
at loading dock put luis on it make the title job start shingles make it low priority tag it as install tracker and note leave the area broom clean when finished,edit_task,"{""title"":""job startshingles"",""assignee"":""luis"",""location"":""loading dock"",""priority"":""p3"",""comments"":""leave the area broom clean when finished"",""tags"":[""install tracker""]}",2026-05-05
for mep 1 leave it pending note leave the area broom clean when finished and use job start shingles for the title,edit_task,"{""title"":""job startshingles"",""plan"":""mep1"",""status"":""pending"",""comments"":""leave the area broom clean when finished""}",2026-05-05
for this one luis is on it at loading dock use job start shingles for the title set the category to roofing and make it low priority,edit_task,"{""title"":""job startshingles"",""location"":""loading dock"",""assignee"":""luis"",""priority"":""p3"",""category"":""roofing""}",2026-05-05
luis can take it at loading dock and the title on this should be job start shingles and tag it as install tracker leave it pending,edit_task,"{""title"":""job startshingles"",""location"":""loading dock"",""assignee"":""luis"",""status"":""pending"",""tags"":[""install tracker""]}",2026-05-05
in mechanical room put brenda on it make the title gia wifi survey app public area test make it urgent tag it as voice data and note tenant needs a heads up first,edit_task,"{""title"":""gia wifi survey app public area test"",""assignee"":""brenda"",""location"":""mechanical room"",""priority"":""p1"",""comments"":""tenant needs a heads up first"",""tags"":[""voice data""]}",2026-05-05
for s 2 leave it scheduled note tenant needs a heads up first and use gia wifi survey app public area test for the title,edit_task,"{""title"":""gia wifi survey app public area test"",""plan"":""s2"",""status"":""scheduled"",""comments"":""tenant needs a heads up first""}",2026-05-05
for this one brenda is on it in mechanical room use gia wifi survey app public area test for the title set the category to data and make it urgent,edit_task,"{""title"":""gia wifi survey app public area test"",""location"":""mechanical room"",""assignee"":""brenda"",""priority"":""p1"",""category"":""data""}",2026-05-05
brenda can take it in mechanical room and the title on this should be gia wifi survey app public area test and tag it as voice data leave it scheduled,edit_task,"{""title"":""gia wifi survey app public area test"",""location"":""mechanical room"",""assignee"":""brenda"",""status"":""scheduled"",""tags"":[""voice data""]}",2026-05-05
at pool deck put sarah on it make the title window sealed and prepared for astm e783 test make it medium priority tag it as window qc and note keep noise down after 6,edit_task,"{""title"":""window sealed and prepared for astm e783 test"",""assignee"":""sarah"",""location"":""pool deck"",""priority"":""p2"",""comments"":""keep noise down after 6"",""tags"":[""window qc""]}",2026-05-05
for id 101 mark it verified note keep noise down after 6 and use window sealed and prepared for astm e783 test for the title,edit_task,"{""title"":""window sealed and prepared for astm e783 test"",""plan"":""id101"",""status"":""verified"",""comments"":""keep noise down after 6""}",2026-05-05
for this one sarah is on it at pool deck use window sealed and prepared for astm e783 test for the title set the category to windows and make it medium priority,edit_task,"{""title"":""window sealed and prepared for astm e783 test"",""location"":""pool deck"",""assignee"":""sarah"",""priority"":""p2"",""category"":""windows""}",2026-05-05
sarah can take it at pool deck and the title on this should be window sealed and prepared for astm e783 test and tag it as window qc mark it verified,edit_task,"{""title"":""window sealed and prepared for astm e783 test"",""location"":""pool deck"",""assignee"":""sarah"",""status"":""verified"",""tags"":[""window qc""]}",2026-05-05
in parking garage level 1 put mike on it make the title open electrical box make it low priority tag it as electrical and note take a photo when it is done,edit_task,"{""title"":""open electrical box"",""assignee"":""mike"",""location"":""parking garage level 1"",""priority"":""p3"",""comments"":""take a photo when it is done"",""tags"":[""electrical""]}",2026-05-05
for a202 mark it complete note take a photo when it is done and use open electrical box for the title,edit_task,"{""title"":""open electrical box"",""plan"":""a202"",""status"":""complete"",""comments"":""take a photo when it is done""}",2026-05-05
for this one mike is on it in parking garage level 1 use open electrical box for the title set the category to lighting and make it low priority,edit_task,"{""title"":""open electrical box"",""location"":""parking garage level 1"",""assignee"":""mike"",""priority"":""p3"",""category"":""lighting""}",2026-05-05
mike can take it in parking garage level 1 and the title on this should be open electrical box and tag it as electrical mark it complete,edit_task,"{""title"":""open electrical box"",""location"":""parking garage level 1"",""assignee"":""mike"",""status"":""complete"",""tags"":[""electrical""]}",2026-05-05
at lobby deck put pat on it make the title head of wall make it urgent tag it as fire stopping and note check in with the gc before starting,edit_task,"{""title"":""head of wall"",""assignee"":""pat"",""location"":""lobby deck"",""priority"":""p1"",""comments"":""check in with the gc before starting"",""tags"":[""fire stopping""]}",2026-05-05
for e4 mark it closed note check in with the gc before starting and use head of wall for the title,edit_task,"{""title"":""head of wall"",""plan"":""e4"",""status"":""closed"",""comments"":""check in with the gc before starting""}",2026-05-05
for this one pat is on it at lobby deck use head of wall for the title set the category to firestopping and make it urgent,edit_task,"{""title"":""head of wall"",""location"":""lobby deck"",""assignee"":""pat"",""priority"":""p1"",""category"":""firestopping""}",2026-05-05
pat can take it at lobby deck and the title on this should be head of wall and tag it as fire stopping mark it closed,edit_task,"{""title"":""head of wall"",""location"":""lobby deck"",""assignee"":""pat"",""status"":""closed"",""tags"":[""fire stopping""]}",2026-05-05
in unit 12 put vic on it make the title drywall hole within ac assembly make it medium priority tag it as deficiency and note materials are already on site,edit_task,"{""title"":""drywall hole within ac assembly"",""assignee"":""vic"",""location"":""unit 12"",""priority"":""p2"",""comments"":""materials are already on site"",""tags"":[""deficiency""]}",2026-05-05
for p4 leave it ready for inspection note materials are already on site and use drywall hole within ac assembly for the title,edit_task,"{""title"":""drywall hole within ac assembly"",""plan"":""p4"",""status"":""ready for inspection"",""comments"":""materials are already on site""}",2026-05-05
for this one vic is on it in unit 12 use drywall hole within ac assembly for the title set the category to mechanical and make it medium priority,edit_task,"{""title"":""drywall hole within ac assembly"",""location"":""unit 12"",""assignee"":""vic"",""priority"":""p2"",""category"":""mechanical""}",2026-05-05
vic can take it in unit 12 and the title on this should be drywall hole within ac assembly and tag it as deficiency leave it ready for inspection,edit_task,"{""title"":""drywall hole within ac assembly"",""location"":""unit 12"",""assignee"":""vic"",""status"":""ready for inspection"",""tags"":[""deficiency""]}",2026-05-05
in basement level 2 put eddie on it make the title external wall finish inspection make it low priority tag it as qaqc checklist and note owner wants this watched closely,edit_task,"{""title"":""external wall finish inspection"",""assignee"":""eddie"",""location"":""basement level 2"",""priority"":""p3"",""comments"":""owner wants this watched closely"",""tags"":[""qaqc checklist""]}",2026-05-05
for civil sheet 3 mark it needs attention note owner wants this watched closely and use external wall finish inspection for the title,edit_task,"{""title"":""external wall finish inspection"",""plan"":""civil sheet 3"",""status"":""needs attention"",""comments"":""owner wants this watched closely""}",2026-05-05
for this one eddie is on it in basement level 2 use external wall finish inspection for the title set the category to exterior and make it low priority,edit_task,"{""title"":""external wall finish inspection"",""location"":""basement level 2"",""assignee"":""eddie"",""priority"":""p3"",""category"":""exterior""}",2026-05-05
eddie can take it in basement level 2 and the title on this should be external wall finish inspection and tag it as qaqc checklist mark it needs attention,edit_task,"{""title"":""external wall finish inspection"",""location"":""basement level 2"",""assignee"":""eddie"",""status"":""needs attention"",""tags"":[""qaqc checklist""]}",2026-05-05
for this one leave it scheduled at loading dock give it to jake tag it as site work and use slab on grade pour for the title,edit_task,"{""title"":""slabongrade pour"",""location"":""loading dock"",""assignee"":""jake"",""status"":""scheduled"",""tags"":[""site work""]}",2026-05-05
nadia can take it in room 106 set the category to cleaning and the title on this should be clean up needed leave it open,edit_task,"{""title"":""clean up needed"",""location"":""room 106"",""assignee"":""nadia"",""status"":""open"",""category"":""cleaning""}",2026-05-05
due today,edit_task,"{""end_date"":""2025-03-10""}",2025-03-10
needs to be done today,edit_task,"{""end_date"":""2025-03-10""}",2025-03-10
mark it done today,edit_task,"{""end_date"":""2025-03-10"",""status"":""complete""}",2025-03-10
start today,edit_task,"{""start_date"":""2025-03-10""}",2025-03-10
kick it off today,edit_task,"{""start_date"":""2025-03-10""}",2025-03-10
starting today,edit_task,"{""start_date"":""2025-03-10""}",2025-03-10
start today end of month,edit_task,"{""start_date"":""2025-03-10"",""end_date"":""2025-03-31""}",2025-03-10
start today assign to mike,edit_task,"{""start_date"":""2025-03-10"",""assignee"":""mike""}",2025-03-10
due tomorrow,edit_task,"{""end_date"":""2025-03-11""}",2025-03-10
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2025-03-11""}",2025-03-10
start tomorrow,edit_task,"{""start_date"":""2025-03-11""}",2025-03-10
kick it off tomorrow,edit_task,"{""start_date"":""2025-03-11""}",2025-03-10
start tomorrow due end of month,edit_task,"{""start_date"":""2025-03-11"",""end_date"":""2025-03-31""}",2025-03-10
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2025-03-11"",""assignee"":""sarah"",""priority"":""p1""}",2025-03-10
start tomorrow mark in progress,edit_task,"{""start_date"":""2025-03-11"",""status"":""in progress""}",2025-03-10
due this friday,edit_task,"{""end_date"":""2025-03-14""}",2025-03-10
needs to be done by friday,edit_task,"{""end_date"":""2025-03-14""}",2025-03-10
wrap it up by friday,edit_task,"{""end_date"":""2025-03-14""}",2025-03-10
due friday assign to carlos,edit_task,"{""end_date"":""2025-03-14"",""assignee"":""carlos""}",2025-03-10
due by end of day friday priority p1,edit_task,"{""end_date"":""2025-03-14"",""priority"":""p1""}",2025-03-10
finish by this friday mark in progress,edit_task,"{""end_date"":""2025-03-14"",""status"":""in progress""}",2025-03-10
start next monday,edit_task,"{""start_date"":""2025-03-17""}",2025-03-10
kick off next monday,edit_task,"{""start_date"":""2025-03-17""}",2025-03-10
start next monday assign to the crew,edit_task,"{""start_date"":""2025-03-17"",""assignee"":""the crew""}",2025-03-10
start next monday end of month,edit_task,"{""start_date"":""2025-03-17"",""end_date"":""2025-03-31""}",2025-03-10
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2025-03-17"",""status"":""in progress"",""priority"":""p2""}",2025-03-10
due next friday,edit_task,"{""end_date"":""2025-03-14""}",2025-03-10
needs to be done by next friday,edit_task,"{""end_date"":""2025-03-14""}",2025-03-10
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2025-03-14"",""assignee"":""omar"",""priority"":""p1""}",2025-03-10
due end of month,edit_task,"{""end_date"":""2025-03-31""}",2025-03-10
needs to be done by end of month,edit_task,"{""end_date"":""2025-03-31""}",2025-03-10
target completion end of month,edit_task,"{""end_date"":""2025-03-31""}",2025-03-10
wrap this up by end of month,edit_task,"{""end_date"":""2025-03-31""}",2025-03-10
due end of month mark in progress,edit_task,"{""end_date"":""2025-03-31"",""status"":""in progress""}",2025-03-10
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2025-03-31"",""assignee"":""the team"",""priority"":""p2""}",2025-03-10
start next monday end of month,edit_task,"{""start_date"":""2025-03-17"",""end_date"":""2025-03-31""}",2025-03-10
start today due end of month assign to mike,edit_task,"{""start_date"":""2025-03-10"",""end_date"":""2025-03-31"",""assignee"":""mike""}",2025-03-10
due end of next month,edit_task,"{""end_date"":""2025-04-30""}",2025-03-10
push end date to end of next month,edit_task,"{""end_date"":""2025-04-30""}",2025-03-10
due end of next month mark on hold,edit_task,"{""end_date"":""2025-04-30"",""status"":""on hold""}",2025-03-10
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2025-04-30"",""status"":""on hold"",""comments"":""budget approval pending""}",2025-03-10
start next week,edit_task,"{""start_date"":""2025-03-17""}",2025-03-10
due next week,edit_task,"{""end_date"":""2025-03-21""}",2025-03-10
start next week end of month,edit_task,"{""start_date"":""2025-03-17"",""end_date"":""2025-03-31""}",2025-03-10
start today end tomorrow,edit_task,"{""start_date"":""2025-03-10"",""end_date"":""2025-03-11""}",2025-03-10
start tomorrow end this friday,edit_task,"{""start_date"":""2025-03-11"",""end_date"":""2025-03-14""}",2025-03-10
start next monday end next friday,edit_task,"{""start_date"":""2025-03-17"",""end_date"":""2025-03-14""}",2025-03-10
start today wrap up by end of next month,edit_task,"{""start_date"":""2025-03-10"",""end_date"":""2025-04-30""}",2025-03-10
due today,edit_task,"{""end_date"":""2025-06-18""}",2025-06-18
needs to be done today,edit_task,"{""end_date"":""2025-06-18""}",2025-06-18
mark it done today,edit_task,"{""end_date"":""2025-06-18"",""status"":""complete""}",2025-06-18
start today,edit_task,"{""start_date"":""2025-06-18""}",2025-06-18
kick it off today,edit_task,"{""start_date"":""2025-06-18""}",2025-06-18
starting today,edit_task,"{""start_date"":""2025-06-18""}",2025-06-18
start today end of month,edit_task,"{""start_date"":""2025-06-18"",""end_date"":""2025-06-30""}",2025-06-18
start today assign to mike,edit_task,"{""start_date"":""2025-06-18"",""assignee"":""mike""}",2025-06-18
due tomorrow,edit_task,"{""end_date"":""2025-06-19""}",2025-06-18
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2025-06-19""}",2025-06-18
start tomorrow,edit_task,"{""start_date"":""2025-06-19""}",2025-06-18
kick it off tomorrow,edit_task,"{""start_date"":""2025-06-19""}",2025-06-18
start tomorrow due end of month,edit_task,"{""start_date"":""2025-06-19"",""end_date"":""2025-06-30""}",2025-06-18
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2025-06-19"",""assignee"":""sarah"",""priority"":""p1""}",2025-06-18
start tomorrow mark in progress,edit_task,"{""start_date"":""2025-06-19"",""status"":""in progress""}",2025-06-18
due this friday,edit_task,"{""end_date"":""2025-06-20""}",2025-06-18
needs to be done by friday,edit_task,"{""end_date"":""2025-06-20""}",2025-06-18
wrap it up by friday,edit_task,"{""end_date"":""2025-06-20""}",2025-06-18
due friday assign to carlos,edit_task,"{""end_date"":""2025-06-20"",""assignee"":""carlos""}",2025-06-18
due by end of day friday priority p1,edit_task,"{""end_date"":""2025-06-20"",""priority"":""p1""}",2025-06-18
finish by this friday mark in progress,edit_task,"{""end_date"":""2025-06-20"",""status"":""in progress""}",2025-06-18
start next monday,edit_task,"{""start_date"":""2025-06-23""}",2025-06-18
kick off next monday,edit_task,"{""start_date"":""2025-06-23""}",2025-06-18
start next monday assign to the crew,edit_task,"{""start_date"":""2025-06-23"",""assignee"":""the crew""}",2025-06-18
start next monday end of month,edit_task,"{""start_date"":""2025-06-23"",""end_date"":""2025-06-30""}",2025-06-18
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2025-06-23"",""status"":""in progress"",""priority"":""p2""}",2025-06-18
due next friday,edit_task,"{""end_date"":""2025-06-20""}",2025-06-18
needs to be done by next friday,edit_task,"{""end_date"":""2025-06-20""}",2025-06-18
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2025-06-20"",""assignee"":""omar"",""priority"":""p1""}",2025-06-18
due end of month,edit_task,"{""end_date"":""2025-06-30""}",2025-06-18
needs to be done by end of month,edit_task,"{""end_date"":""2025-06-30""}",2025-06-18
target completion end of month,edit_task,"{""end_date"":""2025-06-30""}",2025-06-18
wrap this up by end of month,edit_task,"{""end_date"":""2025-06-30""}",2025-06-18
due end of month mark in progress,edit_task,"{""end_date"":""2025-06-30"",""status"":""in progress""}",2025-06-18
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2025-06-30"",""assignee"":""the team"",""priority"":""p2""}",2025-06-18
start next monday end of month,edit_task,"{""start_date"":""2025-06-23"",""end_date"":""2025-06-30""}",2025-06-18
start today due end of month assign to mike,edit_task,"{""start_date"":""2025-06-18"",""end_date"":""2025-06-30"",""assignee"":""mike""}",2025-06-18
due end of next month,edit_task,"{""end_date"":""2025-07-31""}",2025-06-18
push end date to end of next month,edit_task,"{""end_date"":""2025-07-31""}",2025-06-18
due end of next month mark on hold,edit_task,"{""end_date"":""2025-07-31"",""status"":""on hold""}",2025-06-18
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2025-07-31"",""status"":""on hold"",""comments"":""budget approval pending""}",2025-06-18
start next week,edit_task,"{""start_date"":""2025-06-23""}",2025-06-18
due next week,edit_task,"{""end_date"":""2025-06-27""}",2025-06-18
start next week end of month,edit_task,"{""start_date"":""2025-06-23"",""end_date"":""2025-06-30""}",2025-06-18
start today end tomorrow,edit_task,"{""start_date"":""2025-06-18"",""end_date"":""2025-06-19""}",2025-06-18
start tomorrow end this friday,edit_task,"{""start_date"":""2025-06-19"",""end_date"":""2025-06-20""}",2025-06-18
start next monday end next friday,edit_task,"{""start_date"":""2025-06-23"",""end_date"":""2025-06-20""}",2025-06-18
start today wrap up by end of next month,edit_task,"{""start_date"":""2025-06-18"",""end_date"":""2025-07-31""}",2025-06-18
due today,edit_task,"{""end_date"":""2025-09-03""}",2025-09-03
needs to be done today,edit_task,"{""end_date"":""2025-09-03""}",2025-09-03
mark it done today,edit_task,"{""end_date"":""2025-09-03"",""status"":""complete""}",2025-09-03
start today,edit_task,"{""start_date"":""2025-09-03""}",2025-09-03
kick it off today,edit_task,"{""start_date"":""2025-09-03""}",2025-09-03
starting today,edit_task,"{""start_date"":""2025-09-03""}",2025-09-03
start today end of month,edit_task,"{""start_date"":""2025-09-03"",""end_date"":""2025-09-30""}",2025-09-03
start today assign to mike,edit_task,"{""start_date"":""2025-09-03"",""assignee"":""mike""}",2025-09-03
due tomorrow,edit_task,"{""end_date"":""2025-09-04""}",2025-09-03
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2025-09-04""}",2025-09-03
start tomorrow,edit_task,"{""start_date"":""2025-09-04""}",2025-09-03
kick it off tomorrow,edit_task,"{""start_date"":""2025-09-04""}",2025-09-03
start tomorrow due end of month,edit_task,"{""start_date"":""2025-09-04"",""end_date"":""2025-09-30""}",2025-09-03
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2025-09-04"",""assignee"":""sarah"",""priority"":""p1""}",2025-09-03
start tomorrow mark in progress,edit_task,"{""start_date"":""2025-09-04"",""status"":""in progress""}",2025-09-03
due this friday,edit_task,"{""end_date"":""2025-09-05""}",2025-09-03
needs to be done by friday,edit_task,"{""end_date"":""2025-09-05""}",2025-09-03
wrap it up by friday,edit_task,"{""end_date"":""2025-09-05""}",2025-09-03
due friday assign to carlos,edit_task,"{""end_date"":""2025-09-05"",""assignee"":""carlos""}",2025-09-03
due by end of day friday priority p1,edit_task,"{""end_date"":""2025-09-05"",""priority"":""p1""}",2025-09-03
finish by this friday mark in progress,edit_task,"{""end_date"":""2025-09-05"",""status"":""in progress""}",2025-09-03
start next monday,edit_task,"{""start_date"":""2025-09-08""}",2025-09-03
kick off next monday,edit_task,"{""start_date"":""2025-09-08""}",2025-09-03
start next monday assign to the crew,edit_task,"{""start_date"":""2025-09-08"",""assignee"":""the crew""}",2025-09-03
start next monday end of month,edit_task,"{""start_date"":""2025-09-08"",""end_date"":""2025-09-30""}",2025-09-03
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2025-09-08"",""status"":""in progress"",""priority"":""p2""}",2025-09-03
due next friday,edit_task,"{""end_date"":""2025-09-05""}",2025-09-03
needs to be done by next friday,edit_task,"{""end_date"":""2025-09-05""}",2025-09-03
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2025-09-05"",""assignee"":""omar"",""priority"":""p1""}",2025-09-03
due end of month,edit_task,"{""end_date"":""2025-09-30""}",2025-09-03
needs to be done by end of month,edit_task,"{""end_date"":""2025-09-30""}",2025-09-03
target completion end of month,edit_task,"{""end_date"":""2025-09-30""}",2025-09-03
wrap this up by end of month,edit_task,"{""end_date"":""2025-09-30""}",2025-09-03
due end of month mark in progress,edit_task,"{""end_date"":""2025-09-30"",""status"":""in progress""}",2025-09-03
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2025-09-30"",""assignee"":""the team"",""priority"":""p2""}",2025-09-03
start next monday end of month,edit_task,"{""start_date"":""2025-09-08"",""end_date"":""2025-09-30""}",2025-09-03
start today due end of month assign to mike,edit_task,"{""start_date"":""2025-09-03"",""end_date"":""2025-09-30"",""assignee"":""mike""}",2025-09-03
due end of next month,edit_task,"{""end_date"":""2025-10-31""}",2025-09-03
push end date to end of next month,edit_task,"{""end_date"":""2025-10-31""}",2025-09-03
due end of next month mark on hold,edit_task,"{""end_date"":""2025-10-31"",""status"":""on hold""}",2025-09-03
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2025-10-31"",""status"":""on hold"",""comments"":""budget approval pending""}",2025-09-03
start next week,edit_task,"{""start_date"":""2025-09-08""}",2025-09-03
due next week,edit_task,"{""end_date"":""2025-09-12""}",2025-09-03
start next week end of month,edit_task,"{""start_date"":""2025-09-08"",""end_date"":""2025-09-30""}",2025-09-03
start today end tomorrow,edit_task,"{""start_date"":""2025-09-03"",""end_date"":""2025-09-04""}",2025-09-03
start tomorrow end this friday,edit_task,"{""start_date"":""2025-09-04"",""end_date"":""2025-09-05""}",2025-09-03
start next monday end next friday,edit_task,"{""start_date"":""2025-09-08"",""end_date"":""2025-09-05""}",2025-09-03
start today wrap up by end of next month,edit_task,"{""start_date"":""2025-09-03"",""end_date"":""2025-10-31""}",2025-09-03
due today,edit_task,"{""end_date"":""2025-11-14""}",2025-11-14
needs to be done today,edit_task,"{""end_date"":""2025-11-14""}",2025-11-14
mark it done today,edit_task,"{""end_date"":""2025-11-14"",""status"":""complete""}",2025-11-14
start today,edit_task,"{""start_date"":""2025-11-14""}",2025-11-14
kick it off today,edit_task,"{""start_date"":""2025-11-14""}",2025-11-14
starting today,edit_task,"{""start_date"":""2025-11-14""}",2025-11-14
start today end of month,edit_task,"{""start_date"":""2025-11-14"",""end_date"":""2025-11-30""}",2025-11-14
start today assign to mike,edit_task,"{""start_date"":""2025-11-14"",""assignee"":""mike""}",2025-11-14
due tomorrow,edit_task,"{""end_date"":""2025-11-15""}",2025-11-14
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2025-11-15""}",2025-11-14
start tomorrow,edit_task,"{""start_date"":""2025-11-15""}",2025-11-14
kick it off tomorrow,edit_task,"{""start_date"":""2025-11-15""}",2025-11-14
start tomorrow due end of month,edit_task,"{""start_date"":""2025-11-15"",""end_date"":""2025-11-30""}",2025-11-14
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2025-11-15"",""assignee"":""sarah"",""priority"":""p1""}",2025-11-14
start tomorrow mark in progress,edit_task,"{""start_date"":""2025-11-15"",""status"":""in progress""}",2025-11-14
due this friday,edit_task,"{""end_date"":""2025-11-21""}",2025-11-14
needs to be done by friday,edit_task,"{""end_date"":""2025-11-21""}",2025-11-14
wrap it up by friday,edit_task,"{""end_date"":""2025-11-21""}",2025-11-14
due friday assign to carlos,edit_task,"{""end_date"":""2025-11-21"",""assignee"":""carlos""}",2025-11-14
due by end of day friday priority p1,edit_task,"{""end_date"":""2025-11-21"",""priority"":""p1""}",2025-11-14
finish by this friday mark in progress,edit_task,"{""end_date"":""2025-11-21"",""status"":""in progress""}",2025-11-14
start next monday,edit_task,"{""start_date"":""2025-11-17""}",2025-11-14
kick off next monday,edit_task,"{""start_date"":""2025-11-17""}",2025-11-14
start next monday assign to the crew,edit_task,"{""start_date"":""2025-11-17"",""assignee"":""the crew""}",2025-11-14
start next monday end of month,edit_task,"{""start_date"":""2025-11-17"",""end_date"":""2025-11-30""}",2025-11-14
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2025-11-17"",""status"":""in progress"",""priority"":""p2""}",2025-11-14
due next friday,edit_task,"{""end_date"":""2025-11-21""}",2025-11-14
needs to be done by next friday,edit_task,"{""end_date"":""2025-11-21""}",2025-11-14
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2025-11-21"",""assignee"":""omar"",""priority"":""p1""}",2025-11-14
due end of month,edit_task,"{""end_date"":""2025-11-30""}",2025-11-14
needs to be done by end of month,edit_task,"{""end_date"":""2025-11-30""}",2025-11-14
target completion end of month,edit_task,"{""end_date"":""2025-11-30""}",2025-11-14
wrap this up by end of month,edit_task,"{""end_date"":""2025-11-30""}",2025-11-14
due end of month mark in progress,edit_task,"{""end_date"":""2025-11-30"",""status"":""in progress""}",2025-11-14
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2025-11-30"",""assignee"":""the team"",""priority"":""p2""}",2025-11-14
start next monday end of month,edit_task,"{""start_date"":""2025-11-17"",""end_date"":""2025-11-30""}",2025-11-14
start today due end of month assign to mike,edit_task,"{""start_date"":""2025-11-14"",""end_date"":""2025-11-30"",""assignee"":""mike""}",2025-11-14
due end of next month,edit_task,"{""end_date"":""2025-12-31""}",2025-11-14
push end date to end of next month,edit_task,"{""end_date"":""2025-12-31""}",2025-11-14
due end of next month mark on hold,edit_task,"{""end_date"":""2025-12-31"",""status"":""on hold""}",2025-11-14
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2025-12-31"",""status"":""on hold"",""comments"":""budget approval pending""}",2025-11-14
start next week,edit_task,"{""start_date"":""2025-11-17""}",2025-11-14
due next week,edit_task,"{""end_date"":""2025-11-21""}",2025-11-14
start next week end of month,edit_task,"{""start_date"":""2025-11-17"",""end_date"":""2025-11-30""}",2025-11-14
start today end tomorrow,edit_task,"{""start_date"":""2025-11-14"",""end_date"":""2025-11-15""}",2025-11-14
start tomorrow end this friday,edit_task,"{""start_date"":""2025-11-15"",""end_date"":""2025-11-21""}",2025-11-14
start next monday end next friday,edit_task,"{""start_date"":""2025-11-17"",""end_date"":""2025-11-21""}",2025-11-14
start today wrap up by end of next month,edit_task,"{""start_date"":""2025-11-14"",""end_date"":""2025-12-31""}",2025-11-14
due today,edit_task,"{""end_date"":""2026-01-07""}",2026-01-07
needs to be done today,edit_task,"{""end_date"":""2026-01-07""}",2026-01-07
mark it done today,edit_task,"{""end_date"":""2026-01-07"",""status"":""complete""}",2026-01-07
start today,edit_task,"{""start_date"":""2026-01-07""}",2026-01-07
kick it off today,edit_task,"{""start_date"":""2026-01-07""}",2026-01-07
starting today,edit_task,"{""start_date"":""2026-01-07""}",2026-01-07
start today end of month,edit_task,"{""start_date"":""2026-01-07"",""end_date"":""2026-01-31""}",2026-01-07
start today assign to mike,edit_task,"{""start_date"":""2026-01-07"",""assignee"":""mike""}",2026-01-07
due tomorrow,edit_task,"{""end_date"":""2026-01-08""}",2026-01-07
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2026-01-08""}",2026-01-07
start tomorrow,edit_task,"{""start_date"":""2026-01-08""}",2026-01-07
kick it off tomorrow,edit_task,"{""start_date"":""2026-01-08""}",2026-01-07
start tomorrow due end of month,edit_task,"{""start_date"":""2026-01-08"",""end_date"":""2026-01-31""}",2026-01-07
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2026-01-08"",""assignee"":""sarah"",""priority"":""p1""}",2026-01-07
start tomorrow mark in progress,edit_task,"{""start_date"":""2026-01-08"",""status"":""in progress""}",2026-01-07
due this friday,edit_task,"{""end_date"":""2026-01-09""}",2026-01-07
needs to be done by friday,edit_task,"{""end_date"":""2026-01-09""}",2026-01-07
wrap it up by friday,edit_task,"{""end_date"":""2026-01-09""}",2026-01-07
due friday assign to carlos,edit_task,"{""end_date"":""2026-01-09"",""assignee"":""carlos""}",2026-01-07
due by end of day friday priority p1,edit_task,"{""end_date"":""2026-01-09"",""priority"":""p1""}",2026-01-07
finish by this friday mark in progress,edit_task,"{""end_date"":""2026-01-09"",""status"":""in progress""}",2026-01-07
start next monday,edit_task,"{""start_date"":""2026-01-12""}",2026-01-07
kick off next monday,edit_task,"{""start_date"":""2026-01-12""}",2026-01-07
start next monday assign to the crew,edit_task,"{""start_date"":""2026-01-12"",""assignee"":""the crew""}",2026-01-07
start next monday end of month,edit_task,"{""start_date"":""2026-01-12"",""end_date"":""2026-01-31""}",2026-01-07
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2026-01-12"",""status"":""in progress"",""priority"":""p2""}",2026-01-07
due next friday,edit_task,"{""end_date"":""2026-01-09""}",2026-01-07
needs to be done by next friday,edit_task,"{""end_date"":""2026-01-09""}",2026-01-07
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2026-01-09"",""assignee"":""omar"",""priority"":""p1""}",2026-01-07
due end of month,edit_task,"{""end_date"":""2026-01-31""}",2026-01-07
needs to be done by end of month,edit_task,"{""end_date"":""2026-01-31""}",2026-01-07
target completion end of month,edit_task,"{""end_date"":""2026-01-31""}",2026-01-07
wrap this up by end of month,edit_task,"{""end_date"":""2026-01-31""}",2026-01-07
due end of month mark in progress,edit_task,"{""end_date"":""2026-01-31"",""status"":""in progress""}",2026-01-07
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2026-01-31"",""assignee"":""the team"",""priority"":""p2""}",2026-01-07
start next monday end of month,edit_task,"{""start_date"":""2026-01-12"",""end_date"":""2026-01-31""}",2026-01-07
start today due end of month assign to mike,edit_task,"{""start_date"":""2026-01-07"",""end_date"":""2026-01-31"",""assignee"":""mike""}",2026-01-07
due end of next month,edit_task,"{""end_date"":""2026-02-28""}",2026-01-07
push end date to end of next month,edit_task,"{""end_date"":""2026-02-28""}",2026-01-07
due end of next month mark on hold,edit_task,"{""end_date"":""2026-02-28"",""status"":""on hold""}",2026-01-07
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2026-02-28"",""status"":""on hold"",""comments"":""budget approval pending""}",2026-01-07
start next week,edit_task,"{""start_date"":""2026-01-12""}",2026-01-07
due next week,edit_task,"{""end_date"":""2026-01-16""}",2026-01-07
start next week end of month,edit_task,"{""start_date"":""2026-01-12"",""end_date"":""2026-01-31""}",2026-01-07
start today end tomorrow,edit_task,"{""start_date"":""2026-01-07"",""end_date"":""2026-01-08""}",2026-01-07
start tomorrow end this friday,edit_task,"{""start_date"":""2026-01-08"",""end_date"":""2026-01-09""}",2026-01-07
start next monday end next friday,edit_task,"{""start_date"":""2026-01-12"",""end_date"":""2026-01-09""}",2026-01-07
start today wrap up by end of next month,edit_task,"{""start_date"":""2026-01-07"",""end_date"":""2026-02-28""}",2026-01-07
due today,edit_task,"{""end_date"":""2026-02-23""}",2026-02-23
needs to be done today,edit_task,"{""end_date"":""2026-02-23""}",2026-02-23
mark it done today,edit_task,"{""end_date"":""2026-02-23"",""status"":""complete""}",2026-02-23
start today,edit_task,"{""start_date"":""2026-02-23""}",2026-02-23
kick it off today,edit_task,"{""start_date"":""2026-02-23""}",2026-02-23
starting today,edit_task,"{""start_date"":""2026-02-23""}",2026-02-23
start today end of month,edit_task,"{""start_date"":""2026-02-23"",""end_date"":""2026-02-28""}",2026-02-23
start today assign to mike,edit_task,"{""start_date"":""2026-02-23"",""assignee"":""mike""}",2026-02-23
due tomorrow,edit_task,"{""end_date"":""2026-02-24""}",2026-02-23
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2026-02-24""}",2026-02-23
start tomorrow,edit_task,"{""start_date"":""2026-02-24""}",2026-02-23
kick it off tomorrow,edit_task,"{""start_date"":""2026-02-24""}",2026-02-23
start tomorrow due end of month,edit_task,"{""start_date"":""2026-02-24"",""end_date"":""2026-02-28""}",2026-02-23
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2026-02-24"",""assignee"":""sarah"",""priority"":""p1""}",2026-02-23
start tomorrow mark in progress,edit_task,"{""start_date"":""2026-02-24"",""status"":""in progress""}",2026-02-23
due this friday,edit_task,"{""end_date"":""2026-02-27""}",2026-02-23
needs to be done by friday,edit_task,"{""end_date"":""2026-02-27""}",2026-02-23
wrap it up by friday,edit_task,"{""end_date"":""2026-02-27""}",2026-02-23
due friday assign to carlos,edit_task,"{""end_date"":""2026-02-27"",""assignee"":""carlos""}",2026-02-23
due by end of day friday priority p1,edit_task,"{""end_date"":""2026-02-27"",""priority"":""p1""}",2026-02-23
finish by this friday mark in progress,edit_task,"{""end_date"":""2026-02-27"",""status"":""in progress""}",2026-02-23
start next monday,edit_task,"{""start_date"":""2026-03-02""}",2026-02-23
kick off next monday,edit_task,"{""start_date"":""2026-03-02""}",2026-02-23
start next monday assign to the crew,edit_task,"{""start_date"":""2026-03-02"",""assignee"":""the crew""}",2026-02-23
start next monday end of month,edit_task,"{""start_date"":""2026-03-02"",""end_date"":""2026-02-28""}",2026-02-23
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2026-03-02"",""status"":""in progress"",""priority"":""p2""}",2026-02-23
due next friday,edit_task,"{""end_date"":""2026-02-27""}",2026-02-23
needs to be done by next friday,edit_task,"{""end_date"":""2026-02-27""}",2026-02-23
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2026-02-27"",""assignee"":""omar"",""priority"":""p1""}",2026-02-23
due end of month,edit_task,"{""end_date"":""2026-02-28""}",2026-02-23
needs to be done by end of month,edit_task,"{""end_date"":""2026-02-28""}",2026-02-23
target completion end of month,edit_task,"{""end_date"":""2026-02-28""}",2026-02-23
wrap this up by end of month,edit_task,"{""end_date"":""2026-02-28""}",2026-02-23
due end of month mark in progress,edit_task,"{""end_date"":""2026-02-28"",""status"":""in progress""}",2026-02-23
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2026-02-28"",""assignee"":""the team"",""priority"":""p2""}",2026-02-23
start next monday end of month,edit_task,"{""start_date"":""2026-03-02"",""end_date"":""2026-02-28""}",2026-02-23
start today due end of month assign to mike,edit_task,"{""start_date"":""2026-02-23"",""end_date"":""2026-02-28"",""assignee"":""mike""}",2026-02-23
due end of next month,edit_task,"{""end_date"":""2026-03-31""}",2026-02-23
push end date to end of next month,edit_task,"{""end_date"":""2026-03-31""}",2026-02-23
due end of next month mark on hold,edit_task,"{""end_date"":""2026-03-31"",""status"":""on hold""}",2026-02-23
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2026-03-31"",""status"":""on hold"",""comments"":""budget approval pending""}",2026-02-23
start next week,edit_task,"{""start_date"":""2026-03-02""}",2026-02-23
due next week,edit_task,"{""end_date"":""2026-03-06""}",2026-02-23
start next week end of month,edit_task,"{""start_date"":""2026-03-02"",""end_date"":""2026-02-28""}",2026-02-23
start today end tomorrow,edit_task,"{""start_date"":""2026-02-23"",""end_date"":""2026-02-24""}",2026-02-23
start tomorrow end this friday,edit_task,"{""start_date"":""2026-02-24"",""end_date"":""2026-02-27""}",2026-02-23
start next monday end next friday,edit_task,"{""start_date"":""2026-03-02"",""end_date"":""2026-02-27""}",2026-02-23
start today wrap up by end of next month,edit_task,"{""start_date"":""2026-02-23"",""end_date"":""2026-03-31""}",2026-02-23
due today,edit_task,"{""end_date"":""2026-04-01""}",2026-04-01
needs to be done today,edit_task,"{""end_date"":""2026-04-01""}",2026-04-01
mark it done today,edit_task,"{""end_date"":""2026-04-01"",""status"":""complete""}",2026-04-01
start today,edit_task,"{""start_date"":""2026-04-01""}",2026-04-01
kick it off today,edit_task,"{""start_date"":""2026-04-01""}",2026-04-01
starting today,edit_task,"{""start_date"":""2026-04-01""}",2026-04-01
start today end of month,edit_task,"{""start_date"":""2026-04-01"",""end_date"":""2026-04-30""}",2026-04-01
start today assign to mike,edit_task,"{""start_date"":""2026-04-01"",""assignee"":""mike""}",2026-04-01
due tomorrow,edit_task,"{""end_date"":""2026-04-02""}",2026-04-01
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2026-04-02""}",2026-04-01
start tomorrow,edit_task,"{""start_date"":""2026-04-02""}",2026-04-01
kick it off tomorrow,edit_task,"{""start_date"":""2026-04-02""}",2026-04-01
start tomorrow due end of month,edit_task,"{""start_date"":""2026-04-02"",""end_date"":""2026-04-30""}",2026-04-01
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2026-04-02"",""assignee"":""sarah"",""priority"":""p1""}",2026-04-01
start tomorrow mark in progress,edit_task,"{""start_date"":""2026-04-02"",""status"":""in progress""}",2026-04-01
due this friday,edit_task,"{""end_date"":""2026-04-03""}",2026-04-01
needs to be done by friday,edit_task,"{""end_date"":""2026-04-03""}",2026-04-01
wrap it up by friday,edit_task,"{""end_date"":""2026-04-03""}",2026-04-01
due friday assign to carlos,edit_task,"{""end_date"":""2026-04-03"",""assignee"":""carlos""}",2026-04-01
due by end of day friday priority p1,edit_task,"{""end_date"":""2026-04-03"",""priority"":""p1""}",2026-04-01
finish by this friday mark in progress,edit_task,"{""end_date"":""2026-04-03"",""status"":""in progress""}",2026-04-01
start next monday,edit_task,"{""start_date"":""2026-04-06""}",2026-04-01
kick off next monday,edit_task,"{""start_date"":""2026-04-06""}",2026-04-01
start next monday assign to the crew,edit_task,"{""start_date"":""2026-04-06"",""assignee"":""the crew""}",2026-04-01
start next monday end of month,edit_task,"{""start_date"":""2026-04-06"",""end_date"":""2026-04-30""}",2026-04-01
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2026-04-06"",""status"":""in progress"",""priority"":""p2""}",2026-04-01
due next friday,edit_task,"{""end_date"":""2026-04-03""}",2026-04-01
needs to be done by next friday,edit_task,"{""end_date"":""2026-04-03""}",2026-04-01
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2026-04-03"",""assignee"":""omar"",""priority"":""p1""}",2026-04-01
due end of month,edit_task,"{""end_date"":""2026-04-30""}",2026-04-01
needs to be done by end of month,edit_task,"{""end_date"":""2026-04-30""}",2026-04-01
target completion end of month,edit_task,"{""end_date"":""2026-04-30""}",2026-04-01
wrap this up by end of month,edit_task,"{""end_date"":""2026-04-30""}",2026-04-01
due end of month mark in progress,edit_task,"{""end_date"":""2026-04-30"",""status"":""in progress""}",2026-04-01
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2026-04-30"",""assignee"":""the team"",""priority"":""p2""}",2026-04-01
start next monday end of month,edit_task,"{""start_date"":""2026-04-06"",""end_date"":""2026-04-30""}",2026-04-01
start today due end of month assign to mike,edit_task,"{""start_date"":""2026-04-01"",""end_date"":""2026-04-30"",""assignee"":""mike""}",2026-04-01
due end of next month,edit_task,"{""end_date"":""2026-05-31""}",2026-04-01
push end date to end of next month,edit_task,"{""end_date"":""2026-05-31""}",2026-04-01
due end of next month mark on hold,edit_task,"{""end_date"":""2026-05-31"",""status"":""on hold""}",2026-04-01
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2026-05-31"",""status"":""on hold"",""comments"":""budget approval pending""}",2026-04-01
start next week,edit_task,"{""start_date"":""2026-04-06""}",2026-04-01
due next week,edit_task,"{""end_date"":""2026-04-10""}",2026-04-01
start next week end of month,edit_task,"{""start_date"":""2026-04-06"",""end_date"":""2026-04-30""}",2026-04-01
start today end tomorrow,edit_task,"{""start_date"":""2026-04-01"",""end_date"":""2026-04-02""}",2026-04-01
start tomorrow end this friday,edit_task,"{""start_date"":""2026-04-02"",""end_date"":""2026-04-03""}",2026-04-01
start next monday end next friday,edit_task,"{""start_date"":""2026-04-06"",""end_date"":""2026-04-03""}",2026-04-01
start today wrap up by end of next month,edit_task,"{""start_date"":""2026-04-01"",""end_date"":""2026-05-31""}",2026-04-01
due today,edit_task,"{""end_date"":""2026-05-05""}",2026-05-05
needs to be done today,edit_task,"{""end_date"":""2026-05-05""}",2026-05-05
mark it done today,edit_task,"{""end_date"":""2026-05-05"",""status"":""complete""}",2026-05-05
start today,edit_task,"{""start_date"":""2026-05-05""}",2026-05-05
kick it off today,edit_task,"{""start_date"":""2026-05-05""}",2026-05-05
starting today,edit_task,"{""start_date"":""2026-05-05""}",2026-05-05
start today end of month,edit_task,"{""start_date"":""2026-05-05"",""end_date"":""2026-05-31""}",2026-05-05
start today assign to mike,edit_task,"{""start_date"":""2026-05-05"",""assignee"":""mike""}",2026-05-05
due tomorrow,edit_task,"{""end_date"":""2026-05-06""}",2026-05-05
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2026-05-06""}",2026-05-05
start tomorrow,edit_task,"{""start_date"":""2026-05-06""}",2026-05-05
kick it off tomorrow,edit_task,"{""start_date"":""2026-05-06""}",2026-05-05
start tomorrow due end of month,edit_task,"{""start_date"":""2026-05-06"",""end_date"":""2026-05-31""}",2026-05-05
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2026-05-06"",""assignee"":""sarah"",""priority"":""p1""}",2026-05-05
start tomorrow mark in progress,edit_task,"{""start_date"":""2026-05-06"",""status"":""in progress""}",2026-05-05
due this friday,edit_task,"{""end_date"":""2026-05-08""}",2026-05-05
needs to be done by friday,edit_task,"{""end_date"":""2026-05-08""}",2026-05-05
wrap it up by friday,edit_task,"{""end_date"":""2026-05-08""}",2026-05-05
due friday assign to carlos,edit_task,"{""end_date"":""2026-05-08"",""assignee"":""carlos""}",2026-05-05
due by end of day friday priority p1,edit_task,"{""end_date"":""2026-05-08"",""priority"":""p1""}",2026-05-05
finish by this friday mark in progress,edit_task,"{""end_date"":""2026-05-08"",""status"":""in progress""}",2026-05-05
start next monday,edit_task,"{""start_date"":""2026-05-11""}",2026-05-05
kick off next monday,edit_task,"{""start_date"":""2026-05-11""}",2026-05-05
start next monday assign to the crew,edit_task,"{""start_date"":""2026-05-11"",""assignee"":""the crew""}",2026-05-05
start next monday end of month,edit_task,"{""start_date"":""2026-05-11"",""end_date"":""2026-05-31""}",2026-05-05
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2026-05-11"",""status"":""in progress"",""priority"":""p2""}",2026-05-05
due next friday,edit_task,"{""end_date"":""2026-05-08""}",2026-05-05
needs to be done by next friday,edit_task,"{""end_date"":""2026-05-08""}",2026-05-05
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2026-05-08"",""assignee"":""omar"",""priority"":""p1""}",2026-05-05
due end of month,edit_task,"{""end_date"":""2026-05-31""}",2026-05-05
needs to be done by end of month,edit_task,"{""end_date"":""2026-05-31""}",2026-05-05
target completion end of month,edit_task,"{""end_date"":""2026-05-31""}",2026-05-05
wrap this up by end of month,edit_task,"{""end_date"":""2026-05-31""}",2026-05-05
due end of month mark in progress,edit_task,"{""end_date"":""2026-05-31"",""status"":""in progress""}",2026-05-05
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2026-05-31"",""assignee"":""the team"",""priority"":""p2""}",2026-05-05
start next monday end of month,edit_task,"{""start_date"":""2026-05-11"",""end_date"":""2026-05-31""}",2026-05-05
start today due end of month assign to mike,edit_task,"{""start_date"":""2026-05-05"",""end_date"":""2026-05-31"",""assignee"":""mike""}",2026-05-05
due end of next month,edit_task,"{""end_date"":""2026-06-30""}",2026-05-05
push end date to end of next month,edit_task,"{""end_date"":""2026-06-30""}",2026-05-05
due end of next month mark on hold,edit_task,"{""end_date"":""2026-06-30"",""status"":""on hold""}",2026-05-05
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2026-06-30"",""status"":""on hold"",""comments"":""budget approval pending""}",2026-05-05
start next week,edit_task,"{""start_date"":""2026-05-11""}",2026-05-05
due next week,edit_task,"{""end_date"":""2026-05-15""}",2026-05-05
start next week end of month,edit_task,"{""start_date"":""2026-05-11"",""end_date"":""2026-05-31""}",2026-05-05
start today end tomorrow,edit_task,"{""start_date"":""2026-05-05"",""end_date"":""2026-05-06""}",2026-05-05
start tomorrow end this friday,edit_task,"{""start_date"":""2026-05-06"",""end_date"":""2026-05-08""}",2026-05-05
start next monday end next friday,edit_task,"{""start_date"":""2026-05-11"",""end_date"":""2026-05-08""}",2026-05-05
start today wrap up by end of next month,edit_task,"{""start_date"":""2026-05-05"",""end_date"":""2026-06-30""}",2026-05-05
due today,edit_task,"{""end_date"":""2026-07-13""}",2026-07-13
needs to be done today,edit_task,"{""end_date"":""2026-07-13""}",2026-07-13
mark it done today,edit_task,"{""end_date"":""2026-07-13"",""status"":""complete""}",2026-07-13
start today,edit_task,"{""start_date"":""2026-07-13""}",2026-07-13
kick it off today,edit_task,"{""start_date"":""2026-07-13""}",2026-07-13
starting today,edit_task,"{""start_date"":""2026-07-13""}",2026-07-13
start today end of month,edit_task,"{""start_date"":""2026-07-13"",""end_date"":""2026-07-31""}",2026-07-13
start today assign to mike,edit_task,"{""start_date"":""2026-07-13"",""assignee"":""mike""}",2026-07-13
due tomorrow,edit_task,"{""end_date"":""2026-07-14""}",2026-07-13
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2026-07-14""}",2026-07-13
start tomorrow,edit_task,"{""start_date"":""2026-07-14""}",2026-07-13
kick it off tomorrow,edit_task,"{""start_date"":""2026-07-14""}",2026-07-13
start tomorrow due end of month,edit_task,"{""start_date"":""2026-07-14"",""end_date"":""2026-07-31""}",2026-07-13
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2026-07-14"",""assignee"":""sarah"",""priority"":""p1""}",2026-07-13
start tomorrow mark in progress,edit_task,"{""start_date"":""2026-07-14"",""status"":""in progress""}",2026-07-13
due this friday,edit_task,"{""end_date"":""2026-07-17""}",2026-07-13
needs to be done by friday,edit_task,"{""end_date"":""2026-07-17""}",2026-07-13
wrap it up by friday,edit_task,"{""end_date"":""2026-07-17""}",2026-07-13
due friday assign to carlos,edit_task,"{""end_date"":""2026-07-17"",""assignee"":""carlos""}",2026-07-13
due by end of day friday priority p1,edit_task,"{""end_date"":""2026-07-17"",""priority"":""p1""}",2026-07-13
finish by this friday mark in progress,edit_task,"{""end_date"":""2026-07-17"",""status"":""in progress""}",2026-07-13
start next monday,edit_task,"{""start_date"":""2026-07-20""}",2026-07-13
kick off next monday,edit_task,"{""start_date"":""2026-07-20""}",2026-07-13
start next monday assign to the crew,edit_task,"{""start_date"":""2026-07-20"",""assignee"":""the crew""}",2026-07-13
start next monday end of month,edit_task,"{""start_date"":""2026-07-20"",""end_date"":""2026-07-31""}",2026-07-13
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2026-07-20"",""status"":""in progress"",""priority"":""p2""}",2026-07-13
due next friday,edit_task,"{""end_date"":""2026-07-17""}",2026-07-13
needs to be done by next friday,edit_task,"{""end_date"":""2026-07-17""}",2026-07-13
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2026-07-17"",""assignee"":""omar"",""priority"":""p1""}",2026-07-13
due end of month,edit_task,"{""end_date"":""2026-07-31""}",2026-07-13
needs to be done by end of month,edit_task,"{""end_date"":""2026-07-31""}",2026-07-13
target completion end of month,edit_task,"{""end_date"":""2026-07-31""}",2026-07-13
wrap this up by end of month,edit_task,"{""end_date"":""2026-07-31""}",2026-07-13
due end of month mark in progress,edit_task,"{""end_date"":""2026-07-31"",""status"":""in progress""}",2026-07-13
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2026-07-31"",""assignee"":""the team"",""priority"":""p2""}",2026-07-13
start next monday end of month,edit_task,"{""start_date"":""2026-07-20"",""end_date"":""2026-07-31""}",2026-07-13
start today due end of month assign to mike,edit_task,"{""start_date"":""2026-07-13"",""end_date"":""2026-07-31"",""assignee"":""mike""}",2026-07-13
due end of next month,edit_task,"{""end_date"":""2026-08-31""}",2026-07-13
push end date to end of next month,edit_task,"{""end_date"":""2026-08-31""}",2026-07-13
due end of next month mark on hold,edit_task,"{""end_date"":""2026-08-31"",""status"":""on hold""}",2026-07-13
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2026-08-31"",""status"":""on hold"",""comments"":""budget approval pending""}",2026-07-13
start next week,edit_task,"{""start_date"":""2026-07-20""}",2026-07-13
due next week,edit_task,"{""end_date"":""2026-07-24""}",2026-07-13
start next week end of month,edit_task,"{""start_date"":""2026-07-20"",""end_date"":""2026-07-31""}",2026-07-13
start today end tomorrow,edit_task,"{""start_date"":""2026-07-13"",""end_date"":""2026-07-14""}",2026-07-13
start tomorrow end this friday,edit_task,"{""start_date"":""2026-07-14"",""end_date"":""2026-07-17""}",2026-07-13
start next monday end next friday,edit_task,"{""start_date"":""2026-07-20"",""end_date"":""2026-07-17""}",2026-07-13
start today wrap up by end of next month,edit_task,"{""start_date"":""2026-07-13"",""end_date"":""2026-08-31""}",2026-07-13
due today,edit_task,"{""end_date"":""2026-08-19""}",2026-08-19
needs to be done today,edit_task,"{""end_date"":""2026-08-19""}",2026-08-19
mark it done today,edit_task,"{""end_date"":""2026-08-19"",""status"":""complete""}",2026-08-19
start today,edit_task,"{""start_date"":""2026-08-19""}",2026-08-19
kick it off today,edit_task,"{""start_date"":""2026-08-19""}",2026-08-19
starting today,edit_task,"{""start_date"":""2026-08-19""}",2026-08-19
start today end of month,edit_task,"{""start_date"":""2026-08-19"",""end_date"":""2026-08-31""}",2026-08-19
start today assign to mike,edit_task,"{""start_date"":""2026-08-19"",""assignee"":""mike""}",2026-08-19
due tomorrow,edit_task,"{""end_date"":""2026-08-20""}",2026-08-19
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2026-08-20""}",2026-08-19
start tomorrow,edit_task,"{""start_date"":""2026-08-20""}",2026-08-19
kick it off tomorrow,edit_task,"{""start_date"":""2026-08-20""}",2026-08-19
start tomorrow due end of month,edit_task,"{""start_date"":""2026-08-20"",""end_date"":""2026-08-31""}",2026-08-19
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2026-08-20"",""assignee"":""sarah"",""priority"":""p1""}",2026-08-19
start tomorrow mark in progress,edit_task,"{""start_date"":""2026-08-20"",""status"":""in progress""}",2026-08-19
due this friday,edit_task,"{""end_date"":""2026-08-21""}",2026-08-19
needs to be done by friday,edit_task,"{""end_date"":""2026-08-21""}",2026-08-19
wrap it up by friday,edit_task,"{""end_date"":""2026-08-21""}",2026-08-19
due friday assign to carlos,edit_task,"{""end_date"":""2026-08-21"",""assignee"":""carlos""}",2026-08-19
due by end of day friday priority p1,edit_task,"{""end_date"":""2026-08-21"",""priority"":""p1""}",2026-08-19
finish by this friday mark in progress,edit_task,"{""end_date"":""2026-08-21"",""status"":""in progress""}",2026-08-19
start next monday,edit_task,"{""start_date"":""2026-08-24""}",2026-08-19
kick off next monday,edit_task,"{""start_date"":""2026-08-24""}",2026-08-19
start next monday assign to the crew,edit_task,"{""start_date"":""2026-08-24"",""assignee"":""the crew""}",2026-08-19
start next monday end of month,edit_task,"{""start_date"":""2026-08-24"",""end_date"":""2026-08-31""}",2026-08-19
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2026-08-24"",""status"":""in progress"",""priority"":""p2""}",2026-08-19
due next friday,edit_task,"{""end_date"":""2026-08-21""}",2026-08-19
needs to be done by next friday,edit_task,"{""end_date"":""2026-08-21""}",2026-08-19
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2026-08-21"",""assignee"":""omar"",""priority"":""p1""}",2026-08-19
due end of month,edit_task,"{""end_date"":""2026-08-31""}",2026-08-19
needs to be done by end of month,edit_task,"{""end_date"":""2026-08-31""}",2026-08-19
target completion end of month,edit_task,"{""end_date"":""2026-08-31""}",2026-08-19
wrap this up by end of month,edit_task,"{""end_date"":""2026-08-31""}",2026-08-19
due end of month mark in progress,edit_task,"{""end_date"":""2026-08-31"",""status"":""in progress""}",2026-08-19
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2026-08-31"",""assignee"":""the team"",""priority"":""p2""}",2026-08-19
start next monday end of month,edit_task,"{""start_date"":""2026-08-24"",""end_date"":""2026-08-31""}",2026-08-19
start today due end of month assign to mike,edit_task,"{""start_date"":""2026-08-19"",""end_date"":""2026-08-31"",""assignee"":""mike""}",2026-08-19
due end of next month,edit_task,"{""end_date"":""2026-09-30""}",2026-08-19
push end date to end of next month,edit_task,"{""end_date"":""2026-09-30""}",2026-08-19
due end of next month mark on hold,edit_task,"{""end_date"":""2026-09-30"",""status"":""on hold""}",2026-08-19
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2026-09-30"",""status"":""on hold"",""comments"":""budget approval pending""}",2026-08-19
start next week,edit_task,"{""start_date"":""2026-08-24""}",2026-08-19
due next week,edit_task,"{""end_date"":""2026-08-28""}",2026-08-19
start next week end of month,edit_task,"{""start_date"":""2026-08-24"",""end_date"":""2026-08-31""}",2026-08-19
start today end tomorrow,edit_task,"{""start_date"":""2026-08-19"",""end_date"":""2026-08-20""}",2026-08-19
start tomorrow end this friday,edit_task,"{""start_date"":""2026-08-20"",""end_date"":""2026-08-21""}",2026-08-19
start next monday end next friday,edit_task,"{""start_date"":""2026-08-24"",""end_date"":""2026-08-21""}",2026-08-19
start today wrap up by end of next month,edit_task,"{""start_date"":""2026-08-19"",""end_date"":""2026-09-30""}",2026-08-19
due today,edit_task,"{""end_date"":""2026-10-06""}",2026-10-06
needs to be done today,edit_task,"{""end_date"":""2026-10-06""}",2026-10-06
mark it done today,edit_task,"{""end_date"":""2026-10-06"",""status"":""complete""}",2026-10-06
start today,edit_task,"{""start_date"":""2026-10-06""}",2026-10-06
kick it off today,edit_task,"{""start_date"":""2026-10-06""}",2026-10-06
starting today,edit_task,"{""start_date"":""2026-10-06""}",2026-10-06
start today end of month,edit_task,"{""start_date"":""2026-10-06"",""end_date"":""2026-10-31""}",2026-10-06
start today assign to mike,edit_task,"{""start_date"":""2026-10-06"",""assignee"":""mike""}",2026-10-06
due tomorrow,edit_task,"{""end_date"":""2026-10-07""}",2026-10-06
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2026-10-07""}",2026-10-06
start tomorrow,edit_task,"{""start_date"":""2026-10-07""}",2026-10-06
kick it off tomorrow,edit_task,"{""start_date"":""2026-10-07""}",2026-10-06
start tomorrow due end of month,edit_task,"{""start_date"":""2026-10-07"",""end_date"":""2026-10-31""}",2026-10-06
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2026-10-07"",""assignee"":""sarah"",""priority"":""p1""}",2026-10-06
start tomorrow mark in progress,edit_task,"{""start_date"":""2026-10-07"",""status"":""in progress""}",2026-10-06
due this friday,edit_task,"{""end_date"":""2026-10-09""}",2026-10-06
needs to be done by friday,edit_task,"{""end_date"":""2026-10-09""}",2026-10-06
wrap it up by friday,edit_task,"{""end_date"":""2026-10-09""}",2026-10-06
due friday assign to carlos,edit_task,"{""end_date"":""2026-10-09"",""assignee"":""carlos""}",2026-10-06
due by end of day friday priority p1,edit_task,"{""end_date"":""2026-10-09"",""priority"":""p1""}",2026-10-06
finish by this friday mark in progress,edit_task,"{""end_date"":""2026-10-09"",""status"":""in progress""}",2026-10-06
start next monday,edit_task,"{""start_date"":""2026-10-12""}",2026-10-06
kick off next monday,edit_task,"{""start_date"":""2026-10-12""}",2026-10-06
start next monday assign to the crew,edit_task,"{""start_date"":""2026-10-12"",""assignee"":""the crew""}",2026-10-06
start next monday end of month,edit_task,"{""start_date"":""2026-10-12"",""end_date"":""2026-10-31""}",2026-10-06
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2026-10-12"",""status"":""in progress"",""priority"":""p2""}",2026-10-06
due next friday,edit_task,"{""end_date"":""2026-10-09""}",2026-10-06
needs to be done by next friday,edit_task,"{""end_date"":""2026-10-09""}",2026-10-06
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2026-10-09"",""assignee"":""omar"",""priority"":""p1""}",2026-10-06
due end of month,edit_task,"{""end_date"":""2026-10-31""}",2026-10-06
needs to be done by end of month,edit_task,"{""end_date"":""2026-10-31""}",2026-10-06
target completion end of month,edit_task,"{""end_date"":""2026-10-31""}",2026-10-06
wrap this up by end of month,edit_task,"{""end_date"":""2026-10-31""}",2026-10-06
due end of month mark in progress,edit_task,"{""end_date"":""2026-10-31"",""status"":""in progress""}",2026-10-06
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2026-10-31"",""assignee"":""the team"",""priority"":""p2""}",2026-10-06
start next monday end of month,edit_task,"{""start_date"":""2026-10-12"",""end_date"":""2026-10-31""}",2026-10-06
start today due end of month assign to mike,edit_task,"{""start_date"":""2026-10-06"",""end_date"":""2026-10-31"",""assignee"":""mike""}",2026-10-06
due end of next month,edit_task,"{""end_date"":""2026-11-30""}",2026-10-06
push end date to end of next month,edit_task,"{""end_date"":""2026-11-30""}",2026-10-06
due end of next month mark on hold,edit_task,"{""end_date"":""2026-11-30"",""status"":""on hold""}",2026-10-06
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2026-11-30"",""status"":""on hold"",""comments"":""budget approval pending""}",2026-10-06
start next week,edit_task,"{""start_date"":""2026-10-12""}",2026-10-06
due next week,edit_task,"{""end_date"":""2026-10-16""}",2026-10-06
start next week end of month,edit_task,"{""start_date"":""2026-10-12"",""end_date"":""2026-10-31""}",2026-10-06
start today end tomorrow,edit_task,"{""start_date"":""2026-10-06"",""end_date"":""2026-10-07""}",2026-10-06
start tomorrow end this friday,edit_task,"{""start_date"":""2026-10-07"",""end_date"":""2026-10-09""}",2026-10-06
start next monday end next friday,edit_task,"{""start_date"":""2026-10-12"",""end_date"":""2026-10-09""}",2026-10-06
start today wrap up by end of next month,edit_task,"{""start_date"":""2026-10-06"",""end_date"":""2026-11-30""}",2026-10-06
due today,edit_task,"{""end_date"":""2026-11-30""}",2026-11-30
needs to be done today,edit_task,"{""end_date"":""2026-11-30""}",2026-11-30
mark it done today,edit_task,"{""end_date"":""2026-11-30"",""status"":""complete""}",2026-11-30
start today,edit_task,"{""start_date"":""2026-11-30""}",2026-11-30
kick it off today,edit_task,"{""start_date"":""2026-11-30""}",2026-11-30
starting today,edit_task,"{""start_date"":""2026-11-30""}",2026-11-30
start today end of month,edit_task,"{""start_date"":""2026-11-30"",""end_date"":""2026-11-30""}",2026-11-30
start today assign to mike,edit_task,"{""start_date"":""2026-11-30"",""assignee"":""mike""}",2026-11-30
due tomorrow,edit_task,"{""end_date"":""2026-12-01""}",2026-11-30
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2026-12-01""}",2026-11-30
start tomorrow,edit_task,"{""start_date"":""2026-12-01""}",2026-11-30
kick it off tomorrow,edit_task,"{""start_date"":""2026-12-01""}",2026-11-30
start tomorrow due end of month,edit_task,"{""start_date"":""2026-12-01"",""end_date"":""2026-11-30""}",2026-11-30
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2026-12-01"",""assignee"":""sarah"",""priority"":""p1""}",2026-11-30
start tomorrow mark in progress,edit_task,"{""start_date"":""2026-12-01"",""status"":""in progress""}",2026-11-30
due this friday,edit_task,"{""end_date"":""2026-12-04""}",2026-11-30
needs to be done by friday,edit_task,"{""end_date"":""2026-12-04""}",2026-11-30
wrap it up by friday,edit_task,"{""end_date"":""2026-12-04""}",2026-11-30
due friday assign to carlos,edit_task,"{""end_date"":""2026-12-04"",""assignee"":""carlos""}",2026-11-30
due by end of day friday priority p1,edit_task,"{""end_date"":""2026-12-04"",""priority"":""p1""}",2026-11-30
finish by this friday mark in progress,edit_task,"{""end_date"":""2026-12-04"",""status"":""in progress""}",2026-11-30
start next monday,edit_task,"{""start_date"":""2026-12-07""}",2026-11-30
kick off next monday,edit_task,"{""start_date"":""2026-12-07""}",2026-11-30
start next monday assign to the crew,edit_task,"{""start_date"":""2026-12-07"",""assignee"":""the crew""}",2026-11-30
start next monday end of month,edit_task,"{""start_date"":""2026-12-07"",""end_date"":""2026-11-30""}",2026-11-30
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2026-12-07"",""status"":""in progress"",""priority"":""p2""}",2026-11-30
due next friday,edit_task,"{""end_date"":""2026-12-04""}",2026-11-30
needs to be done by next friday,edit_task,"{""end_date"":""2026-12-04""}",2026-11-30
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2026-12-04"",""assignee"":""omar"",""priority"":""p1""}",2026-11-30
due end of month,edit_task,"{""end_date"":""2026-11-30""}",2026-11-30
needs to be done by end of month,edit_task,"{""end_date"":""2026-11-30""}",2026-11-30
target completion end of month,edit_task,"{""end_date"":""2026-11-30""}",2026-11-30
wrap this up by end of month,edit_task,"{""end_date"":""2026-11-30""}",2026-11-30
due end of month mark in progress,edit_task,"{""end_date"":""2026-11-30"",""status"":""in progress""}",2026-11-30
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2026-11-30"",""assignee"":""the team"",""priority"":""p2""}",2026-11-30
start next monday end of month,edit_task,"{""start_date"":""2026-12-07"",""end_date"":""2026-11-30""}",2026-11-30
start today due end of month assign to mike,edit_task,"{""start_date"":""2026-11-30"",""end_date"":""2026-11-30"",""assignee"":""mike""}",2026-11-30
due end of next month,edit_task,"{""end_date"":""2026-12-31""}",2026-11-30
push end date to end of next month,edit_task,"{""end_date"":""2026-12-31""}",2026-11-30
due end of next month mark on hold,edit_task,"{""end_date"":""2026-12-31"",""status"":""on hold""}",2026-11-30
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2026-12-31"",""status"":""on hold"",""comments"":""budget approval pending""}",2026-11-30
start next week,edit_task,"{""start_date"":""2026-12-07""}",2026-11-30
due next week,edit_task,"{""end_date"":""2026-12-11""}",2026-11-30
start next week end of month,edit_task,"{""start_date"":""2026-12-07"",""end_date"":""2026-11-30""}",2026-11-30
start today end tomorrow,edit_task,"{""start_date"":""2026-11-30"",""end_date"":""2026-12-01""}",2026-11-30
start tomorrow end this friday,edit_task,"{""start_date"":""2026-12-01"",""end_date"":""2026-12-04""}",2026-11-30
start next monday end next friday,edit_task,"{""start_date"":""2026-12-07"",""end_date"":""2026-12-04""}",2026-11-30
start today wrap up by end of next month,edit_task,"{""start_date"":""2026-11-30"",""end_date"":""2026-12-31""}",2026-11-30
due today,edit_task,"{""end_date"":""2027-01-11""}",2027-01-11
needs to be done today,edit_task,"{""end_date"":""2027-01-11""}",2027-01-11
mark it done today,edit_task,"{""end_date"":""2027-01-11"",""status"":""complete""}",2027-01-11
start today,edit_task,"{""start_date"":""2027-01-11""}",2027-01-11
kick it off today,edit_task,"{""start_date"":""2027-01-11""}",2027-01-11
starting today,edit_task,"{""start_date"":""2027-01-11""}",2027-01-11
start today end of month,edit_task,"{""start_date"":""2027-01-11"",""end_date"":""2027-01-31""}",2027-01-11
start today assign to mike,edit_task,"{""start_date"":""2027-01-11"",""assignee"":""mike""}",2027-01-11
due tomorrow,edit_task,"{""end_date"":""2027-01-12""}",2027-01-11
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2027-01-12""}",2027-01-11
start tomorrow,edit_task,"{""start_date"":""2027-01-12""}",2027-01-11
kick it off tomorrow,edit_task,"{""start_date"":""2027-01-12""}",2027-01-11
start tomorrow due end of month,edit_task,"{""start_date"":""2027-01-12"",""end_date"":""2027-01-31""}",2027-01-11
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2027-01-12"",""assignee"":""sarah"",""priority"":""p1""}",2027-01-11
start tomorrow mark in progress,edit_task,"{""start_date"":""2027-01-12"",""status"":""in progress""}",2027-01-11
due this friday,edit_task,"{""end_date"":""2027-01-15""}",2027-01-11
needs to be done by friday,edit_task,"{""end_date"":""2027-01-15""}",2027-01-11
wrap it up by friday,edit_task,"{""end_date"":""2027-01-15""}",2027-01-11
due friday assign to carlos,edit_task,"{""end_date"":""2027-01-15"",""assignee"":""carlos""}",2027-01-11
due by end of day friday priority p1,edit_task,"{""end_date"":""2027-01-15"",""priority"":""p1""}",2027-01-11
finish by this friday mark in progress,edit_task,"{""end_date"":""2027-01-15"",""status"":""in progress""}",2027-01-11
start next monday,edit_task,"{""start_date"":""2027-01-18""}",2027-01-11
kick off next monday,edit_task,"{""start_date"":""2027-01-18""}",2027-01-11
start next monday assign to the crew,edit_task,"{""start_date"":""2027-01-18"",""assignee"":""the crew""}",2027-01-11
start next monday end of month,edit_task,"{""start_date"":""2027-01-18"",""end_date"":""2027-01-31""}",2027-01-11
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2027-01-18"",""status"":""in progress"",""priority"":""p2""}",2027-01-11
due next friday,edit_task,"{""end_date"":""2027-01-15""}",2027-01-11
needs to be done by next friday,edit_task,"{""end_date"":""2027-01-15""}",2027-01-11
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2027-01-15"",""assignee"":""omar"",""priority"":""p1""}",2027-01-11
due end of month,edit_task,"{""end_date"":""2027-01-31""}",2027-01-11
needs to be done by end of month,edit_task,"{""end_date"":""2027-01-31""}",2027-01-11
target completion end of month,edit_task,"{""end_date"":""2027-01-31""}",2027-01-11
wrap this up by end of month,edit_task,"{""end_date"":""2027-01-31""}",2027-01-11
due end of month mark in progress,edit_task,"{""end_date"":""2027-01-31"",""status"":""in progress""}",2027-01-11
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2027-01-31"",""assignee"":""the team"",""priority"":""p2""}",2027-01-11
start next monday end of month,edit_task,"{""start_date"":""2027-01-18"",""end_date"":""2027-01-31""}",2027-01-11
start today due end of month assign to mike,edit_task,"{""start_date"":""2027-01-11"",""end_date"":""2027-01-31"",""assignee"":""mike""}",2027-01-11
due end of next month,edit_task,"{""end_date"":""2027-02-28""}",2027-01-11
push end date to end of next month,edit_task,"{""end_date"":""2027-02-28""}",2027-01-11
due end of next month mark on hold,edit_task,"{""end_date"":""2027-02-28"",""status"":""on hold""}",2027-01-11
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2027-02-28"",""status"":""on hold"",""comments"":""budget approval pending""}",2027-01-11
start next week,edit_task,"{""start_date"":""2027-01-18""}",2027-01-11
due next week,edit_task,"{""end_date"":""2027-01-22""}",2027-01-11
start next week end of month,edit_task,"{""start_date"":""2027-01-18"",""end_date"":""2027-01-31""}",2027-01-11
start today end tomorrow,edit_task,"{""start_date"":""2027-01-11"",""end_date"":""2027-01-12""}",2027-01-11
start tomorrow end this friday,edit_task,"{""start_date"":""2027-01-12"",""end_date"":""2027-01-15""}",2027-01-11
start next monday end next friday,edit_task,"{""start_date"":""2027-01-18"",""end_date"":""2027-01-15""}",2027-01-11
start today wrap up by end of next month,edit_task,"{""start_date"":""2027-01-11"",""end_date"":""2027-02-28""}",2027-01-11
due today,edit_task,"{""end_date"":""2027-03-24""}",2027-03-24
needs to be done today,edit_task,"{""end_date"":""2027-03-24""}",2027-03-24
mark it done today,edit_task,"{""end_date"":""2027-03-24"",""status"":""complete""}",2027-03-24
start today,edit_task,"{""start_date"":""2027-03-24""}",2027-03-24
kick it off today,edit_task,"{""start_date"":""2027-03-24""}",2027-03-24
starting today,edit_task,"{""start_date"":""2027-03-24""}",2027-03-24
start today end of month,edit_task,"{""start_date"":""2027-03-24"",""end_date"":""2027-03-31""}",2027-03-24
start today assign to mike,edit_task,"{""start_date"":""2027-03-24"",""assignee"":""mike""}",2027-03-24
due tomorrow,edit_task,"{""end_date"":""2027-03-25""}",2027-03-24
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2027-03-25""}",2027-03-24
start tomorrow,edit_task,"{""start_date"":""2027-03-25""}",2027-03-24
kick it off tomorrow,edit_task,"{""start_date"":""2027-03-25""}",2027-03-24
start tomorrow due end of month,edit_task,"{""start_date"":""2027-03-25"",""end_date"":""2027-03-31""}",2027-03-24
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2027-03-25"",""assignee"":""sarah"",""priority"":""p1""}",2027-03-24
start tomorrow mark in progress,edit_task,"{""start_date"":""2027-03-25"",""status"":""in progress""}",2027-03-24
due this friday,edit_task,"{""end_date"":""2027-03-26""}",2027-03-24
needs to be done by friday,edit_task,"{""end_date"":""2027-03-26""}",2027-03-24
wrap it up by friday,edit_task,"{""end_date"":""2027-03-26""}",2027-03-24
due friday assign to carlos,edit_task,"{""end_date"":""2027-03-26"",""assignee"":""carlos""}",2027-03-24
due by end of day friday priority p1,edit_task,"{""end_date"":""2027-03-26"",""priority"":""p1""}",2027-03-24
finish by this friday mark in progress,edit_task,"{""end_date"":""2027-03-26"",""status"":""in progress""}",2027-03-24
start next monday,edit_task,"{""start_date"":""2027-03-29""}",2027-03-24
kick off next monday,edit_task,"{""start_date"":""2027-03-29""}",2027-03-24
start next monday assign to the crew,edit_task,"{""start_date"":""2027-03-29"",""assignee"":""the crew""}",2027-03-24
start next monday end of month,edit_task,"{""start_date"":""2027-03-29"",""end_date"":""2027-03-31""}",2027-03-24
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2027-03-29"",""status"":""in progress"",""priority"":""p2""}",2027-03-24
due next friday,edit_task,"{""end_date"":""2027-03-26""}",2027-03-24
needs to be done by next friday,edit_task,"{""end_date"":""2027-03-26""}",2027-03-24
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2027-03-26"",""assignee"":""omar"",""priority"":""p1""}",2027-03-24
due end of month,edit_task,"{""end_date"":""2027-03-31""}",2027-03-24
needs to be done by end of month,edit_task,"{""end_date"":""2027-03-31""}",2027-03-24
target completion end of month,edit_task,"{""end_date"":""2027-03-31""}",2027-03-24
wrap this up by end of month,edit_task,"{""end_date"":""2027-03-31""}",2027-03-24
due end of month mark in progress,edit_task,"{""end_date"":""2027-03-31"",""status"":""in progress""}",2027-03-24
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2027-03-31"",""assignee"":""the team"",""priority"":""p2""}",2027-03-24
start next monday end of month,edit_task,"{""start_date"":""2027-03-29"",""end_date"":""2027-03-31""}",2027-03-24
start today due end of month assign to mike,edit_task,"{""start_date"":""2027-03-24"",""end_date"":""2027-03-31"",""assignee"":""mike""}",2027-03-24
due end of next month,edit_task,"{""end_date"":""2027-04-30""}",2027-03-24
push end date to end of next month,edit_task,"{""end_date"":""2027-04-30""}",2027-03-24
due end of next month mark on hold,edit_task,"{""end_date"":""2027-04-30"",""status"":""on hold""}",2027-03-24
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2027-04-30"",""status"":""on hold"",""comments"":""budget approval pending""}",2027-03-24
start next week,edit_task,"{""start_date"":""2027-03-29""}",2027-03-24
due next week,edit_task,"{""end_date"":""2027-04-02""}",2027-03-24
start next week end of month,edit_task,"{""start_date"":""2027-03-29"",""end_date"":""2027-03-31""}",2027-03-24
start today end tomorrow,edit_task,"{""start_date"":""2027-03-24"",""end_date"":""2027-03-25""}",2027-03-24
start tomorrow end this friday,edit_task,"{""start_date"":""2027-03-25"",""end_date"":""2027-03-26""}",2027-03-24
start next monday end next friday,edit_task,"{""start_date"":""2027-03-29"",""end_date"":""2027-03-26""}",2027-03-24
start today wrap up by end of next month,edit_task,"{""start_date"":""2027-03-24"",""end_date"":""2027-04-30""}",2027-03-24
due today,edit_task,"{""end_date"":""2027-05-05""}",2027-05-05
needs to be done today,edit_task,"{""end_date"":""2027-05-05""}",2027-05-05
mark it done today,edit_task,"{""end_date"":""2027-05-05"",""status"":""complete""}",2027-05-05
start today,edit_task,"{""start_date"":""2027-05-05""}",2027-05-05
kick it off today,edit_task,"{""start_date"":""2027-05-05""}",2027-05-05
starting today,edit_task,"{""start_date"":""2027-05-05""}",2027-05-05
start today end of month,edit_task,"{""start_date"":""2027-05-05"",""end_date"":""2027-05-31""}",2027-05-05
start today assign to mike,edit_task,"{""start_date"":""2027-05-05"",""assignee"":""mike""}",2027-05-05
due tomorrow,edit_task,"{""end_date"":""2027-05-06""}",2027-05-05
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2027-05-06""}",2027-05-05
start tomorrow,edit_task,"{""start_date"":""2027-05-06""}",2027-05-05
kick it off tomorrow,edit_task,"{""start_date"":""2027-05-06""}",2027-05-05
start tomorrow due end of month,edit_task,"{""start_date"":""2027-05-06"",""end_date"":""2027-05-31""}",2027-05-05
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2027-05-06"",""assignee"":""sarah"",""priority"":""p1""}",2027-05-05
start tomorrow mark in progress,edit_task,"{""start_date"":""2027-05-06"",""status"":""in progress""}",2027-05-05
due this friday,edit_task,"{""end_date"":""2027-05-07""}",2027-05-05
needs to be done by friday,edit_task,"{""end_date"":""2027-05-07""}",2027-05-05
wrap it up by friday,edit_task,"{""end_date"":""2027-05-07""}",2027-05-05
due friday assign to carlos,edit_task,"{""end_date"":""2027-05-07"",""assignee"":""carlos""}",2027-05-05
due by end of day friday priority p1,edit_task,"{""end_date"":""2027-05-07"",""priority"":""p1""}",2027-05-05
finish by this friday mark in progress,edit_task,"{""end_date"":""2027-05-07"",""status"":""in progress""}",2027-05-05
start next monday,edit_task,"{""start_date"":""2027-05-10""}",2027-05-05
kick off next monday,edit_task,"{""start_date"":""2027-05-10""}",2027-05-05
start next monday assign to the crew,edit_task,"{""start_date"":""2027-05-10"",""assignee"":""the crew""}",2027-05-05
start next monday end of month,edit_task,"{""start_date"":""2027-05-10"",""end_date"":""2027-05-31""}",2027-05-05
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2027-05-10"",""status"":""in progress"",""priority"":""p2""}",2027-05-05
due next friday,edit_task,"{""end_date"":""2027-05-07""}",2027-05-05
needs to be done by next friday,edit_task,"{""end_date"":""2027-05-07""}",2027-05-05
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2027-05-07"",""assignee"":""omar"",""priority"":""p1""}",2027-05-05
due end of month,edit_task,"{""end_date"":""2027-05-31""}",2027-05-05
needs to be done by end of month,edit_task,"{""end_date"":""2027-05-31""}",2027-05-05
target completion end of month,edit_task,"{""end_date"":""2027-05-31""}",2027-05-05
wrap this up by end of month,edit_task,"{""end_date"":""2027-05-31""}",2027-05-05
due end of month mark in progress,edit_task,"{""end_date"":""2027-05-31"",""status"":""in progress""}",2027-05-05
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2027-05-31"",""assignee"":""the team"",""priority"":""p2""}",2027-05-05
start next monday end of month,edit_task,"{""start_date"":""2027-05-10"",""end_date"":""2027-05-31""}",2027-05-05
start today due end of month assign to mike,edit_task,"{""start_date"":""2027-05-05"",""end_date"":""2027-05-31"",""assignee"":""mike""}",2027-05-05
due end of next month,edit_task,"{""end_date"":""2027-06-30""}",2027-05-05
push end date to end of next month,edit_task,"{""end_date"":""2027-06-30""}",2027-05-05
due end of next month mark on hold,edit_task,"{""end_date"":""2027-06-30"",""status"":""on hold""}",2027-05-05
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2027-06-30"",""status"":""on hold"",""comments"":""budget approval pending""}",2027-05-05
start next week,edit_task,"{""start_date"":""2027-05-10""}",2027-05-05
due next week,edit_task,"{""end_date"":""2027-05-14""}",2027-05-05
start next week end of month,edit_task,"{""start_date"":""2027-05-10"",""end_date"":""2027-05-31""}",2027-05-05
start today end tomorrow,edit_task,"{""start_date"":""2027-05-05"",""end_date"":""2027-05-06""}",2027-05-05
start tomorrow end this friday,edit_task,"{""start_date"":""2027-05-06"",""end_date"":""2027-05-07""}",2027-05-05
start next monday end next friday,edit_task,"{""start_date"":""2027-05-10"",""end_date"":""2027-05-07""}",2027-05-05
start today wrap up by end of next month,edit_task,"{""start_date"":""2027-05-05"",""end_date"":""2027-06-30""}",2027-05-05
due today,edit_task,"{""end_date"":""2027-08-11""}",2027-08-11
needs to be done today,edit_task,"{""end_date"":""2027-08-11""}",2027-08-11
mark it done today,edit_task,"{""end_date"":""2027-08-11"",""status"":""complete""}",2027-08-11
start today,edit_task,"{""start_date"":""2027-08-11""}",2027-08-11
kick it off today,edit_task,"{""start_date"":""2027-08-11""}",2027-08-11
starting today,edit_task,"{""start_date"":""2027-08-11""}",2027-08-11
start today end of month,edit_task,"{""start_date"":""2027-08-11"",""end_date"":""2027-08-31""}",2027-08-11
start today assign to mike,edit_task,"{""start_date"":""2027-08-11"",""assignee"":""mike""}",2027-08-11
due tomorrow,edit_task,"{""end_date"":""2027-08-12""}",2027-08-11
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2027-08-12""}",2027-08-11
start tomorrow,edit_task,"{""start_date"":""2027-08-12""}",2027-08-11
kick it off tomorrow,edit_task,"{""start_date"":""2027-08-12""}",2027-08-11
start tomorrow due end of month,edit_task,"{""start_date"":""2027-08-12"",""end_date"":""2027-08-31""}",2027-08-11
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2027-08-12"",""assignee"":""sarah"",""priority"":""p1""}",2027-08-11
start tomorrow mark in progress,edit_task,"{""start_date"":""2027-08-12"",""status"":""in progress""}",2027-08-11
due this friday,edit_task,"{""end_date"":""2027-08-13""}",2027-08-11
needs to be done by friday,edit_task,"{""end_date"":""2027-08-13""}",2027-08-11
wrap it up by friday,edit_task,"{""end_date"":""2027-08-13""}",2027-08-11
due friday assign to carlos,edit_task,"{""end_date"":""2027-08-13"",""assignee"":""carlos""}",2027-08-11
due by end of day friday priority p1,edit_task,"{""end_date"":""2027-08-13"",""priority"":""p1""}",2027-08-11
finish by this friday mark in progress,edit_task,"{""end_date"":""2027-08-13"",""status"":""in progress""}",2027-08-11
start next monday,edit_task,"{""start_date"":""2027-08-16""}",2027-08-11
kick off next monday,edit_task,"{""start_date"":""2027-08-16""}",2027-08-11
start next monday assign to the crew,edit_task,"{""start_date"":""2027-08-16"",""assignee"":""the crew""}",2027-08-11
start next monday end of month,edit_task,"{""start_date"":""2027-08-16"",""end_date"":""2027-08-31""}",2027-08-11
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2027-08-16"",""status"":""in progress"",""priority"":""p2""}",2027-08-11
due next friday,edit_task,"{""end_date"":""2027-08-13""}",2027-08-11
needs to be done by next friday,edit_task,"{""end_date"":""2027-08-13""}",2027-08-11
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2027-08-13"",""assignee"":""omar"",""priority"":""p1""}",2027-08-11
due end of month,edit_task,"{""end_date"":""2027-08-31""}",2027-08-11
needs to be done by end of month,edit_task,"{""end_date"":""2027-08-31""}",2027-08-11
target completion end of month,edit_task,"{""end_date"":""2027-08-31""}",2027-08-11
wrap this up by end of month,edit_task,"{""end_date"":""2027-08-31""}",2027-08-11
due end of month mark in progress,edit_task,"{""end_date"":""2027-08-31"",""status"":""in progress""}",2027-08-11
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2027-08-31"",""assignee"":""the team"",""priority"":""p2""}",2027-08-11
start next monday end of month,edit_task,"{""start_date"":""2027-08-16"",""end_date"":""2027-08-31""}",2027-08-11
start today due end of month assign to mike,edit_task,"{""start_date"":""2027-08-11"",""end_date"":""2027-08-31"",""assignee"":""mike""}",2027-08-11
due end of next month,edit_task,"{""end_date"":""2027-09-30""}",2027-08-11
push end date to end of next month,edit_task,"{""end_date"":""2027-09-30""}",2027-08-11
due end of next month mark on hold,edit_task,"{""end_date"":""2027-09-30"",""status"":""on hold""}",2027-08-11
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2027-09-30"",""status"":""on hold"",""comments"":""budget approval pending""}",2027-08-11
start next week,edit_task,"{""start_date"":""2027-08-16""}",2027-08-11
due next week,edit_task,"{""end_date"":""2027-08-20""}",2027-08-11
start next week end of month,edit_task,"{""start_date"":""2027-08-16"",""end_date"":""2027-08-31""}",2027-08-11
start today end tomorrow,edit_task,"{""start_date"":""2027-08-11"",""end_date"":""2027-08-12""}",2027-08-11
start tomorrow end this friday,edit_task,"{""start_date"":""2027-08-12"",""end_date"":""2027-08-13""}",2027-08-11
start next monday end next friday,edit_task,"{""start_date"":""2027-08-16"",""end_date"":""2027-08-13""}",2027-08-11
start today wrap up by end of next month,edit_task,"{""start_date"":""2027-08-11"",""end_date"":""2027-09-30""}",2027-08-11
due today,edit_task,"{""end_date"":""2027-10-27""}",2027-10-27
needs to be done today,edit_task,"{""end_date"":""2027-10-27""}",2027-10-27
mark it done today,edit_task,"{""end_date"":""2027-10-27"",""status"":""complete""}",2027-10-27
start today,edit_task,"{""start_date"":""2027-10-27""}",2027-10-27
kick it off today,edit_task,"{""start_date"":""2027-10-27""}",2027-10-27
starting today,edit_task,"{""start_date"":""2027-10-27""}",2027-10-27
start today end of month,edit_task,"{""start_date"":""2027-10-27"",""end_date"":""2027-10-31""}",2027-10-27
start today assign to mike,edit_task,"{""start_date"":""2027-10-27"",""assignee"":""mike""}",2027-10-27
due tomorrow,edit_task,"{""end_date"":""2027-10-28""}",2027-10-27
needs to be wrapped up by tomorrow,edit_task,"{""end_date"":""2027-10-28""}",2027-10-27
start tomorrow,edit_task,"{""start_date"":""2027-10-28""}",2027-10-27
kick it off tomorrow,edit_task,"{""start_date"":""2027-10-28""}",2027-10-27
start tomorrow due end of month,edit_task,"{""start_date"":""2027-10-28"",""end_date"":""2027-10-31""}",2027-10-27
due tomorrow assign to sarah priority p1,edit_task,"{""end_date"":""2027-10-28"",""assignee"":""sarah"",""priority"":""p1""}",2027-10-27
start tomorrow mark in progress,edit_task,"{""start_date"":""2027-10-28"",""status"":""in progress""}",2027-10-27
due this friday,edit_task,"{""end_date"":""2027-10-29""}",2027-10-27
needs to be done by friday,edit_task,"{""end_date"":""2027-10-29""}",2027-10-27
wrap it up by friday,edit_task,"{""end_date"":""2027-10-29""}",2027-10-27
due friday assign to carlos,edit_task,"{""end_date"":""2027-10-29"",""assignee"":""carlos""}",2027-10-27
due by end of day friday priority p1,edit_task,"{""end_date"":""2027-10-29"",""priority"":""p1""}",2027-10-27
finish by this friday mark in progress,edit_task,"{""end_date"":""2027-10-29"",""status"":""in progress""}",2027-10-27
start next monday,edit_task,"{""start_date"":""2027-11-01""}",2027-10-27
kick off next monday,edit_task,"{""start_date"":""2027-11-01""}",2027-10-27
start next monday assign to the crew,edit_task,"{""start_date"":""2027-11-01"",""assignee"":""the crew""}",2027-10-27
start next monday end of month,edit_task,"{""start_date"":""2027-11-01"",""end_date"":""2027-10-31""}",2027-10-27
start next monday mark in progress priority p2,edit_task,"{""start_date"":""2027-11-01"",""status"":""in progress"",""priority"":""p2""}",2027-10-27
due next friday,edit_task,"{""end_date"":""2027-10-29""}",2027-10-27
needs to be done by next friday,edit_task,"{""end_date"":""2027-10-29""}",2027-10-27
due next friday assign to omar priority p1,edit_task,"{""end_date"":""2027-10-29"",""assignee"":""omar"",""priority"":""p1""}",2027-10-27
due end of month,edit_task,"{""end_date"":""2027-10-31""}",2027-10-27
needs to be done by end of month,edit_task,"{""end_date"":""2027-10-31""}",2027-10-27
target completion end of month,edit_task,"{""end_date"":""2027-10-31""}",2027-10-27
wrap this up by end of month,edit_task,"{""end_date"":""2027-10-31""}",2027-10-27
due end of month mark in progress,edit_task,"{""end_date"":""2027-10-31"",""status"":""in progress""}",2027-10-27
due end of month assign to the team priority p2,edit_task,"{""end_date"":""2027-10-31"",""assignee"":""the team"",""priority"":""p2""}",2027-10-27
start next monday end of month,edit_task,"{""start_date"":""2027-11-01"",""end_date"":""2027-10-31""}",2027-10-27
start today due end of month assign to mike,edit_task,"{""start_date"":""2027-10-27"",""end_date"":""2027-10-31"",""assignee"":""mike""}",2027-10-27
due end of next month,edit_task,"{""end_date"":""2027-11-30""}",2027-10-27
push end date to end of next month,edit_task,"{""end_date"":""2027-11-30""}",2027-10-27
due end of next month mark on hold,edit_task,"{""end_date"":""2027-11-30"",""status"":""on hold""}",2027-10-27
push the due date to end of next month mark on hold add comment budget approval pending,edit_task,"{""end_date"":""2027-11-30"",""status"":""on hold"",""comments"":""budget approval pending""}",2027-10-27
start next week,edit_task,"{""start_date"":""2027-11-01""}",2027-10-27
due next week,edit_task,"{""end_date"":""2027-11-05""}",2027-10-27
start next week end of month,edit_task,"{""start_date"":""2027-11-01"",""end_date"":""2027-10-31""}",2027-10-27
start today end tomorrow,edit_task,"{""start_date"":""2027-10-27"",""end_date"":""2027-10-28""}",2027-10-27
start tomorrow end this friday,edit_task,"{""start_date"":""2027-10-28"",""end_date"":""2027-10-29""}",2027-10-27
start next monday end next friday,edit_task,"{""start_date"":""2027-11-01"",""end_date"":""2027-10-29""}",2027-10-27
start today wrap up by end of next month,edit_task,"{""start_date"":""2027-10-27"",""end_date"":""2027-11-30""}",2027-10-27
|