File size: 177,838 Bytes
5a40387 |
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 |
skill,intent,utterance
ovos-skill-alerts,missed_alerts,"miss alerts"
ovos-skill-alerts,missed_alerts,"miss alarms"
ovos-skill-alerts,missed_alerts,"miss timers"
ovos-skill-alerts,missed_alerts,"miss reminders"
ovos-skill-alerts,missed_alerts,"miss events"
ovos-skill-alerts,missed_alerts,"miss alert"
ovos-skill-alerts,missed_alerts,"miss alarm"
ovos-skill-alerts,missed_alerts,"miss timer"
ovos-skill-alerts,missed_alerts,"miss reminder"
ovos-skill-alerts,missed_alerts,"miss event"
ovos-skill-alerts,missed_alerts,"miss any alerts"
ovos-skill-alerts,missed_alerts,"miss any alarms"
ovos-skill-alerts,missed_alerts,"miss any timers"
ovos-skill-alerts,missed_alerts,"miss any reminders"
ovos-skill-alerts,missed_alerts,"miss any events"
ovos-skill-alerts,missed_alerts,"miss any alert"
ovos-skill-alerts,missed_alerts,"miss any alarm"
ovos-skill-alerts,missed_alerts,"miss any timer"
ovos-skill-alerts,missed_alerts,"miss any reminder"
ovos-skill-alerts,missed_alerts,"miss any event"
ovos-skill-alerts,missed_alerts,"miss an alerts"
ovos-skill-alerts,missed_alerts,"miss an alarms"
ovos-skill-alerts,missed_alerts,"miss an timers"
ovos-skill-alerts,missed_alerts,"miss an reminders"
ovos-skill-alerts,missed_alerts,"miss an events"
ovos-skill-alerts,missed_alerts,"miss an alert"
ovos-skill-alerts,missed_alerts,"miss an alarm"
ovos-skill-alerts,missed_alerts,"miss an timer"
ovos-skill-alerts,missed_alerts,"miss an reminder"
ovos-skill-alerts,missed_alerts,"miss an event"
ovos-skill-alerts,missed_alerts,"miss a alerts"
ovos-skill-alerts,missed_alerts,"miss a alarms"
ovos-skill-alerts,missed_alerts,"miss a timers"
ovos-skill-alerts,missed_alerts,"miss a reminders"
ovos-skill-alerts,missed_alerts,"miss a events"
ovos-skill-alerts,missed_alerts,"miss a alert"
ovos-skill-alerts,missed_alerts,"miss a alarm"
ovos-skill-alerts,missed_alerts,"miss a timer"
ovos-skill-alerts,missed_alerts,"miss a reminder"
ovos-skill-alerts,missed_alerts,"miss a event"
ovos-skill-alerts,missed_alerts,"did i miss alerts"
ovos-skill-alerts,missed_alerts,"did i miss alarms"
ovos-skill-alerts,missed_alerts,"did i miss timers"
ovos-skill-alerts,missed_alerts,"did i miss reminders"
ovos-skill-alerts,missed_alerts,"did i miss events"
ovos-skill-alerts,missed_alerts,"did i miss alert"
ovos-skill-alerts,missed_alerts,"did i miss alarm"
ovos-skill-alerts,missed_alerts,"did i miss timer"
ovos-skill-alerts,missed_alerts,"did i miss reminder"
ovos-skill-alerts,missed_alerts,"did i miss event"
ovos-skill-alerts,missed_alerts,"did i miss any alerts"
ovos-skill-alerts,missed_alerts,"did i miss any alarms"
ovos-skill-alerts,missed_alerts,"did i miss any timers"
ovos-skill-alerts,missed_alerts,"did i miss any reminders"
ovos-skill-alerts,missed_alerts,"did i miss any events"
ovos-skill-alerts,missed_alerts,"did i miss any alert"
ovos-skill-alerts,missed_alerts,"did i miss any alarm"
ovos-skill-alerts,missed_alerts,"did i miss any timer"
ovos-skill-alerts,missed_alerts,"did i miss any reminder"
ovos-skill-alerts,missed_alerts,"did i miss any event"
ovos-skill-alerts,missed_alerts,"did i miss an alerts"
ovos-skill-alerts,missed_alerts,"did i miss an alarms"
ovos-skill-alerts,missed_alerts,"did i miss an timers"
ovos-skill-alerts,missed_alerts,"did i miss an reminders"
ovos-skill-alerts,missed_alerts,"did i miss an events"
ovos-skill-alerts,missed_alerts,"did i miss an alert"
ovos-skill-alerts,missed_alerts,"did i miss an alarm"
ovos-skill-alerts,missed_alerts,"did i miss an timer"
ovos-skill-alerts,missed_alerts,"did i miss an reminder"
ovos-skill-alerts,missed_alerts,"did i miss an event"
ovos-skill-alerts,missed_alerts,"did i miss a alerts"
ovos-skill-alerts,missed_alerts,"did i miss a alarms"
ovos-skill-alerts,missed_alerts,"did i miss a timers"
ovos-skill-alerts,missed_alerts,"did i miss a reminders"
ovos-skill-alerts,missed_alerts,"did i miss a events"
ovos-skill-alerts,missed_alerts,"did i miss a alert"
ovos-skill-alerts,missed_alerts,"did i miss a alarm"
ovos-skill-alerts,missed_alerts,"did i miss a timer"
ovos-skill-alerts,missed_alerts,"did i miss a reminder"
ovos-skill-alerts,missed_alerts,"did i miss a event"
ovos-skill-alerts,missed_alerts,"missed alerts"
ovos-skill-alerts,missed_alerts,"missed alarms"
ovos-skill-alerts,missed_alerts,"missed timers"
ovos-skill-alerts,missed_alerts,"missed reminders"
ovos-skill-alerts,missed_alerts,"missed events"
ovos-skill-alerts,missed_alerts,"missed alert"
ovos-skill-alerts,missed_alerts,"missed alarm"
ovos-skill-alerts,missed_alerts,"missed timer"
ovos-skill-alerts,missed_alerts,"missed reminder"
ovos-skill-alerts,missed_alerts,"missed event"
ovos-skill-alerts,missed_alerts,"missed any alerts"
ovos-skill-alerts,missed_alerts,"missed any alarms"
ovos-skill-alerts,missed_alerts,"missed any timers"
ovos-skill-alerts,missed_alerts,"missed any reminders"
ovos-skill-alerts,missed_alerts,"missed any events"
ovos-skill-alerts,missed_alerts,"missed any alert"
ovos-skill-alerts,missed_alerts,"missed any alarm"
ovos-skill-alerts,missed_alerts,"missed any timer"
ovos-skill-alerts,missed_alerts,"missed any reminder"
ovos-skill-alerts,missed_alerts,"missed any event"
ovos-skill-alerts,missed_alerts,"missed an alerts"
ovos-skill-alerts,missed_alerts,"missed an alarms"
ovos-skill-alerts,missed_alerts,"missed an timers"
ovos-skill-alerts,missed_alerts,"missed an reminders"
ovos-skill-alerts,missed_alerts,"missed an events"
ovos-skill-alerts,missed_alerts,"missed an alert"
ovos-skill-alerts,missed_alerts,"missed an alarm"
ovos-skill-alerts,missed_alerts,"missed an timer"
ovos-skill-alerts,missed_alerts,"missed an reminder"
ovos-skill-alerts,missed_alerts,"missed an event"
ovos-skill-alerts,missed_alerts,"missed a alerts"
ovos-skill-alerts,missed_alerts,"missed a alarms"
ovos-skill-alerts,missed_alerts,"missed a timers"
ovos-skill-alerts,missed_alerts,"missed a reminders"
ovos-skill-alerts,missed_alerts,"missed a events"
ovos-skill-alerts,missed_alerts,"missed a alert"
ovos-skill-alerts,missed_alerts,"missed a alarm"
ovos-skill-alerts,missed_alerts,"missed a timer"
ovos-skill-alerts,missed_alerts,"missed a reminder"
ovos-skill-alerts,missed_alerts,"missed a event"
ovos-skill-alerts,missed_alerts,"have i missed alerts"
ovos-skill-alerts,missed_alerts,"have i missed alarms"
ovos-skill-alerts,missed_alerts,"have i missed timers"
ovos-skill-alerts,missed_alerts,"have i missed reminders"
ovos-skill-alerts,missed_alerts,"have i missed events"
ovos-skill-alerts,missed_alerts,"have i missed alert"
ovos-skill-alerts,missed_alerts,"have i missed alarm"
ovos-skill-alerts,missed_alerts,"have i missed timer"
ovos-skill-alerts,missed_alerts,"have i missed reminder"
ovos-skill-alerts,missed_alerts,"have i missed event"
ovos-skill-alerts,missed_alerts,"have i missed any alerts"
ovos-skill-alerts,missed_alerts,"have i missed any alarms"
ovos-skill-alerts,missed_alerts,"have i missed any timers"
ovos-skill-alerts,missed_alerts,"have i missed any reminders"
ovos-skill-alerts,missed_alerts,"have i missed any events"
ovos-skill-alerts,missed_alerts,"have i missed any alert"
ovos-skill-alerts,missed_alerts,"have i missed any alarm"
ovos-skill-alerts,missed_alerts,"have i missed any timer"
ovos-skill-alerts,missed_alerts,"have i missed any reminder"
ovos-skill-alerts,missed_alerts,"have i missed any event"
ovos-skill-alerts,missed_alerts,"have i missed an alerts"
ovos-skill-alerts,missed_alerts,"have i missed an alarms"
ovos-skill-alerts,missed_alerts,"have i missed an timers"
ovos-skill-alerts,missed_alerts,"have i missed an reminders"
ovos-skill-alerts,missed_alerts,"have i missed an events"
ovos-skill-alerts,missed_alerts,"have i missed an alert"
ovos-skill-alerts,missed_alerts,"have i missed an alarm"
ovos-skill-alerts,missed_alerts,"have i missed an timer"
ovos-skill-alerts,missed_alerts,"have i missed an reminder"
ovos-skill-alerts,missed_alerts,"have i missed an event"
ovos-skill-alerts,missed_alerts,"have i missed a alerts"
ovos-skill-alerts,missed_alerts,"have i missed a alarms"
ovos-skill-alerts,missed_alerts,"have i missed a timers"
ovos-skill-alerts,missed_alerts,"have i missed a reminders"
ovos-skill-alerts,missed_alerts,"have i missed a events"
ovos-skill-alerts,missed_alerts,"have i missed a alert"
ovos-skill-alerts,missed_alerts,"have i missed a alarm"
ovos-skill-alerts,missed_alerts,"have i missed a timer"
ovos-skill-alerts,missed_alerts,"have i missed a reminder"
ovos-skill-alerts,missed_alerts,"have i missed a event"
ovos-skill-alerts,missed_alerts,"which alerts have i missed"
ovos-skill-alerts,missed_alerts,"which alerts did i miss"
ovos-skill-alerts,missed_alerts,"which alarms have i missed"
ovos-skill-alerts,missed_alerts,"which alarms did i miss"
ovos-skill-alerts,missed_alerts,"which timers have i missed"
ovos-skill-alerts,missed_alerts,"which timers did i miss"
ovos-skill-alerts,missed_alerts,"which reminders have i missed"
ovos-skill-alerts,missed_alerts,"which reminders did i miss"
ovos-skill-alerts,missed_alerts,"which events have i missed"
ovos-skill-alerts,missed_alerts,"which events did i miss"
ovos-skill-alerts,missed_alerts,"which alert have i missed"
ovos-skill-alerts,missed_alerts,"which alert did i miss"
ovos-skill-alerts,missed_alerts,"which alarm have i missed"
ovos-skill-alerts,missed_alerts,"which alarm did i miss"
ovos-skill-alerts,missed_alerts,"which timer have i missed"
ovos-skill-alerts,missed_alerts,"which timer did i miss"
ovos-skill-alerts,missed_alerts,"which reminder have i missed"
ovos-skill-alerts,missed_alerts,"which reminder did i miss"
ovos-skill-alerts,missed_alerts,"which event have i missed"
ovos-skill-alerts,missed_alerts,"which event did i miss"
ovos-skill-alerts,missed_alerts,"what alerts have i missed"
ovos-skill-alerts,missed_alerts,"what alerts did i miss"
ovos-skill-alerts,missed_alerts,"what alarms have i missed"
ovos-skill-alerts,missed_alerts,"what alarms did i miss"
ovos-skill-alerts,missed_alerts,"what timers have i missed"
ovos-skill-alerts,missed_alerts,"what timers did i miss"
ovos-skill-alerts,missed_alerts,"what reminders have i missed"
ovos-skill-alerts,missed_alerts,"what reminders did i miss"
ovos-skill-alerts,missed_alerts,"what events have i missed"
ovos-skill-alerts,missed_alerts,"what events did i miss"
ovos-skill-alerts,missed_alerts,"what alert have i missed"
ovos-skill-alerts,missed_alerts,"what alert did i miss"
ovos-skill-alerts,missed_alerts,"what alarm have i missed"
ovos-skill-alerts,missed_alerts,"what alarm did i miss"
ovos-skill-alerts,missed_alerts,"what timer have i missed"
ovos-skill-alerts,missed_alerts,"what timer did i miss"
ovos-skill-alerts,missed_alerts,"what reminder have i missed"
ovos-skill-alerts,missed_alerts,"what reminder did i miss"
ovos-skill-alerts,missed_alerts,"what event have i missed"
ovos-skill-alerts,missed_alerts,"what event did i miss"
ovos-skill-ip,what.ssid,"what wifi network are you connected to"
ovos-skill-ip,what.ssid,"what wifi network are you using"
ovos-skill-ip,what.ssid,"what wifi network are you on"
ovos-skill-ip,what.ssid,"what wifi are you connected to"
ovos-skill-ip,what.ssid,"what wifi are you using"
ovos-skill-ip,what.ssid,"what wifi are you on"
ovos-skill-ip,what.ssid,"what ssid are you connected to"
ovos-skill-ip,what.ssid,"what ssid are you using"
ovos-skill-ip,what.ssid,"what ssid are you on"
ovos-skill-ip,what.ssid,"what network are you connected to"
ovos-skill-ip,what.ssid,"what network are you using"
ovos-skill-ip,what.ssid,"what network are you on"
ovos-skill-application-launcher,launch,"launch {application}"
ovos-skill-application-launcher,launch,"open {application}"
ovos-skill-application-launcher,launch,"run {application}"
ovos-skill-confucius-quotes,who,"who is confucius"
ovos-skill-confucius-quotes,who,"who was confucius"
ovos-skill-days-in-history,deaths_in_history,"who died today in history"
ovos-skill-days-in-history,births_in_history,"who was born today in history"
ovos-skill-days-in-history,today_in_history,"this day in history"
ovos-skill-days-in-history,today_in_history,"this date in history"
ovos-skill-days-in-history,today_in_history,"today in history"
ovos-skill-days-in-history,today_in_history,"what happened this day"
ovos-skill-days-in-history,today_in_history,"what happened this day in history"
ovos-skill-days-in-history,today_in_history,"what happened this date"
ovos-skill-days-in-history,today_in_history,"what happened this date in history"
ovos-skill-days-in-history,today_in_history,"what happened today"
ovos-skill-days-in-history,today_in_history,"what happened today in history"
ovos-skill-days-in-history,today_in_history,"what historical events happened this day"
ovos-skill-days-in-history,today_in_history,"what historical events happened this day in history"
ovos-skill-days-in-history,today_in_history,"what historical events happened this date"
ovos-skill-days-in-history,today_in_history,"what historical events happened this date in history"
ovos-skill-days-in-history,today_in_history,"what historical events happened today"
ovos-skill-days-in-history,today_in_history,"what historical events happened today in history"
ovos-skill-days-in-history,today_in_history,"tell me about happened this day"
ovos-skill-days-in-history,today_in_history,"tell me about happened this day in history"
ovos-skill-days-in-history,today_in_history,"tell me about happened this date"
ovos-skill-days-in-history,today_in_history,"tell me about happened this date in history"
ovos-skill-days-in-history,today_in_history,"tell me about happened today"
ovos-skill-days-in-history,today_in_history,"tell me about happened today in history"
ovos-skill-days-in-history,today_in_history,"tell me about historical events happened this day"
ovos-skill-days-in-history,today_in_history,"tell me about historical events happened this day in history"
ovos-skill-days-in-history,today_in_history,"tell me about historical events happened this date"
ovos-skill-days-in-history,today_in_history,"tell me about historical events happened this date in history"
ovos-skill-days-in-history,today_in_history,"tell me about historical events happened today"
ovos-skill-days-in-history,today_in_history,"tell me about historical events happened today in history"
ovos-skill-days-in-history,today_in_history,"what happened on {date}"
ovos-skill-days-in-history,today_in_history,"what happened on {date} in history"
ovos-skill-days-in-history,today_in_history,"what historical events happened on {date}"
ovos-skill-days-in-history,today_in_history,"what historical events happened on {date} in history"
ovos-skill-days-in-history,today_in_history,"tell me about happened on {date}"
ovos-skill-days-in-history,today_in_history,"tell me about happened on {date} in history"
ovos-skill-days-in-history,today_in_history,"tell me about historical events happened on {date}"
ovos-skill-days-in-history,today_in_history,"tell me about historical events happened on {date} in history"
ovos-skill-dictation,start_dictation,"start dictation"
ovos-skill-dictation,start_dictation,"begin dictation"
ovos-skill-dictation,start_dictation,"initiate dictation"
ovos-skill-dictation,start_dictation,"start dictation named {name}"
ovos-skill-dictation,start_dictation,"begin dictation named {name}"
ovos-skill-dictation,start_dictation,"initiate dictation named {name}"
ovos-skill-dictation,start_dictation,"start saving to text"
ovos-skill-dictation,start_dictation,"begin saving to text"
ovos-skill-dictation,start_dictation,"initiate saving to text"
ovos-skill-dictation,start_dictation,"enable dictation mode"
ovos-skill-dictation,start_dictation,"enable text transcription"
ovos-skill-dictation,start_dictation,"activate dictation"
ovos-skill-dictation,start_dictation,"activate text transcription"
ovos-skill-dictation,start_dictation,"start taking notes"
ovos-skill-dictation,start_dictation,"begin taking notes"
ovos-skill-dictation,start_dictation,"initiate note-taking"
ovos-skill-dictation,start_dictation,"start recording text"
ovos-skill-dictation,start_dictation,"begin recording text"
ovos-skill-dictation,start_dictation,"initiate recording text"
ovos-skill-dictation,start_dictation,"start capturing text"
ovos-skill-dictation,start_dictation,"begin capturing text"
ovos-skill-dictation,start_dictation,"initiate capturing text"
ovos-skill-dictation,start_dictation,"start dictation with name {name}"
ovos-skill-dictation,start_dictation,"begin dictation with name {name}"
ovos-skill-dictation,start_dictation,"initiate dictation with name {name}"
ovos-skill-dictation,start_dictation,"start taking notes named {name}"
ovos-skill-dictation,start_dictation,"begin taking notes named {name}"
ovos-skill-dictation,start_dictation,"initiate note-taking named {name}"
ovos-skill-dictation,start_dictation,"start recording text as {name}"
ovos-skill-dictation,start_dictation,"begin recording text as {name}"
ovos-skill-dictation,start_dictation,"initiate recording text as {name}"
ovos-skill-dictation,start_dictation,"start capturing text named {name}"
ovos-skill-dictation,start_dictation,"begin capturing text named {name}"
ovos-skill-dictation,start_dictation,"initiate capturing text named {name}"
ovos-skill-dictation,start_dictation,"enable dictation with name {name}"
ovos-skill-dictation,start_dictation,"activate dictation with name {name}"
ovos-skill-dictation,start_dictation,"enable text transcription with name {name}"
ovos-skill-dictation,start_dictation,"activate text transcription with name {name}"
ovos-skill-dictation,start_dictation,"let's start dictation"
ovos-skill-dictation,start_dictation,"let's begin dictation"
ovos-skill-dictation,start_dictation,"let's initiate dictation"
ovos-skill-dictation,start_dictation,"let's start dictation named {name}"
ovos-skill-dictation,start_dictation,"let's begin dictation named {name}"
ovos-skill-dictation,start_dictation,"let's initiate dictation named {name}"
ovos-skill-dictation,start_dictation,"let's start saving to text"
ovos-skill-dictation,start_dictation,"let's begin saving to text"
ovos-skill-dictation,start_dictation,"let's initiate saving to text"
ovos-skill-dictation,start_dictation,"let's enable dictation mode"
ovos-skill-dictation,start_dictation,"let's enable text transcription"
ovos-skill-dictation,start_dictation,"can you start dictation"
ovos-skill-dictation,start_dictation,"can we begin dictation"
ovos-skill-dictation,start_dictation,"can you initiate dictation"
ovos-skill-dictation,start_dictation,"can you start dictation named {name}"
ovos-skill-dictation,start_dictation,"can we begin dictation named {name}"
ovos-skill-dictation,start_dictation,"can you initiate dictation named {name}"
ovos-skill-dictation,start_dictation,"can you start saving to text"
ovos-skill-dictation,start_dictation,"can we begin saving to text"
ovos-skill-dictation,start_dictation,"can you initiate saving to text"
ovos-skill-dictation,start_dictation,"can you enable dictation mode"
ovos-skill-dictation,start_dictation,"can you enable text transcription"
ovos-skill-dictation,start_dictation,"start transcribing"
ovos-skill-dictation,start_dictation,"begin transcribing"
ovos-skill-dictation,start_dictation,"initiate transcribing"
ovos-skill-dictation,start_dictation,"start transcribing as {name}"
ovos-skill-dictation,start_dictation,"begin transcribing as {name}"
ovos-skill-dictation,start_dictation,"initiate transcribing as {name}"
ovos-skill-dictation,start_dictation,"start taking dictation"
ovos-skill-dictation,start_dictation,"begin taking dictation"
ovos-skill-dictation,start_dictation,"initiate taking dictation"
ovos-skill-dictation,start_dictation,"start taking dictation named {name}"
ovos-skill-dictation,start_dictation,"begin taking dictation named {name}"
ovos-skill-dictation,start_dictation,"initiate taking dictation named {name}"
ovos-skill-dictation,start_dictation,"start writing text"
ovos-skill-dictation,start_dictation,"begin writing text"
ovos-skill-dictation,start_dictation,"initiate writing text"
ovos-skill-dictation,start_dictation,"start writing text as {name}"
ovos-skill-dictation,start_dictation,"begin writing text as {name}"
ovos-skill-dictation,start_dictation,"initiate writing text as {name}"
ovos-skill-dictation,start_dictation,"start text capture"
ovos-skill-dictation,start_dictation,"begin text capture"
ovos-skill-dictation,start_dictation,"initiate text capture"
ovos-skill-dictation,start_dictation,"start text capture named {name}"
ovos-skill-dictation,start_dictation,"begin text capture named {name}"
ovos-skill-dictation,start_dictation,"initiate text capture named {name}"
ovos-skill-dictation,start_dictation,"record text"
ovos-skill-dictation,start_dictation,"record text as {name}"
ovos-skill-dictation,start_dictation,"record text now"
ovos-skill-dictation,start_dictation,"record text as {name} now"
ovos-skill-dictation,start_dictation,"record text named {name}"
ovos-skill-dictation,start_dictation,"record text now named {name}"
ovos-skill-dictation,start_dictation,"record text as {name} now please"
ovos-skill-dictation,start_dictation,"record text named {name} please"
ovos-skill-dictation,start_dictation,"record text now please"
ovos-skill-dictation,start_dictation,"record text please"
ovos-skill-dictation,start_dictation,"record text now please named {name}"
ovos-skill-dictation,start_dictation,"record text please named {name}"
ovos-skill-dictation,start_dictation,"begin note-taking"
ovos-skill-dictation,start_dictation,"begin note-taking named {name}"
ovos-skill-dictation,start_dictation,"begin note-taking as {name}"
ovos-skill-dictation,start_dictation,"begin note-taking now"
ovos-skill-dictation,start_dictation,"begin note-taking now named {name}"
ovos-skill-dictation,start_dictation,"begin note-taking named {name} please"
ovos-skill-dictation,start_dictation,"begin note-taking now please"
ovos-skill-dictation,start_dictation,"begin note-taking please"
ovos-skill-dictation,start_dictation,"begin note-taking now please named {name}"
ovos-skill-dictation,start_dictation,"begin note-taking please named {name}"
ovos-skill-dictation,start_dictation,"initiate note-taking"
ovos-skill-dictation,start_dictation,"initiate note-taking named {name}"
ovos-skill-dictation,start_dictation,"initiate note-taking as {name}"
ovos-skill-dictation,start_dictation,"initiate note-taking now"
ovos-skill-dictation,start_dictation,"initiate note-taking now named {name}"
ovos-skill-dictation,start_dictation,"initiate note-taking named {name} please"
ovos-skill-dictation,start_dictation,"initiate note-taking now please"
ovos-skill-dictation,start_dictation,"initiate note-taking please"
ovos-skill-dictation,start_dictation,"initiate note-taking now please named {name}"
ovos-skill-dictation,start_dictation,"initiate note-taking please named {name}"
ovos-skill-dictation,start_dictation,"begin transcribing text"
ovos-skill-dictation,start_dictation,"start capturing text as {name}"
ovos-skill-dictation,start_dictation,"start jotting down notes"
ovos-skill-dictation,start_dictation,"initiate note recording"
ovos-skill-dictation,start_dictation,"enable speech-to-text mode"
ovos-skill-dictation,start_dictation,"activate text capturing"
ovos-skill-dictation,start_dictation,"start typing from voice"
ovos-skill-dictation,start_dictation,"begin textual transcription"
ovos-skill-dictation,start_dictation,"initiate text dictation"
ovos-skill-dictation,start_dictation,"start textual note-taking"
ovos-skill-dictation,start_dictation,"begin recording words as {name}"
ovos-skill-dictation,start_dictation,"enable transcription feature"
ovos-skill-dictation,start_dictation,"activate text capturing mode"
ovos-skill-dictation,start_dictation,"start saving spoken words"
ovos-skill-dictation,start_dictation,"begin text transcript creation"
ovos-skill-dictation,start_dictation,"initiate speech-to-text conversion"
ovos-skill-dictation,start_dictation,"start text transcription process"
ovos-skill-dictation,start_dictation,"begin textual documentation"
ovos-skill-dictation,start_dictation,"initiate note-making"
ovos-skill-dictation,start_dictation,"start transcribing audio as {name}"
ovos-skill-dictation,start_dictation,"begin converting speech to text"
ovos-skill-dictation,start_dictation,"initiate voice-to-text recording"
ovos-skill-dictation,start_dictation,"start textual content generation"
ovos-skill-dictation,start_dictation,"begin note compilation"
ovos-skill-dictation,start_dictation,"initiate text capturing as {name}"
ovos-skill-dictation,start_dictation,"start recording verbal information"
ovos-skill-dictation,start_dictation,"begin text transcription named {name}"
ovos-skill-dictation,start_dictation,"initiate voice-to-text conversion named {name}"
ovos-skill-dictation,start_dictation,"start note-taking with the name {name}"
ovos-skill-dictation,start_dictation,"begin note compilation named {name}"
ovos-skill-dictation,start_dictation,"initiate text capturing with the name {name}"
ovos-skill-dictation,start_dictation,"activate text transcription mode with the name {name}"
ovos-skill-dictation,start_dictation,"enable dictation mode for {name}"
ovos-skill-dictation,start_dictation,"activate voice-to-text recording as {name}"
ovos-skill-dictation,stop_dictation,"stop dictation"
ovos-skill-dictation,stop_dictation,"end dictation"
ovos-skill-dictation,stop_dictation,"terminate dictation"
ovos-skill-dictation,stop_dictation,"cancel dictation"
ovos-skill-dictation,stop_dictation,"stop transcription"
ovos-skill-dictation,stop_dictation,"end transcription"
ovos-skill-dictation,stop_dictation,"terminate transcription"
ovos-skill-dictation,stop_dictation,"cancel transcription"
ovos-skill-dictation,stop_dictation,"disable dictation mode"
ovos-skill-dictation,stop_dictation,"disable text transcription"
ovos-skill-dictation,stop_dictation,"deactivate dictation"
ovos-skill-dictation,stop_dictation,"deactivate text transcription"
ovos-skill-dictation,stop_dictation,"stop taking notes"
ovos-skill-dictation,stop_dictation,"end note-taking"
ovos-skill-dictation,stop_dictation,"terminate note-taking"
ovos-skill-dictation,stop_dictation,"cancel note-taking"
ovos-skill-dictation,stop_dictation,"stop capturing text"
ovos-skill-dictation,stop_dictation,"end capturing text"
ovos-skill-dictation,stop_dictation,"terminate capturing text"
ovos-skill-dictation,stop_dictation,"cancel capturing text"
ovos-skill-dictation,stop_dictation,"stop dictation"
ovos-skill-dictation,stop_dictation,"end dictation"
ovos-skill-dictation,stop_dictation,"terminate dictation"
ovos-skill-dictation,stop_dictation,"cancel dictation"
ovos-skill-dictation,stop_dictation,"stop transcription"
ovos-skill-dictation,stop_dictation,"end transcription"
ovos-skill-dictation,stop_dictation,"terminate transcription"
ovos-skill-dictation,stop_dictation,"cancel transcription"
ovos-skill-dictation,stop_dictation,"disable dictation mode"
ovos-skill-dictation,stop_dictation,"disable text transcription"
ovos-skill-dictation,stop_dictation,"deactivate dictation"
ovos-skill-dictation,stop_dictation,"deactivate text transcription"
ovos-skill-dictation,stop_dictation,"stop taking notes"
ovos-skill-dictation,stop_dictation,"end note-taking"
ovos-skill-dictation,stop_dictation,"terminate note-taking"
ovos-skill-dictation,stop_dictation,"cancel note-taking"
ovos-skill-dictation,stop_dictation,"stop capturing text"
ovos-skill-dictation,stop_dictation,"end capturing text"
ovos-skill-dictation,stop_dictation,"terminate capturing text"
ovos-skill-dictation,stop_dictation,"cancel capturing text"
ovos-skill-dictation,stop_dictation,"let's stop dictation"
ovos-skill-dictation,stop_dictation,"let's end dictation"
ovos-skill-dictation,stop_dictation,"let's terminate dictation"
ovos-skill-dictation,stop_dictation,"let's cancel dictation"
ovos-skill-dictation,stop_dictation,"let's stop transcription"
ovos-skill-dictation,stop_dictation,"let's end transcription"
ovos-skill-dictation,stop_dictation,"let's terminate transcription"
ovos-skill-dictation,stop_dictation,"let's cancel transcription"
ovos-skill-dictation,stop_dictation,"let's disable dictation mode"
ovos-skill-dictation,stop_dictation,"let's disable text transcription"
ovos-skill-dictation,stop_dictation,"let's deactivate dictation"
ovos-skill-dictation,stop_dictation,"let's deactivate text transcription"
ovos-skill-dictation,stop_dictation,"let's stop taking notes"
ovos-skill-dictation,stop_dictation,"let's end note-taking"
ovos-skill-dictation,stop_dictation,"let's terminate note-taking"
ovos-skill-dictation,stop_dictation,"let's cancel note-taking"
ovos-skill-dictation,stop_dictation,"let's stop capturing text"
ovos-skill-dictation,stop_dictation,"let's end capturing text"
ovos-skill-dictation,stop_dictation,"let's terminate capturing text"
ovos-skill-dictation,stop_dictation,"let's cancel capturing text"
ovos-skill-dictation,stop_dictation,"can you stop dictation"
ovos-skill-dictation,stop_dictation,"can we end dictation"
ovos-skill-dictation,stop_dictation,"can you terminate dictation"
ovos-skill-dictation,stop_dictation,"can you cancel dictation"
ovos-skill-dictation,stop_dictation,"can you stop transcription"
ovos-skill-dictation,stop_dictation,"can we end transcription"
ovos-skill-dictation,stop_dictation,"can you terminate transcription"
ovos-skill-dictation,stop_dictation,"can you cancel transcription"
ovos-skill-dictation,stop_dictation,"can you disable dictation mode"
ovos-skill-dictation,stop_dictation,"can you disable text transcription"
ovos-skill-dictation,stop_dictation,"can you deactivate dictation"
ovos-skill-dictation,stop_dictation,"can you deactivate text transcription"
ovos-skill-dictation,stop_dictation,"can you stop taking notes"
ovos-skill-dictation,stop_dictation,"can we end note-taking"
ovos-skill-dictation,stop_dictation,"can you terminate note-taking"
ovos-skill-dictation,stop_dictation,"can you cancel note-taking"
ovos-skill-dictation,stop_dictation,"can you stop capturing text"
ovos-skill-dictation,stop_dictation,"can we end capturing text"
ovos-skill-dictation,stop_dictation,"can you terminate capturing text"
ovos-skill-dictation,stop_dictation,"can you cancel capturing text"
ovos-skill-dictation,stop_dictation,"stop dictation"
ovos-skill-dictation,stop_dictation,"end dictation"
ovos-skill-dictation,stop_dictation,"terminate dictation"
ovos-skill-dictation,stop_dictation,"cancel dictation"
ovos-skill-dictation,stop_dictation,"stop transcription"
ovos-skill-dictation,stop_dictation,"end transcription"
ovos-skill-dictation,stop_dictation,"terminate transcription"
ovos-skill-dictation,stop_dictation,"cancel transcription"
ovos-skill-dictation,stop_dictation,"disable dictation mode"
ovos-skill-dictation,stop_dictation,"disable text transcription"
ovos-skill-dictation,stop_dictation,"deactivate dictation"
ovos-skill-dictation,stop_dictation,"deactivate text transcription"
ovos-skill-dictation,stop_dictation,"stop taking notes"
ovos-skill-dictation,stop_dictation,"end note-taking"
ovos-skill-dictation,stop_dictation,"terminate note-taking"
ovos-skill-dictation,stop_dictation,"cancel note-taking"
ovos-skill-dictation,stop_dictation,"stop capturing text"
ovos-skill-dictation,stop_dictation,"end capturing text"
ovos-skill-dictation,stop_dictation,"terminate capturing text"
ovos-skill-dictation,stop_dictation,"cancel capturing text"
ovos-skill-moviemaster,genre.movie.search,"find films that are {genre}"
ovos-skill-moviemaster,genre.movie.search,"find films that are a {genre}"
ovos-skill-moviemaster,genre.movie.search,"find movies that are {genre}"
ovos-skill-moviemaster,genre.movie.search,"find movies that are a {genre}"
ovos-skill-moviemaster,genre.movie.search,"list films that are {genre}"
ovos-skill-moviemaster,genre.movie.search,"list films that are a {genre}"
ovos-skill-moviemaster,genre.movie.search,"list movies that are {genre}"
ovos-skill-moviemaster,genre.movie.search,"list movies that are a {genre}"
ovos-skill-moviemaster,genre.movie.search,"find {genre} films"
ovos-skill-moviemaster,genre.movie.search,"find {genre} movies"
ovos-skill-moviemaster,genre.movie.search,"list {genre} films"
ovos-skill-moviemaster,genre.movie.search,"list {genre} movies"
ovos-skill-moviemaster,movie.popular,"search for popular flicks"
ovos-skill-moviemaster,movie.popular,"search for popular films"
ovos-skill-moviemaster,movie.popular,"search for popular movies"
ovos-skill-moviemaster,movie.popular,"look for popular flicks"
ovos-skill-moviemaster,movie.popular,"look for popular films"
ovos-skill-moviemaster,movie.popular,"look for popular movies"
ovos-skill-moviemaster,movie.popular,"search popular flicks"
ovos-skill-moviemaster,movie.popular,"search popular films"
ovos-skill-moviemaster,movie.popular,"search popular movies"
ovos-skill-moviemaster,movie.popular,"list popular flicks"
ovos-skill-moviemaster,movie.popular,"list popular films"
ovos-skill-moviemaster,movie.popular,"list popular movies"
ovos-skill-moviemaster,movie.popular,"what are the popular flicks out now"
ovos-skill-moviemaster,movie.popular,"what are the popular flicks out"
ovos-skill-moviemaster,movie.popular,"what are the popular flicks playing now"
ovos-skill-moviemaster,movie.popular,"what are the popular flicks playing"
ovos-skill-moviemaster,movie.popular,"what are the popular films out now"
ovos-skill-moviemaster,movie.popular,"what are the popular films out"
ovos-skill-moviemaster,movie.popular,"what are the popular films playing now"
ovos-skill-moviemaster,movie.popular,"what are the popular films playing"
ovos-skill-moviemaster,movie.popular,"what are the popular movies out now"
ovos-skill-moviemaster,movie.popular,"what are the popular movies out"
ovos-skill-moviemaster,movie.popular,"what are the popular movies playing now"
ovos-skill-moviemaster,movie.popular,"what are the popular movies playing"
ovos-skill-moviemaster,movie.popular,"what are popular flicks out now"
ovos-skill-moviemaster,movie.popular,"what are popular flicks out"
ovos-skill-moviemaster,movie.popular,"what are popular flicks playing now"
ovos-skill-moviemaster,movie.popular,"what are popular flicks playing"
ovos-skill-moviemaster,movie.popular,"what are popular films out now"
ovos-skill-moviemaster,movie.popular,"what are popular films out"
ovos-skill-moviemaster,movie.popular,"what are popular films playing now"
ovos-skill-moviemaster,movie.popular,"what are popular films playing"
ovos-skill-moviemaster,movie.popular,"what are popular movies out now"
ovos-skill-moviemaster,movie.popular,"what are popular movies out"
ovos-skill-moviemaster,movie.popular,"what are popular movies playing now"
ovos-skill-moviemaster,movie.popular,"what are popular movies playing"
ovos-skill-moviemaster,movie.information,"is there info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"is there info about the film {movie}"
ovos-skill-moviemaster,movie.information,"is there info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"is there info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"is there info on the film {movie}"
ovos-skill-moviemaster,movie.information,"is there info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"is there information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"is there information about the film {movie}"
ovos-skill-moviemaster,movie.information,"is there information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"is there information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"is there information on the film {movie}"
ovos-skill-moviemaster,movie.information,"is there information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"look for info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"look for info about the film {movie}"
ovos-skill-moviemaster,movie.information,"look for info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"look for info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"look for info on the film {movie}"
ovos-skill-moviemaster,movie.information,"look for info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"look for information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"look for information about the film {movie}"
ovos-skill-moviemaster,movie.information,"look for information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"look for information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"look for information on the film {movie}"
ovos-skill-moviemaster,movie.information,"look for information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"get info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"get info about the film {movie}"
ovos-skill-moviemaster,movie.information,"get info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"get info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"get info on the film {movie}"
ovos-skill-moviemaster,movie.information,"get info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"get information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"get information about the film {movie}"
ovos-skill-moviemaster,movie.information,"get information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"get information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"get information on the film {movie}"
ovos-skill-moviemaster,movie.information,"get information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"find info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"find info about the film {movie}"
ovos-skill-moviemaster,movie.information,"find info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"find info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"find info on the film {movie}"
ovos-skill-moviemaster,movie.information,"find info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"find information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"find information about the film {movie}"
ovos-skill-moviemaster,movie.information,"find information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"find information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"find information on the film {movie}"
ovos-skill-moviemaster,movie.information,"find information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"get us info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"get us info about the film {movie}"
ovos-skill-moviemaster,movie.information,"get us info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"get us info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"get us info on the film {movie}"
ovos-skill-moviemaster,movie.information,"get us info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"get us information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"get us information about the film {movie}"
ovos-skill-moviemaster,movie.information,"get us information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"get us information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"get us information on the film {movie}"
ovos-skill-moviemaster,movie.information,"get us information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"get me info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"get me info about the film {movie}"
ovos-skill-moviemaster,movie.information,"get me info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"get me info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"get me info on the film {movie}"
ovos-skill-moviemaster,movie.information,"get me info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"get me information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"get me information about the film {movie}"
ovos-skill-moviemaster,movie.information,"get me information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"get me information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"get me information on the film {movie}"
ovos-skill-moviemaster,movie.information,"get me information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"get info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"get info about the film {movie}"
ovos-skill-moviemaster,movie.information,"get info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"get info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"get info on the film {movie}"
ovos-skill-moviemaster,movie.information,"get info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"get information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"get information about the film {movie}"
ovos-skill-moviemaster,movie.information,"get information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"get information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"get information on the film {movie}"
ovos-skill-moviemaster,movie.information,"get information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"tell us info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"tell us info about the film {movie}"
ovos-skill-moviemaster,movie.information,"tell us info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"tell us info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"tell us info on the film {movie}"
ovos-skill-moviemaster,movie.information,"tell us info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"tell us information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"tell us information about the film {movie}"
ovos-skill-moviemaster,movie.information,"tell us information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"tell us information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"tell us information on the film {movie}"
ovos-skill-moviemaster,movie.information,"tell us information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"tell me info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"tell me info about the film {movie}"
ovos-skill-moviemaster,movie.information,"tell me info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"tell me info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"tell me info on the film {movie}"
ovos-skill-moviemaster,movie.information,"tell me info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"tell me information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"tell me information about the film {movie}"
ovos-skill-moviemaster,movie.information,"tell me information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"tell me information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"tell me information on the film {movie}"
ovos-skill-moviemaster,movie.information,"tell me information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"tell info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"tell info about the film {movie}"
ovos-skill-moviemaster,movie.information,"tell info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"tell info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"tell info on the film {movie}"
ovos-skill-moviemaster,movie.information,"tell info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"tell information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"tell information about the film {movie}"
ovos-skill-moviemaster,movie.information,"tell information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"tell information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"tell information on the film {movie}"
ovos-skill-moviemaster,movie.information,"tell information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"give us info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"give us info about the film {movie}"
ovos-skill-moviemaster,movie.information,"give us info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"give us info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"give us info on the film {movie}"
ovos-skill-moviemaster,movie.information,"give us info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"give us information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"give us information about the film {movie}"
ovos-skill-moviemaster,movie.information,"give us information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"give us information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"give us information on the film {movie}"
ovos-skill-moviemaster,movie.information,"give us information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"give me info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"give me info about the film {movie}"
ovos-skill-moviemaster,movie.information,"give me info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"give me info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"give me info on the film {movie}"
ovos-skill-moviemaster,movie.information,"give me info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"give me information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"give me information about the film {movie}"
ovos-skill-moviemaster,movie.information,"give me information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"give me information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"give me information on the film {movie}"
ovos-skill-moviemaster,movie.information,"give me information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"give info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"give info about the film {movie}"
ovos-skill-moviemaster,movie.information,"give info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"give info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"give info on the film {movie}"
ovos-skill-moviemaster,movie.information,"give info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"give information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"give information about the film {movie}"
ovos-skill-moviemaster,movie.information,"give information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"give information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"give information on the film {movie}"
ovos-skill-moviemaster,movie.information,"give information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"can you get information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"can you get information about the film {movie}"
ovos-skill-moviemaster,movie.information,"can you get information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"can you get information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"can you get information on the film {movie}"
ovos-skill-moviemaster,movie.information,"can you get information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"can you get info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"can you get info about the film {movie}"
ovos-skill-moviemaster,movie.information,"can you get info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"can you get info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"can you get info on the film {movie}"
ovos-skill-moviemaster,movie.information,"can you get info on the movie {movie}"
ovos-skill-moviemaster,movie.information,"do you have information about the flick {movie}"
ovos-skill-moviemaster,movie.information,"do you have information about the film {movie}"
ovos-skill-moviemaster,movie.information,"do you have information about the movie {movie}"
ovos-skill-moviemaster,movie.information,"do you have information on the flick {movie}"
ovos-skill-moviemaster,movie.information,"do you have information on the film {movie}"
ovos-skill-moviemaster,movie.information,"do you have information on the movie {movie}"
ovos-skill-moviemaster,movie.information,"do you have info about the flick {movie}"
ovos-skill-moviemaster,movie.information,"do you have info about the film {movie}"
ovos-skill-moviemaster,movie.information,"do you have info about the movie {movie}"
ovos-skill-moviemaster,movie.information,"do you have info on the flick {movie}"
ovos-skill-moviemaster,movie.information,"do you have info on the film {movie}"
ovos-skill-moviemaster,movie.information,"do you have info on the movie {movie}"
ovos-skill-moviemaster,movie.genre.search,"find flicks that are {genre}"
ovos-skill-moviemaster,movie.genre.search,"find flicks that are a {genre}"
ovos-skill-moviemaster,movie.genre.search,"find films that are {genre}"
ovos-skill-moviemaster,movie.genre.search,"find films that are a {genre}"
ovos-skill-moviemaster,movie.genre.search,"find movies that are {genre}"
ovos-skill-moviemaster,movie.genre.search,"find movies that are a {genre}"
ovos-skill-moviemaster,movie.genre.search,"list flicks that are {genre}"
ovos-skill-moviemaster,movie.genre.search,"list flicks that are a {genre}"
ovos-skill-moviemaster,movie.genre.search,"list films that are {genre}"
ovos-skill-moviemaster,movie.genre.search,"list films that are a {genre}"
ovos-skill-moviemaster,movie.genre.search,"list movies that are {genre}"
ovos-skill-moviemaster,movie.genre.search,"list movies that are a {genre}"
ovos-skill-moviemaster,movie.genre.search,"find {genre} flicks"
ovos-skill-moviemaster,movie.genre.search,"find {genre} films"
ovos-skill-moviemaster,movie.genre.search,"find {genre} movies"
ovos-skill-moviemaster,movie.genre.search,"list {genre} flicks"
ovos-skill-moviemaster,movie.genre.search,"list {genre} films"
ovos-skill-moviemaster,movie.genre.search,"list {genre} movies"
ovos-skill-moviemaster,movie.production,"what company made the movie {movie}"
ovos-skill-moviemaster,movie.production,"what company produced the movie {movie}"
ovos-skill-moviemaster,movie.production,"who made the movie {movie}"
ovos-skill-moviemaster,movie.production,"who produced the movie {movie}"
ovos-skill-moviemaster,movie.top,"search for the highest rated flicks out now"
ovos-skill-moviemaster,movie.top,"search for the highest rated flicks out"
ovos-skill-moviemaster,movie.top,"search for the highest rated flicks playing now"
ovos-skill-moviemaster,movie.top,"search for the highest rated flicks playing"
ovos-skill-moviemaster,movie.top,"search for the highest rated films out now"
ovos-skill-moviemaster,movie.top,"search for the highest rated films out"
ovos-skill-moviemaster,movie.top,"search for the highest rated films playing now"
ovos-skill-moviemaster,movie.top,"search for the highest rated films playing"
ovos-skill-moviemaster,movie.top,"search for the highest rated movies out now"
ovos-skill-moviemaster,movie.top,"search for the highest rated movies out"
ovos-skill-moviemaster,movie.top,"search for the highest rated movies playing now"
ovos-skill-moviemaster,movie.top,"search for the highest rated movies playing"
ovos-skill-moviemaster,movie.top,"search for the most popular flicks out now"
ovos-skill-moviemaster,movie.top,"search for the most popular flicks out"
ovos-skill-moviemaster,movie.top,"search for the most popular flicks playing now"
ovos-skill-moviemaster,movie.top,"search for the most popular flicks playing"
ovos-skill-moviemaster,movie.top,"search for the most popular films out now"
ovos-skill-moviemaster,movie.top,"search for the most popular films out"
ovos-skill-moviemaster,movie.top,"search for the most popular films playing now"
ovos-skill-moviemaster,movie.top,"search for the most popular films playing"
ovos-skill-moviemaster,movie.top,"search for the most popular movies out now"
ovos-skill-moviemaster,movie.top,"search for the most popular movies out"
ovos-skill-moviemaster,movie.top,"search for the most popular movies playing now"
ovos-skill-moviemaster,movie.top,"search for the most popular movies playing"
ovos-skill-moviemaster,movie.top,"search for the top flicks out now"
ovos-skill-moviemaster,movie.top,"search for the top flicks out"
ovos-skill-moviemaster,movie.top,"search for the top flicks playing now"
ovos-skill-moviemaster,movie.top,"search for the top flicks playing"
ovos-skill-moviemaster,movie.top,"search for the top films out now"
ovos-skill-moviemaster,movie.top,"search for the top films out"
ovos-skill-moviemaster,movie.top,"search for the top films playing now"
ovos-skill-moviemaster,movie.top,"search for the top films playing"
ovos-skill-moviemaster,movie.top,"search for the top movies out now"
ovos-skill-moviemaster,movie.top,"search for the top movies out"
ovos-skill-moviemaster,movie.top,"search for the top movies playing now"
ovos-skill-moviemaster,movie.top,"search for the top movies playing"
ovos-skill-moviemaster,movie.top,"what are the highest rated flicks out now"
ovos-skill-moviemaster,movie.top,"what are the highest rated flicks out"
ovos-skill-moviemaster,movie.top,"what are the highest rated flicks playing now"
ovos-skill-moviemaster,movie.top,"what are the highest rated flicks playing"
ovos-skill-moviemaster,movie.top,"what are the highest rated films out now"
ovos-skill-moviemaster,movie.top,"what are the highest rated films out"
ovos-skill-moviemaster,movie.top,"what are the highest rated films playing now"
ovos-skill-moviemaster,movie.top,"what are the highest rated films playing"
ovos-skill-moviemaster,movie.top,"what are the highest rated movies out now"
ovos-skill-moviemaster,movie.top,"what are the highest rated movies out"
ovos-skill-moviemaster,movie.top,"what are the highest rated movies playing now"
ovos-skill-moviemaster,movie.top,"what are the highest rated movies playing"
ovos-skill-moviemaster,movie.top,"what are the most popular flicks out now"
ovos-skill-moviemaster,movie.top,"what are the most popular flicks out"
ovos-skill-moviemaster,movie.top,"what are the most popular flicks playing now"
ovos-skill-moviemaster,movie.top,"what are the most popular flicks playing"
ovos-skill-moviemaster,movie.top,"what are the most popular films out now"
ovos-skill-moviemaster,movie.top,"what are the most popular films out"
ovos-skill-moviemaster,movie.top,"what are the most popular films playing now"
ovos-skill-moviemaster,movie.top,"what are the most popular films playing"
ovos-skill-moviemaster,movie.top,"what are the most popular movies out now"
ovos-skill-moviemaster,movie.top,"what are the most popular movies out"
ovos-skill-moviemaster,movie.top,"what are the most popular movies playing now"
ovos-skill-moviemaster,movie.top,"what are the most popular movies playing"
ovos-skill-moviemaster,movie.top,"what are the top flicks out now"
ovos-skill-moviemaster,movie.top,"what are the top flicks out"
ovos-skill-moviemaster,movie.top,"what are the top flicks playing now"
ovos-skill-moviemaster,movie.top,"what are the top flicks playing"
ovos-skill-moviemaster,movie.top,"what are the top films out now"
ovos-skill-moviemaster,movie.top,"what are the top films out"
ovos-skill-moviemaster,movie.top,"what are the top films playing now"
ovos-skill-moviemaster,movie.top,"what are the top films playing"
ovos-skill-moviemaster,movie.top,"what are the top movies out now"
ovos-skill-moviemaster,movie.top,"what are the top movies out"
ovos-skill-moviemaster,movie.top,"what are the top movies playing now"
ovos-skill-moviemaster,movie.top,"what are the top movies playing"
ovos-skill-moviemaster,movie.top,"list the highest rated flicks out now"
ovos-skill-moviemaster,movie.top,"list the highest rated flicks out"
ovos-skill-moviemaster,movie.top,"list the highest rated flicks playing now"
ovos-skill-moviemaster,movie.top,"list the highest rated flicks playing"
ovos-skill-moviemaster,movie.top,"list the highest rated films out now"
ovos-skill-moviemaster,movie.top,"list the highest rated films out"
ovos-skill-moviemaster,movie.top,"list the highest rated films playing now"
ovos-skill-moviemaster,movie.top,"list the highest rated films playing"
ovos-skill-moviemaster,movie.top,"list the highest rated movies out now"
ovos-skill-moviemaster,movie.top,"list the highest rated movies out"
ovos-skill-moviemaster,movie.top,"list the highest rated movies playing now"
ovos-skill-moviemaster,movie.top,"list the highest rated movies playing"
ovos-skill-moviemaster,movie.top,"list the most popular flicks out now"
ovos-skill-moviemaster,movie.top,"list the most popular flicks out"
ovos-skill-moviemaster,movie.top,"list the most popular flicks playing now"
ovos-skill-moviemaster,movie.top,"list the most popular flicks playing"
ovos-skill-moviemaster,movie.top,"list the most popular films out now"
ovos-skill-moviemaster,movie.top,"list the most popular films out"
ovos-skill-moviemaster,movie.top,"list the most popular films playing now"
ovos-skill-moviemaster,movie.top,"list the most popular films playing"
ovos-skill-moviemaster,movie.top,"list the most popular movies out now"
ovos-skill-moviemaster,movie.top,"list the most popular movies out"
ovos-skill-moviemaster,movie.top,"list the most popular movies playing now"
ovos-skill-moviemaster,movie.top,"list the most popular movies playing"
ovos-skill-moviemaster,movie.top,"list the top flicks out now"
ovos-skill-moviemaster,movie.top,"list the top flicks out"
ovos-skill-moviemaster,movie.top,"list the top flicks playing now"
ovos-skill-moviemaster,movie.top,"list the top flicks playing"
ovos-skill-moviemaster,movie.top,"list the top films out now"
ovos-skill-moviemaster,movie.top,"list the top films out"
ovos-skill-moviemaster,movie.top,"list the top films playing now"
ovos-skill-moviemaster,movie.top,"list the top films playing"
ovos-skill-moviemaster,movie.top,"list the top movies out now"
ovos-skill-moviemaster,movie.top,"list the top movies out"
ovos-skill-moviemaster,movie.top,"list the top movies playing now"
ovos-skill-moviemaster,movie.top,"list the top movies playing"
ovos-skill-moviemaster,movie.genres,"what genre does the flick {movie} belong to"
ovos-skill-moviemaster,movie.genres,"what genre does the film {movie} belong to"
ovos-skill-moviemaster,movie.genres,"what genre does the movie {movie} belong to"
ovos-skill-moviemaster,movie.genres,"what genres does the flick {movie} belong to"
ovos-skill-moviemaster,movie.genres,"what genres does the film {movie} belong to"
ovos-skill-moviemaster,movie.genres,"what genres does the movie {movie} belong to"
ovos-skill-moviemaster,movie.genres,"what are the genre of the flick {movie}"
ovos-skill-moviemaster,movie.genres,"what are the genre of the film {movie}"
ovos-skill-moviemaster,movie.genres,"what are the genre of the movie {movie}"
ovos-skill-moviemaster,movie.genres,"what are the genres of the flick {movie}"
ovos-skill-moviemaster,movie.genres,"what are the genres of the film {movie}"
ovos-skill-moviemaster,movie.genres,"what are the genres of the movie {movie}"
ovos-skill-moviemaster,movie.genres,"what genre are the flick {movie}"
ovos-skill-moviemaster,movie.genres,"what genre are the film {movie}"
ovos-skill-moviemaster,movie.genres,"what genre are the movie {movie}"
ovos-skill-moviemaster,movie.genres,"what genre is the flick {movie}"
ovos-skill-moviemaster,movie.genres,"what genre is the film {movie}"
ovos-skill-moviemaster,movie.genres,"what genre is the movie {movie}"
ovos-skill-moviemaster,movie.genres,"what genres are the flick {movie}"
ovos-skill-moviemaster,movie.genres,"what genres are the film {movie}"
ovos-skill-moviemaster,movie.genres,"what genres are the movie {movie}"
ovos-skill-moviemaster,movie.genres,"what genres is the flick {movie}"
ovos-skill-moviemaster,movie.genres,"what genres is the film {movie}"
ovos-skill-moviemaster,movie.genres,"what genres is the movie {movie}"
ovos-skill-moviemaster,movie.recommendations,"recommend flicks like {movie}"
ovos-skill-moviemaster,movie.recommendations,"recommend flicks similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"recommend films like {movie}"
ovos-skill-moviemaster,movie.recommendations,"recommend films similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"recommend movies like {movie}"
ovos-skill-moviemaster,movie.recommendations,"recommend movies similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"what flicks do you recommend like {movie}"
ovos-skill-moviemaster,movie.recommendations,"what flicks do you recommend similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"what flicks would you recommend like {movie}"
ovos-skill-moviemaster,movie.recommendations,"what flicks would you recommend similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"what films do you recommend like {movie}"
ovos-skill-moviemaster,movie.recommendations,"what films do you recommend similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"what films would you recommend like {movie}"
ovos-skill-moviemaster,movie.recommendations,"what films would you recommend similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"what movies do you recommend like {movie}"
ovos-skill-moviemaster,movie.recommendations,"what movies do you recommend similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"what movies would you recommend like {movie}"
ovos-skill-moviemaster,movie.recommendations,"what movies would you recommend similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"get good flicks like {movie}"
ovos-skill-moviemaster,movie.recommendations,"get good flicks similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"get good films like {movie}"
ovos-skill-moviemaster,movie.recommendations,"get good films similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"get good movies like {movie}"
ovos-skill-moviemaster,movie.recommendations,"get good movies similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"get flicks like {movie}"
ovos-skill-moviemaster,movie.recommendations,"get flicks similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"get films like {movie}"
ovos-skill-moviemaster,movie.recommendations,"get films similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"get movies like {movie}"
ovos-skill-moviemaster,movie.recommendations,"get movies similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"list good flicks like {movie}"
ovos-skill-moviemaster,movie.recommendations,"list good flicks similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"list good films like {movie}"
ovos-skill-moviemaster,movie.recommendations,"list good films similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"list good movies like {movie}"
ovos-skill-moviemaster,movie.recommendations,"list good movies similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"list flicks like {movie}"
ovos-skill-moviemaster,movie.recommendations,"list flicks similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"list films like {movie}"
ovos-skill-moviemaster,movie.recommendations,"list films similar to {movie}"
ovos-skill-moviemaster,movie.recommendations,"list movies like {movie}"
ovos-skill-moviemaster,movie.recommendations,"list movies similar to {movie}"
ovos-skill-moviemaster,movie.year,"what date was the flick {movie} released"
ovos-skill-moviemaster,movie.year,"what date was the flick {movie} made"
ovos-skill-moviemaster,movie.year,"what date was the film {movie} released"
ovos-skill-moviemaster,movie.year,"what date was the film {movie} made"
ovos-skill-moviemaster,movie.year,"what date was the movie {movie} released"
ovos-skill-moviemaster,movie.year,"what date was the movie {movie} made"
ovos-skill-moviemaster,movie.year,"when was the flick {movie} released"
ovos-skill-moviemaster,movie.year,"when was the flick {movie} made"
ovos-skill-moviemaster,movie.year,"when was the film {movie} released"
ovos-skill-moviemaster,movie.year,"when was the film {movie} made"
ovos-skill-moviemaster,movie.year,"when was the movie {movie} released"
ovos-skill-moviemaster,movie.year,"when was the movie {movie} made"
ovos-skill-moviemaster,movie.year,"what year was the flick {movie} released"
ovos-skill-moviemaster,movie.year,"what year was the flick {movie} made"
ovos-skill-moviemaster,movie.year,"what year was the film {movie} released"
ovos-skill-moviemaster,movie.year,"what year was the film {movie} made"
ovos-skill-moviemaster,movie.year,"what year was the movie {movie} released"
ovos-skill-moviemaster,movie.year,"what year was the movie {movie} made"
ovos-skill-moviemaster,movie.runtime,"How long is the flick {movie}"
ovos-skill-moviemaster,movie.runtime,"How long is the film {movie}"
ovos-skill-moviemaster,movie.runtime,"How long is the movie {movie}"
ovos-skill-moviemaster,movie.runtime,"What is the length of the flick {movie}"
ovos-skill-moviemaster,movie.runtime,"What is the length of the film {movie}"
ovos-skill-moviemaster,movie.runtime,"What is the length of the movie {movie}"
ovos-skill-moviemaster,movie.runtime,"What is the runtime of the flick {movie}"
ovos-skill-moviemaster,movie.runtime,"What is the runtime of the film {movie}"
ovos-skill-moviemaster,movie.runtime,"What is the runtime of the movie {movie}"
ovos-skill-moviemaster,movie.runtime,"Get the length of the flick {movie}"
ovos-skill-moviemaster,movie.runtime,"Get the length of the film {movie}"
ovos-skill-moviemaster,movie.runtime,"Get the length of the movie {movie}"
ovos-skill-moviemaster,movie.runtime,"Get the runtime of the flick {movie}"
ovos-skill-moviemaster,movie.runtime,"Get the runtime of the film {movie}"
ovos-skill-moviemaster,movie.runtime,"Get the runtime of the movie {movie}"
ovos-skill-moviemaster,movie.description,"what is the flick {movie} about"
ovos-skill-moviemaster,movie.description,"what is the film {movie} about"
ovos-skill-moviemaster,movie.description,"what is the movie {movie} about"
ovos-skill-moviemaster,movie.description,"tell us about the flick {movie}"
ovos-skill-moviemaster,movie.description,"tell us about the film {movie}"
ovos-skill-moviemaster,movie.description,"tell us about the movie {movie}"
ovos-skill-moviemaster,movie.description,"tell me about the flick {movie}"
ovos-skill-moviemaster,movie.description,"tell me about the film {movie}"
ovos-skill-moviemaster,movie.description,"tell me about the movie {movie}"
ovos-skill-moviemaster,movie.description,"get us a synopsis of the flick {movie}"
ovos-skill-moviemaster,movie.description,"get us a synopsis of the film {movie}"
ovos-skill-moviemaster,movie.description,"get us a synopsis of the movie {movie}"
ovos-skill-moviemaster,movie.description,"get us a description of the flick {movie}"
ovos-skill-moviemaster,movie.description,"get us a description of the film {movie}"
ovos-skill-moviemaster,movie.description,"get us a description of the movie {movie}"
ovos-skill-moviemaster,movie.description,"get me a synopsis of the flick {movie}"
ovos-skill-moviemaster,movie.description,"get me a synopsis of the film {movie}"
ovos-skill-moviemaster,movie.description,"get me a synopsis of the movie {movie}"
ovos-skill-moviemaster,movie.description,"get me a description of the flick {movie}"
ovos-skill-moviemaster,movie.description,"get me a description of the film {movie}"
ovos-skill-moviemaster,movie.description,"get me a description of the movie {movie}"
ovos-skill-moviemaster,movie.description,"get a synopsis of the flick {movie}"
ovos-skill-moviemaster,movie.description,"get a synopsis of the film {movie}"
ovos-skill-moviemaster,movie.description,"get a synopsis of the movie {movie}"
ovos-skill-moviemaster,movie.description,"get a description of the flick {movie}"
ovos-skill-moviemaster,movie.description,"get a description of the film {movie}"
ovos-skill-moviemaster,movie.description,"get a description of the movie {movie}"
ovos-skill-moviemaster,movie.description,"give us a synopsis of the flick {movie}"
ovos-skill-moviemaster,movie.description,"give us a synopsis of the film {movie}"
ovos-skill-moviemaster,movie.description,"give us a synopsis of the movie {movie}"
ovos-skill-moviemaster,movie.description,"give us a description of the flick {movie}"
ovos-skill-moviemaster,movie.description,"give us a description of the film {movie}"
ovos-skill-moviemaster,movie.description,"give us a description of the movie {movie}"
ovos-skill-moviemaster,movie.description,"give me a synopsis of the flick {movie}"
ovos-skill-moviemaster,movie.description,"give me a synopsis of the film {movie}"
ovos-skill-moviemaster,movie.description,"give me a synopsis of the movie {movie}"
ovos-skill-moviemaster,movie.description,"give me a description of the flick {movie}"
ovos-skill-moviemaster,movie.description,"give me a description of the film {movie}"
ovos-skill-moviemaster,movie.description,"give me a description of the movie {movie}"
ovos-skill-moviemaster,movie.description,"give a synopsis of the flick {movie}"
ovos-skill-moviemaster,movie.description,"give a synopsis of the film {movie}"
ovos-skill-moviemaster,movie.description,"give a synopsis of the movie {movie}"
ovos-skill-moviemaster,movie.description,"give a description of the flick {movie}"
ovos-skill-moviemaster,movie.description,"give a description of the film {movie}"
ovos-skill-moviemaster,movie.description,"give a description of the movie {movie}"
ovos-skill-moviemaster,genre.tv.search,"get shows that are a {genre}"
ovos-skill-moviemaster,genre.tv.search,"get shows that are {genre}"
ovos-skill-moviemaster,genre.tv.search,"get television shows that are a {genre}"
ovos-skill-moviemaster,genre.tv.search,"get television shows that are {genre}"
ovos-skill-moviemaster,genre.tv.search,"get TV shows that are a {genre}"
ovos-skill-moviemaster,genre.tv.search,"get TV shows that are {genre}"
ovos-skill-moviemaster,genre.tv.search,"find shows that are a {genre}"
ovos-skill-moviemaster,genre.tv.search,"find shows that are {genre}"
ovos-skill-moviemaster,genre.tv.search,"find television shows that are a {genre}"
ovos-skill-moviemaster,genre.tv.search,"find television shows that are {genre}"
ovos-skill-moviemaster,genre.tv.search,"find TV shows that are a {genre}"
ovos-skill-moviemaster,genre.tv.search,"find TV shows that are {genre}"
ovos-skill-moviemaster,genre.tv.search,"list shows that are a {genre}"
ovos-skill-moviemaster,genre.tv.search,"list shows that are {genre}"
ovos-skill-moviemaster,genre.tv.search,"list television shows that are a {genre}"
ovos-skill-moviemaster,genre.tv.search,"list television shows that are {genre}"
ovos-skill-moviemaster,genre.tv.search,"list TV shows that are a {genre}"
ovos-skill-moviemaster,genre.tv.search,"list TV shows that are {genre}"
ovos-skill-moviemaster,genre.tv.search,"get {genre} shows"
ovos-skill-moviemaster,genre.tv.search,"get {genre} television shows"
ovos-skill-moviemaster,genre.tv.search,"get {genre} TV shows"
ovos-skill-moviemaster,genre.tv.search,"find {genre} shows"
ovos-skill-moviemaster,genre.tv.search,"find {genre} television shows"
ovos-skill-moviemaster,genre.tv.search,"find {genre} TV shows"
ovos-skill-moviemaster,genre.tv.search,"list {genre} shows"
ovos-skill-moviemaster,genre.tv.search,"list {genre} television shows"
ovos-skill-moviemaster,genre.tv.search,"list {genre} TV shows"
ovos-skill-moviemaster,movie.cast,"who is in the flick {movie}"
ovos-skill-moviemaster,movie.cast,"who is in the film {movie}"
ovos-skill-moviemaster,movie.cast,"who is in the movie {movie}"
ovos-skill-moviemaster,movie.cast,"who plays in the flick {movie}"
ovos-skill-moviemaster,movie.cast,"who plays in the film {movie}"
ovos-skill-moviemaster,movie.cast,"who plays in the movie {movie}"
ovos-skill-moviemaster,movie.cast,"who acts in the flick {movie}"
ovos-skill-moviemaster,movie.cast,"who acts in the film {movie}"
ovos-skill-moviemaster,movie.cast,"who acts in the movie {movie}"
ovos-skill-ggwave,disable.ggwave,"shutdown audio data"
ovos-skill-ggwave,disable.ggwave,"shutdown audio qr codes"
ovos-skill-ggwave,disable.ggwave,"shutdown audio qr code"
ovos-skill-ggwave,disable.ggwave,"shutdown audio codes"
ovos-skill-ggwave,disable.ggwave,"shutdown audio code"
ovos-skill-ggwave,disable.ggwave,"shutdown ggwave"
ovos-skill-ggwave,disable.ggwave,"disallow audio data"
ovos-skill-ggwave,disable.ggwave,"disallow audio qr codes"
ovos-skill-ggwave,disable.ggwave,"disallow audio qr code"
ovos-skill-ggwave,disable.ggwave,"disallow audio codes"
ovos-skill-ggwave,disable.ggwave,"disallow audio code"
ovos-skill-ggwave,disable.ggwave,"disallow ggwave"
ovos-skill-ggwave,disable.ggwave,"stop audio data"
ovos-skill-ggwave,disable.ggwave,"stop audio qr codes"
ovos-skill-ggwave,disable.ggwave,"stop audio qr code"
ovos-skill-ggwave,disable.ggwave,"stop audio codes"
ovos-skill-ggwave,disable.ggwave,"stop audio code"
ovos-skill-ggwave,disable.ggwave,"stop ggwave"
ovos-skill-ggwave,disable.ggwave,"disable audio data"
ovos-skill-ggwave,disable.ggwave,"disable audio qr codes"
ovos-skill-ggwave,disable.ggwave,"disable audio qr code"
ovos-skill-ggwave,disable.ggwave,"disable audio codes"
ovos-skill-ggwave,disable.ggwave,"disable audio code"
ovos-skill-ggwave,disable.ggwave,"disable ggwave"
ovos-skill-ggwave,disable.ggwave,"audio data off"
ovos-skill-ggwave,disable.ggwave,"audio qr codes off"
ovos-skill-ggwave,disable.ggwave,"audio qr code off"
ovos-skill-ggwave,disable.ggwave,"audio codes off"
ovos-skill-ggwave,disable.ggwave,"audio code off"
ovos-skill-ggwave,disable.ggwave,"ggwave off"
ovos-skill-ggwave,enable.ggwave,"allow audio data"
ovos-skill-ggwave,enable.ggwave,"allow audio qr codes"
ovos-skill-ggwave,enable.ggwave,"allow audio qr code"
ovos-skill-ggwave,enable.ggwave,"allow audio codes"
ovos-skill-ggwave,enable.ggwave,"allow audio code"
ovos-skill-ggwave,enable.ggwave,"allow ggwave"
ovos-skill-ggwave,enable.ggwave,"start audio data"
ovos-skill-ggwave,enable.ggwave,"start audio qr codes"
ovos-skill-ggwave,enable.ggwave,"start audio qr code"
ovos-skill-ggwave,enable.ggwave,"start audio codes"
ovos-skill-ggwave,enable.ggwave,"start audio code"
ovos-skill-ggwave,enable.ggwave,"start ggwave"
ovos-skill-ggwave,enable.ggwave,"enable audio data"
ovos-skill-ggwave,enable.ggwave,"enable audio qr codes"
ovos-skill-ggwave,enable.ggwave,"enable audio qr code"
ovos-skill-ggwave,enable.ggwave,"enable audio codes"
ovos-skill-ggwave,enable.ggwave,"enable audio code"
ovos-skill-ggwave,enable.ggwave,"enable ggwave"
ovos-skill-ggwave,enable.ggwave,"audio data on"
ovos-skill-ggwave,enable.ggwave,"audio qr codes on"
ovos-skill-ggwave,enable.ggwave,"audio qr code on"
ovos-skill-ggwave,enable.ggwave,"audio codes on"
ovos-skill-ggwave,enable.ggwave,"audio code on"
ovos-skill-ggwave,enable.ggwave,"ggwave on"
ovos-skill-laugh,RandomLaugh,"laugh randomly"
ovos-skill-laugh,RandomLaugh,"trigger random laughter"
ovos-skill-laugh,RandomLaugh,"trigger random laughs"
ovos-skill-laugh,RandomLaugh,"trigger random laughing"
ovos-skill-laugh,RandomLaugh,"trigger random laugh"
ovos-skill-laugh,RandomLaugh,"random laughter"
ovos-skill-laugh,RandomLaugh,"random laughs"
ovos-skill-laugh,RandomLaugh,"random laughing"
ovos-skill-laugh,RandomLaugh,"random laugh"
ovos-skill-laugh,Laugh,"laugh like alexa"
ovos-skill-laugh,Laugh,"can you laugh"
ovos-skill-laugh,Laugh,"evil laughter"
ovos-skill-laugh,Laugh,"evil laughs"
ovos-skill-laugh,Laugh,"evil laughing"
ovos-skill-laugh,Laugh,"evil laugh"
ovos-skill-laugh,haunted,"Are you haunted"
ovos-skill-laugh,haunted,"Do you need an exorcism"
skill-ovos-volume,volume.mute.toggle,"toggle mute"
skill-ovos-volume,volume.mute.toggle,"toggle audio"
skill-ovos-volume,volume.unmute,"unmute volume"
skill-ovos-volume,volume.unmute,"unmute"
skill-ovos-volume,volume.unmute,"unmute audio"
skill-ovos-volume,volume.default,"reset volume"
skill-ovos-volume,volume.default,"set volume to default"
skill-ovos-volume,volume.default,"set volume to medium"
skill-ovos-volume,volume.default,"restore volume"
skill-ovos-volume,volume.default,"medium volume"
skill-ovos-volume,volume.default,"default volume"
skill-ovos-volume,volume.default,"set volume level to default"
skill-ovos-volume,volume.max,"max volume"
skill-ovos-volume,volume.max,"set volume to maximum"
skill-ovos-volume,volume.max,"top volume"
skill-ovos-volume,volume.max,"maximum volume"
skill-ovos-volume,volume.max,"set volume level to maximum"
skill-ovos-volume,volume.high,"volume high"
skill-ovos-volume,volume.high,"high volume"
skill-ovos-volume,volume.high,"volume to high"
skill-ovos-volume,volume.high,"volume level high"
skill-ovos-volume,volume.high,"volume to high level"
skill-ovos-volume,volume.high,"volume level to high"
skill-ovos-volume,volume.mute,"mute volume"
skill-ovos-volume,volume.mute,"mute"
skill-ovos-volume,volume.mute,"mute audio"
skill-ovos-volume,volume.low,"volume to low"
skill-ovos-volume,volume.low,"volume level to low"
skill-ovos-volume,volume.low,"low volume"
skill-ovos-volume,volume.low,"volume level low"
skill-ovos-volume,volume.low,"volume low"
skill-ovos-wordnet,hypernym,"what is a hypernym of {query}"
skill-ovos-wordnet,hypernym,"what is the hypernym of {query}"
skill-ovos-wordnet,hypernym,"what are the hypernyms of {query}"
skill-ovos-wordnet,antonym,"what is a antonym of {query}"
skill-ovos-wordnet,antonym,"what is the antonym of {query}"
skill-ovos-wordnet,antonym,"what are the antonyms of {query}"
skill-ovos-wordnet,hyponym,"what is a hyponym of {query}"
skill-ovos-wordnet,hyponym,"what is the hyponym of {query}"
skill-ovos-wordnet,hyponym,"what are the hyponyms of {query}"
skill-ovos-wordnet,holonym,"what is a holonym of {query}"
skill-ovos-wordnet,holonym,"what is the holonym of {query}"
skill-ovos-wordnet,holonym,"what are the holonyms of {query}"
skill-ovos-wordnet,definition,"what is a {query}"
skill-ovos-wordnet,definition,"what is the definition of {query}"
skill-ovos-wordnet,search_wordnet,"search wordnet for {query}"
skill-ovos-wordnet,search_wordnet,"search word net for {query}"
skill-ovos-wordnet,search_wordnet,"ask word net about {query}"
skill-ovos-wordnet,search_wordnet,"ask wordnet about {query}"
skill-ovos-wordnet,search_wordnet,"what does wordnet say about {query}"
skill-ovos-wordnet,search_wordnet,"what does word net say about {query}"
skill-ovos-wordnet,lemma,"what is a lemma of {query}"
skill-ovos-wordnet,lemma,"what is the lemma of {query}"
skill-ovos-wordnet,lemma,"what are the lemmas of {query}"
skill-ovos-wolfie,search_wolfie,"search wolfram alpha for {query}"
skill-ovos-wolfie,search_wolfie,"search wolfram for {query}"
skill-ovos-wolfie,search_wolfie,"ask the wolfram about {query}"
skill-ovos-wolfie,search_wolfie,"ask the wolfram alpha about {query}"
skill-ovos-wolfie,search_wolfie,"what does wolfram alpha say about {query}"
skill-ovos-wolfie,search_wolfie,"what does wolfram say about {query}"
skill-ovos-wolfie,search_wolfie,"ask the wolf {query}"
skill-ovos-wolfie,search_wolfie,"search the wolf for {query}"
skill-ovos-wolfie,search_wolfie,"what does the wolf say about {query}"
skill-ovos-wikipedia,wikiroulette,"wikipedia roulette"
skill-ovos-wikipedia,wikiroulette,"wiki roulette"
skill-ovos-wikipedia,wikiroulette,"play the wikipedia roulette"
skill-ovos-wikipedia,wikiroulette,"play the wiki roulette"
skill-ovos-wikipedia,wikiroulette,"play wikipedia roulette"
skill-ovos-wikipedia,wikiroulette,"play wiki roulette"
skill-ovos-wikipedia,wikiroulette,"random wikipedia page"
skill-ovos-wikipedia,wikiroulette,"random wiki page"
skill-ovos-wikipedia,wikiroulette,"random wikipedia"
skill-ovos-wikipedia,wikiroulette,"random wiki"
skill-ovos-wikipedia,wikiroulette,"open random wikipedia"
skill-ovos-wikipedia,wikiroulette,"open random wiki"
skill-ovos-wikipedia,wikiroulette,"display random wikipedia"
skill-ovos-wikipedia,wikiroulette,"display random wiki"
skill-ovos-wikipedia,wikiroulette,"show random wikipedia"
skill-ovos-wikipedia,wikiroulette,"show random wiki"
skill-ovos-wikipedia,query,"tell me about {keyword}"
skill-ovos-wikipedia,query,"what is {keyword}"
skill-ovos-wikipedia,query,"who was {keyword}"
skill-ovos-wikipedia,query,"who is {keyword}"
skill-ovos-wikipedia,query,"What do you know about {keyword}"
skill-ovos-wikipedia,query,"Give me information about {keyword}"
skill-ovos-wikipedia,query,"I'm curious about {keyword}"
skill-ovos-wikipedia,query,"I'd like to know about {keyword}"
skill-ovos-wikipedia,query,"I'd like to know more about {keyword}"
skill-ovos-wikipedia,query,"Can you explain what {keyword} is"
skill-ovos-wikipedia,query,"Can you enlighten me about {keyword}"
skill-ovos-wikipedia,query,"I'm seeking details about {keyword}"
skill-ovos-wikipedia,query,"Can you provide details on {keyword}"
skill-ovos-wikipedia,wiki,"wikipedia {query}"
skill-ovos-wikipedia,wiki,"wiki {query}"
skill-ovos-wikipedia,wiki,"what does wikipedia say about {query}"
skill-ovos-wikipedia,wiki,"what does wiki say about {query}"
skill-ovos-wikipedia,wiki,"check wikipedia for {query}"
skill-ovos-wikipedia,wiki,"check wiki for {query}"
skill-ovos-wikipedia,wiki,"search wikipedia for {query}"
skill-ovos-wikipedia,wiki,"search wiki for {query}"
skill-ovos-wallpapers,picture.about,"new image with {query}"
skill-ovos-wallpapers,picture.about,"new image for {query}"
skill-ovos-wallpapers,picture.about,"new image about {query}"
skill-ovos-wallpapers,picture.about,"new photo with {query}"
skill-ovos-wallpapers,picture.about,"new photo for {query}"
skill-ovos-wallpapers,picture.about,"new photo about {query}"
skill-ovos-wallpapers,picture.about,"new picture with {query}"
skill-ovos-wallpapers,picture.about,"new picture for {query}"
skill-ovos-wallpapers,picture.about,"new picture about {query}"
skill-ovos-wallpapers,picture.about,"random image with {query}"
skill-ovos-wallpapers,picture.about,"random image for {query}"
skill-ovos-wallpapers,picture.about,"random image about {query}"
skill-ovos-wallpapers,picture.about,"random photo with {query}"
skill-ovos-wallpapers,picture.about,"random photo for {query}"
skill-ovos-wallpapers,picture.about,"random photo about {query}"
skill-ovos-wallpapers,picture.about,"random picture with {query}"
skill-ovos-wallpapers,picture.about,"random picture for {query}"
skill-ovos-wallpapers,picture.about,"random picture about {query}"
skill-ovos-wallpapers,picture.about,"display image with {query}"
skill-ovos-wallpapers,picture.about,"display image for {query}"
skill-ovos-wallpapers,picture.about,"display image about {query}"
skill-ovos-wallpapers,picture.about,"display photo with {query}"
skill-ovos-wallpapers,picture.about,"display photo for {query}"
skill-ovos-wallpapers,picture.about,"display photo about {query}"
skill-ovos-wallpapers,picture.about,"display picture with {query}"
skill-ovos-wallpapers,picture.about,"display picture for {query}"
skill-ovos-wallpapers,picture.about,"display picture about {query}"
skill-ovos-wallpapers,picture.about,"show image with {query}"
skill-ovos-wallpapers,picture.about,"show image for {query}"
skill-ovos-wallpapers,picture.about,"show image about {query}"
skill-ovos-wallpapers,picture.about,"show photo with {query}"
skill-ovos-wallpapers,picture.about,"show photo for {query}"
skill-ovos-wallpapers,picture.about,"show photo about {query}"
skill-ovos-wallpapers,picture.about,"show picture with {query}"
skill-ovos-wallpapers,picture.about,"show picture for {query}"
skill-ovos-wallpapers,picture.about,"show picture about {query}"
skill-ovos-wallpapers,picture.about,"display me a image with {query}"
skill-ovos-wallpapers,picture.about,"display me a image for {query}"
skill-ovos-wallpapers,picture.about,"display me a image about {query}"
skill-ovos-wallpapers,picture.about,"display me a photo with {query}"
skill-ovos-wallpapers,picture.about,"display me a photo for {query}"
skill-ovos-wallpapers,picture.about,"display me a photo about {query}"
skill-ovos-wallpapers,picture.about,"display me a picture with {query}"
skill-ovos-wallpapers,picture.about,"display me a picture for {query}"
skill-ovos-wallpapers,picture.about,"display me a picture about {query}"
skill-ovos-wallpapers,picture.about,"show me a image with {query}"
skill-ovos-wallpapers,picture.about,"show me a image for {query}"
skill-ovos-wallpapers,picture.about,"show me a image about {query}"
skill-ovos-wallpapers,picture.about,"show me a photo with {query}"
skill-ovos-wallpapers,picture.about,"show me a photo for {query}"
skill-ovos-wallpapers,picture.about,"show me a photo about {query}"
skill-ovos-wallpapers,picture.about,"show me a picture with {query}"
skill-ovos-wallpapers,picture.about,"show me a picture for {query}"
skill-ovos-wallpapers,picture.about,"show me a picture about {query}"
skill-ovos-wallpapers,picture.about,"display me a another image with {query}"
skill-ovos-wallpapers,picture.about,"display me a another image for {query}"
skill-ovos-wallpapers,picture.about,"display me a another image about {query}"
skill-ovos-wallpapers,picture.about,"display me a another photo with {query}"
skill-ovos-wallpapers,picture.about,"display me a another photo for {query}"
skill-ovos-wallpapers,picture.about,"display me a another photo about {query}"
skill-ovos-wallpapers,picture.about,"display me a another picture with {query}"
skill-ovos-wallpapers,picture.about,"display me a another picture for {query}"
skill-ovos-wallpapers,picture.about,"display me a another picture about {query}"
skill-ovos-wallpapers,picture.about,"display me a other image with {query}"
skill-ovos-wallpapers,picture.about,"display me a other image for {query}"
skill-ovos-wallpapers,picture.about,"display me a other image about {query}"
skill-ovos-wallpapers,picture.about,"display me a other photo with {query}"
skill-ovos-wallpapers,picture.about,"display me a other photo for {query}"
skill-ovos-wallpapers,picture.about,"display me a other photo about {query}"
skill-ovos-wallpapers,picture.about,"display me a other picture with {query}"
skill-ovos-wallpapers,picture.about,"display me a other picture for {query}"
skill-ovos-wallpapers,picture.about,"display me a other picture about {query}"
skill-ovos-wallpapers,picture.about,"display me a new image with {query}"
skill-ovos-wallpapers,picture.about,"display me a new image for {query}"
skill-ovos-wallpapers,picture.about,"display me a new image about {query}"
skill-ovos-wallpapers,picture.about,"display me a new photo with {query}"
skill-ovos-wallpapers,picture.about,"display me a new photo for {query}"
skill-ovos-wallpapers,picture.about,"display me a new photo about {query}"
skill-ovos-wallpapers,picture.about,"display me a new picture with {query}"
skill-ovos-wallpapers,picture.about,"display me a new picture for {query}"
skill-ovos-wallpapers,picture.about,"display me a new picture about {query}"
skill-ovos-wallpapers,picture.about,"display me a random image with {query}"
skill-ovos-wallpapers,picture.about,"display me a random image for {query}"
skill-ovos-wallpapers,picture.about,"display me a random image about {query}"
skill-ovos-wallpapers,picture.about,"display me a random photo with {query}"
skill-ovos-wallpapers,picture.about,"display me a random photo for {query}"
skill-ovos-wallpapers,picture.about,"display me a random photo about {query}"
skill-ovos-wallpapers,picture.about,"display me a random picture with {query}"
skill-ovos-wallpapers,picture.about,"display me a random picture for {query}"
skill-ovos-wallpapers,picture.about,"display me a random picture about {query}"
skill-ovos-wallpapers,picture.about,"show me a another image with {query}"
skill-ovos-wallpapers,picture.about,"show me a another image for {query}"
skill-ovos-wallpapers,picture.about,"show me a another image about {query}"
skill-ovos-wallpapers,picture.about,"show me a another photo with {query}"
skill-ovos-wallpapers,picture.about,"show me a another photo for {query}"
skill-ovos-wallpapers,picture.about,"show me a another photo about {query}"
skill-ovos-wallpapers,picture.about,"show me a another picture with {query}"
skill-ovos-wallpapers,picture.about,"show me a another picture for {query}"
skill-ovos-wallpapers,picture.about,"show me a another picture about {query}"
skill-ovos-wallpapers,picture.about,"show me a other image with {query}"
skill-ovos-wallpapers,picture.about,"show me a other image for {query}"
skill-ovos-wallpapers,picture.about,"show me a other image about {query}"
skill-ovos-wallpapers,picture.about,"show me a other photo with {query}"
skill-ovos-wallpapers,picture.about,"show me a other photo for {query}"
skill-ovos-wallpapers,picture.about,"show me a other photo about {query}"
skill-ovos-wallpapers,picture.about,"show me a other picture with {query}"
skill-ovos-wallpapers,picture.about,"show me a other picture for {query}"
skill-ovos-wallpapers,picture.about,"show me a other picture about {query}"
skill-ovos-wallpapers,picture.about,"show me a new image with {query}"
skill-ovos-wallpapers,picture.about,"show me a new image for {query}"
skill-ovos-wallpapers,picture.about,"show me a new image about {query}"
skill-ovos-wallpapers,picture.about,"show me a new photo with {query}"
skill-ovos-wallpapers,picture.about,"show me a new photo for {query}"
skill-ovos-wallpapers,picture.about,"show me a new photo about {query}"
skill-ovos-wallpapers,picture.about,"show me a new picture with {query}"
skill-ovos-wallpapers,picture.about,"show me a new picture for {query}"
skill-ovos-wallpapers,picture.about,"show me a new picture about {query}"
skill-ovos-wallpapers,picture.about,"show me a random image with {query}"
skill-ovos-wallpapers,picture.about,"show me a random image for {query}"
skill-ovos-wallpapers,picture.about,"show me a random image about {query}"
skill-ovos-wallpapers,picture.about,"show me a random photo with {query}"
skill-ovos-wallpapers,picture.about,"show me a random photo for {query}"
skill-ovos-wallpapers,picture.about,"show me a random photo about {query}"
skill-ovos-wallpapers,picture.about,"show me a random picture with {query}"
skill-ovos-wallpapers,picture.about,"show me a random picture for {query}"
skill-ovos-wallpapers,picture.about,"show me a random picture about {query}"
skill-ovos-wallpapers,picture.about,"display another image with {query}"
skill-ovos-wallpapers,picture.about,"display another image for {query}"
skill-ovos-wallpapers,picture.about,"display another image about {query}"
skill-ovos-wallpapers,picture.about,"display another photo with {query}"
skill-ovos-wallpapers,picture.about,"display another photo for {query}"
skill-ovos-wallpapers,picture.about,"display another photo about {query}"
skill-ovos-wallpapers,picture.about,"display another picture with {query}"
skill-ovos-wallpapers,picture.about,"display another picture for {query}"
skill-ovos-wallpapers,picture.about,"display another picture about {query}"
skill-ovos-wallpapers,picture.about,"display other image with {query}"
skill-ovos-wallpapers,picture.about,"display other image for {query}"
skill-ovos-wallpapers,picture.about,"display other image about {query}"
skill-ovos-wallpapers,picture.about,"display other photo with {query}"
skill-ovos-wallpapers,picture.about,"display other photo for {query}"
skill-ovos-wallpapers,picture.about,"display other photo about {query}"
skill-ovos-wallpapers,picture.about,"display other picture with {query}"
skill-ovos-wallpapers,picture.about,"display other picture for {query}"
skill-ovos-wallpapers,picture.about,"display other picture about {query}"
skill-ovos-wallpapers,picture.about,"display new image with {query}"
skill-ovos-wallpapers,picture.about,"display new image for {query}"
skill-ovos-wallpapers,picture.about,"display new image about {query}"
skill-ovos-wallpapers,picture.about,"display new photo with {query}"
skill-ovos-wallpapers,picture.about,"display new photo for {query}"
skill-ovos-wallpapers,picture.about,"display new photo about {query}"
skill-ovos-wallpapers,picture.about,"display new picture with {query}"
skill-ovos-wallpapers,picture.about,"display new picture for {query}"
skill-ovos-wallpapers,picture.about,"display new picture about {query}"
skill-ovos-wallpapers,picture.about,"display random image with {query}"
skill-ovos-wallpapers,picture.about,"display random image for {query}"
skill-ovos-wallpapers,picture.about,"display random image about {query}"
skill-ovos-wallpapers,picture.about,"display random photo with {query}"
skill-ovos-wallpapers,picture.about,"display random photo for {query}"
skill-ovos-wallpapers,picture.about,"display random photo about {query}"
skill-ovos-wallpapers,picture.about,"display random picture with {query}"
skill-ovos-wallpapers,picture.about,"display random picture for {query}"
skill-ovos-wallpapers,picture.about,"display random picture about {query}"
skill-ovos-wallpapers,picture.about,"show another image with {query}"
skill-ovos-wallpapers,picture.about,"show another image for {query}"
skill-ovos-wallpapers,picture.about,"show another image about {query}"
skill-ovos-wallpapers,picture.about,"show another photo with {query}"
skill-ovos-wallpapers,picture.about,"show another photo for {query}"
skill-ovos-wallpapers,picture.about,"show another photo about {query}"
skill-ovos-wallpapers,picture.about,"show another picture with {query}"
skill-ovos-wallpapers,picture.about,"show another picture for {query}"
skill-ovos-wallpapers,picture.about,"show another picture about {query}"
skill-ovos-wallpapers,picture.about,"show other image with {query}"
skill-ovos-wallpapers,picture.about,"show other image for {query}"
skill-ovos-wallpapers,picture.about,"show other image about {query}"
skill-ovos-wallpapers,picture.about,"show other photo with {query}"
skill-ovos-wallpapers,picture.about,"show other photo for {query}"
skill-ovos-wallpapers,picture.about,"show other photo about {query}"
skill-ovos-wallpapers,picture.about,"show other picture with {query}"
skill-ovos-wallpapers,picture.about,"show other picture for {query}"
skill-ovos-wallpapers,picture.about,"show other picture about {query}"
skill-ovos-wallpapers,picture.about,"show new image with {query}"
skill-ovos-wallpapers,picture.about,"show new image for {query}"
skill-ovos-wallpapers,picture.about,"show new image about {query}"
skill-ovos-wallpapers,picture.about,"show new photo with {query}"
skill-ovos-wallpapers,picture.about,"show new photo for {query}"
skill-ovos-wallpapers,picture.about,"show new photo about {query}"
skill-ovos-wallpapers,picture.about,"show new picture with {query}"
skill-ovos-wallpapers,picture.about,"show new picture for {query}"
skill-ovos-wallpapers,picture.about,"show new picture about {query}"
skill-ovos-wallpapers,picture.about,"show random image with {query}"
skill-ovos-wallpapers,picture.about,"show random image for {query}"
skill-ovos-wallpapers,picture.about,"show random image about {query}"
skill-ovos-wallpapers,picture.about,"show random photo with {query}"
skill-ovos-wallpapers,picture.about,"show random photo for {query}"
skill-ovos-wallpapers,picture.about,"show random photo about {query}"
skill-ovos-wallpapers,picture.about,"show random picture with {query}"
skill-ovos-wallpapers,picture.about,"show random picture for {query}"
skill-ovos-wallpapers,picture.about,"show random picture about {query}"
skill-ovos-wallpapers,picture.random,"new image"
skill-ovos-wallpapers,picture.random,"new photo"
skill-ovos-wallpapers,picture.random,"new picture"
skill-ovos-wallpapers,picture.random,"random image"
skill-ovos-wallpapers,picture.random,"random photo"
skill-ovos-wallpapers,picture.random,"random picture"
skill-ovos-wallpapers,picture.random,"display image"
skill-ovos-wallpapers,picture.random,"display photo"
skill-ovos-wallpapers,picture.random,"display picture"
skill-ovos-wallpapers,picture.random,"show image"
skill-ovos-wallpapers,picture.random,"show photo"
skill-ovos-wallpapers,picture.random,"show picture"
skill-ovos-wallpapers,picture.random,"display me a image"
skill-ovos-wallpapers,picture.random,"display me a photo"
skill-ovos-wallpapers,picture.random,"display me a picture"
skill-ovos-wallpapers,picture.random,"show me a image"
skill-ovos-wallpapers,picture.random,"show me a photo"
skill-ovos-wallpapers,picture.random,"show me a picture"
skill-ovos-wallpapers,picture.random,"display me a another image"
skill-ovos-wallpapers,picture.random,"display me a another photo"
skill-ovos-wallpapers,picture.random,"display me a another picture"
skill-ovos-wallpapers,picture.random,"display me a other image"
skill-ovos-wallpapers,picture.random,"display me a other photo"
skill-ovos-wallpapers,picture.random,"display me a other picture"
skill-ovos-wallpapers,picture.random,"display me a new image"
skill-ovos-wallpapers,picture.random,"display me a new photo"
skill-ovos-wallpapers,picture.random,"display me a new picture"
skill-ovos-wallpapers,picture.random,"display me a random image"
skill-ovos-wallpapers,picture.random,"display me a random photo"
skill-ovos-wallpapers,picture.random,"display me a random picture"
skill-ovos-wallpapers,picture.random,"show me a another image"
skill-ovos-wallpapers,picture.random,"show me a another photo"
skill-ovos-wallpapers,picture.random,"show me a another picture"
skill-ovos-wallpapers,picture.random,"show me a other image"
skill-ovos-wallpapers,picture.random,"show me a other photo"
skill-ovos-wallpapers,picture.random,"show me a other picture"
skill-ovos-wallpapers,picture.random,"show me a new image"
skill-ovos-wallpapers,picture.random,"show me a new photo"
skill-ovos-wallpapers,picture.random,"show me a new picture"
skill-ovos-wallpapers,picture.random,"show me a random image"
skill-ovos-wallpapers,picture.random,"show me a random photo"
skill-ovos-wallpapers,picture.random,"show me a random picture"
skill-ovos-wallpapers,picture.random,"display another image"
skill-ovos-wallpapers,picture.random,"display another photo"
skill-ovos-wallpapers,picture.random,"display another picture"
skill-ovos-wallpapers,picture.random,"display other image"
skill-ovos-wallpapers,picture.random,"display other photo"
skill-ovos-wallpapers,picture.random,"display other picture"
skill-ovos-wallpapers,picture.random,"display new image"
skill-ovos-wallpapers,picture.random,"display new photo"
skill-ovos-wallpapers,picture.random,"display new picture"
skill-ovos-wallpapers,picture.random,"display random image"
skill-ovos-wallpapers,picture.random,"display random photo"
skill-ovos-wallpapers,picture.random,"display random picture"
skill-ovos-wallpapers,picture.random,"show another image"
skill-ovos-wallpapers,picture.random,"show another photo"
skill-ovos-wallpapers,picture.random,"show another picture"
skill-ovos-wallpapers,picture.random,"show other image"
skill-ovos-wallpapers,picture.random,"show other photo"
skill-ovos-wallpapers,picture.random,"show other picture"
skill-ovos-wallpapers,picture.random,"show new image"
skill-ovos-wallpapers,picture.random,"show new photo"
skill-ovos-wallpapers,picture.random,"show new picture"
skill-ovos-wallpapers,picture.random,"show random image"
skill-ovos-wallpapers,picture.random,"show random photo"
skill-ovos-wallpapers,picture.random,"show random picture"
skill-ovos-wallpapers,wallpaper.about,"new wall paper to {query}"
skill-ovos-wallpapers,wallpaper.about,"new wall paper with {query}"
skill-ovos-wallpapers,wallpaper.about,"new wall paper for {query}"
skill-ovos-wallpapers,wallpaper.about,"new wall paper about {query}"
skill-ovos-wallpapers,wallpaper.about,"new wallpaper to {query}"
skill-ovos-wallpapers,wallpaper.about,"new wallpaper with {query}"
skill-ovos-wallpapers,wallpaper.about,"new wallpaper for {query}"
skill-ovos-wallpapers,wallpaper.about,"new wallpaper about {query}"
skill-ovos-wallpapers,wallpaper.about,"random wall paper to {query}"
skill-ovos-wallpapers,wallpaper.about,"random wall paper with {query}"
skill-ovos-wallpapers,wallpaper.about,"random wall paper for {query}"
skill-ovos-wallpapers,wallpaper.about,"random wall paper about {query}"
skill-ovos-wallpapers,wallpaper.about,"random wallpaper to {query}"
skill-ovos-wallpapers,wallpaper.about,"random wallpaper with {query}"
skill-ovos-wallpapers,wallpaper.about,"random wallpaper for {query}"
skill-ovos-wallpapers,wallpaper.about,"random wallpaper about {query}"
skill-ovos-wallpapers,wallpaper.about,"change wall paper to {query}"
skill-ovos-wallpapers,wallpaper.about,"change wall paper with {query}"
skill-ovos-wallpapers,wallpaper.about,"change wall paper for {query}"
skill-ovos-wallpapers,wallpaper.about,"change wall paper about {query}"
skill-ovos-wallpapers,wallpaper.about,"change wallpaper to {query}"
skill-ovos-wallpapers,wallpaper.about,"change wallpaper with {query}"
skill-ovos-wallpapers,wallpaper.about,"change wallpaper for {query}"
skill-ovos-wallpapers,wallpaper.about,"change wallpaper about {query}"
skill-ovos-wallpapers,wallpaper.random,"new wall paper"
skill-ovos-wallpapers,wallpaper.random,"new wallpaper"
skill-ovos-wallpapers,wallpaper.random,"random wall paper"
skill-ovos-wallpapers,wallpaper.random,"random wallpaper"
skill-ovos-wallpapers,wallpaper.random,"change wall paper"
skill-ovos-wallpapers,wallpaper.random,"change wallpaper"
skill-ovos-parrot,repeat.tts,"What did you tell me ?"
skill-ovos-parrot,repeat.tts,"What did you say ?"
skill-ovos-parrot,repeat.tts,"What did you just tell me ?"
skill-ovos-parrot,repeat.tts,"What did you just say ?"
skill-ovos-parrot,repeat.tts,"Repeat what you said."
skill-ovos-parrot,repeat.tts,"Repeat what you just said."
skill-ovos-parrot,repeat.tts,"Can you repeat that?"
skill-ovos-parrot,repeat.tts,"Repeat that."
skill-ovos-parrot,repeat.tts,"say again?"
skill-ovos-parrot,repeat.tts,"say that again?"
skill-ovos-parrot,repeat.tts,"Can you say again?"
skill-ovos-parrot,repeat.tts,"Can you say that again?"
skill-ovos-parrot,repeat.tts,"Say that one more time ."
skill-ovos-parrot,repeat.tts,"Say that once more ."
skill-ovos-parrot,repeat.tts,"What was that?"
skill-ovos-parrot,repeat.tts,"Come again?"
skill-ovos-parrot,start_parrot,"start parroting"
skill-ovos-parrot,start_parrot,"engage parrot mode"
skill-ovos-parrot,start_parrot,"parrot mode on"
skill-ovos-parrot,start_parrot,"parrot mode start"
skill-ovos-parrot,start_parrot,"start parrot mode"
skill-ovos-parrot,start_parrot,"start parrot"
skill-ovos-parrot,start_parrot,"repeat everything"
skill-ovos-parrot,start_parrot,"repeat everything you hear"
skill-ovos-parrot,stop_parrot,"stop parroting"
skill-ovos-parrot,stop_parrot,"stop parrot mode"
skill-ovos-parrot,stop_parrot,"disengage parroting"
skill-ovos-parrot,stop_parrot,"disengage parrot mode"
skill-ovos-parrot,stop_parrot,"abort parroting"
skill-ovos-parrot,stop_parrot,"abort parrot mode"
skill-ovos-parrot,stop_parrot,"cancel parroting"
skill-ovos-parrot,stop_parrot,"cancel parrot mode"
skill-ovos-parrot,stop_parrot,"disable parroting"
skill-ovos-parrot,stop_parrot,"disable parrot mode"
skill-ovos-parrot,stop_parrot,"parroting stop"
skill-ovos-parrot,stop_parrot,"parrot mode stop"
skill-ovos-parrot,stop_parrot,"parroting disengage"
skill-ovos-parrot,stop_parrot,"parrot mode disengage"
skill-ovos-parrot,stop_parrot,"parroting abort"
skill-ovos-parrot,stop_parrot,"parrot mode abort"
skill-ovos-parrot,stop_parrot,"parroting cancel"
skill-ovos-parrot,stop_parrot,"parrot mode cancel"
skill-ovos-parrot,stop_parrot,"parroting disable"
skill-ovos-parrot,stop_parrot,"parrot mode disable"
skill-ovos-parrot,stop_parrot,"stop repeating me"
skill-ovos-parrot,repeat.stt,"What did I tell you ?"
skill-ovos-parrot,repeat.stt,"What did I say ?"
skill-ovos-parrot,repeat.stt,"What did I just tell you ?"
skill-ovos-parrot,repeat.stt,"What did I just say ?"
skill-ovos-parrot,repeat.stt,"What did you think I said?"
skill-ovos-parrot,repeat.stt,"What did you hear me say?"
skill-ovos-parrot,repeat.stt,"Tell me what I said."
skill-ovos-parrot,repeat.stt,"Tell me what I just said."
skill-ovos-parrot,speak,"say after me {sentence}"
skill-ovos-parrot,speak,"speak {sentence}"
skill-ovos-parrot,speak,"repeat {sentence}"
skill-ovos-parrot,speak,"say {sentence}"
skill-ovos-parrot,speak,"speak {sentence} after me"
skill-ovos-parrot,speak,"repeat {sentence} after me"
skill-ovos-parrot,speak,"say {sentence} after me"
skill-ovos-parrot,did.you.hear.me,"Do you hear this ?"
skill-ovos-parrot,did.you.hear.me,"Do you hear that ?"
skill-ovos-parrot,did.you.hear.me,"Do you hear me ?"
skill-ovos-parrot,did.you.hear.me,"Did you hear this ?"
skill-ovos-parrot,did.you.hear.me,"Did you hear that ?"
skill-ovos-parrot,did.you.hear.me,"Did you hear me ?"
skill-ovos-parrot,did.you.hear.me,"Can you hear this ?"
skill-ovos-parrot,did.you.hear.me,"Can you hear that ?"
skill-ovos-parrot,did.you.hear.me,"Can you hear me ?"
skill-ovos-weather,do-i-need-an-umbrella,"will it rain today"
skill-ovos-weather,do-i-need-an-umbrella,"is there rain in the forecast"
skill-ovos-weather,do-i-need-an-umbrella,"do I need to prepare for rain"
skill-ovos-weather,do-i-need-an-umbrella,"is it going to be rainy"
skill-ovos-weather,do-i-need-an-umbrella,"do I need an umbrella tomorrow"
skill-ovos-weather,do-i-need-an-umbrella,"should I bring my umbrella today"
skill-ovos-weather,do-i-need-an-umbrella,"do I need a raincoat tomorrow"
skill-ovos-weather,do-i-need-an-umbrella,"will it be rainy outside"
skill-ovos-weather,do-i-need-an-umbrella,"is rain expected later"
skill-ovos-weather,do-i-need-an-umbrella,"do I need to worry about rain"
skill-ovos-weather,do-i-need-an-umbrella,"will there be showers today"
skill-ovos-weather,do-i-need-an-umbrella,"should I carry an umbrella with me"
skill-ovos-weather,do-i-need-an-umbrella,"is rain in the weather forecast"
skill-ovos-weather,do-i-need-an-umbrella,"do I need to bring a rain jacket"
skill-ovos-weather,do-i-need-an-umbrella,"will it be raining tomorrow"
skill-ovos-weather,do-i-need-an-umbrella,"should I be prepared for rain"
skill-ovos-weather,do-i-need-an-umbrella,"is there a chance of rain today"
skill-ovos-weather,do-i-need-an-umbrella,"do I need an umbrella for my commute"
skill-ovos-weather,do-i-need-an-umbrella,"should I pack a raincoat for the trip"
skill-ovos-weather,do-i-need-an-umbrella,"will it rain during the weekend"
skill-ovos-weather,do-i-need-an-umbrella,"do I need to take precautions for rain"
skill-ovos-weather,do-i-need-an-umbrella,"should I bring my rain boots"
skill-ovos-weather,do-i-need-an-umbrella,"is rain expected in the evening"
skill-ovos-weather,do-i-need-an-umbrella,"do I need to bring an umbrella to the event"
skill-ovos-weather,do-i-need-an-umbrella,"should I have a backup plan for rain"
skill-ovos-weather,do-i-need-an-umbrella,"will it be a rainy day"
skill-ovos-weather,do-i-need-an-umbrella,"do I need to protect myself from rain"
skill-ovos-weather,do-i-need-an-umbrella,"should I carry an umbrella in my bag"
skill-ovos-weather,do-i-need-an-umbrella,"is there a possibility of rain tomorrow"
skill-ovos-weather,do-i-need-an-umbrella,"do I need to dress for rainy weather"
skill-ovos-weather,do-i-need-an-umbrella,"should I bring an umbrella to the park"
skill-ovos-weather,do-i-need-an-umbrella,"will it rain heavily"
skill-ovos-weather,do-i-need-an-umbrella,"do I need to prepare for a rainstorm"
skill-ovos-weather,do-i-need-an-umbrella,"should I bring a rain hat"
skill-ovos-weather,do-i-need-an-umbrella,"is rain likely today"
skill-ovos-weather,do-i-need-an-umbrella,"do I need to watch out for rain showers"
skill-ovos-local-media,open.file.browser,"show my file browser drive"
skill-ovos-local-media,open.file.browser,"show my file browser"
skill-ovos-local-media,open.file.browser,"show file browser drive"
skill-ovos-local-media,open.file.browser,"show file browser"
skill-ovos-local-media,open.file.browser,"open my file browser drive"
skill-ovos-local-media,open.file.browser,"open my file browser"
skill-ovos-local-media,open.file.browser,"open file browser drive"
skill-ovos-local-media,open.file.browser,"open file browser"
skill-ovos-local-media,open.file.browser,"start file browser"
skill-ovos-local-media,open.file.browser,"show file browser"
skill-ovos-local-media,open.file.browser,"open file browser"
skill-ovos-local-media,open.file.browser,"start file browser app"
skill-ovos-local-media,open.file.browser,"show file browser app"
skill-ovos-local-media,open.file.browser,"open file browser app"
skill-ovos-local-media,open.file.browser,"show my usb drive"
skill-ovos-local-media,open.file.browser,"show my usb"
skill-ovos-local-media,open.file.browser,"show usb drive"
skill-ovos-local-media,open.file.browser,"show usb"
skill-ovos-local-media,open.file.browser,"open my usb drive"
skill-ovos-local-media,open.file.browser,"open my usb"
skill-ovos-local-media,open.file.browser,"open usb drive"
skill-ovos-local-media,open.file.browser,"open usb"
skill-ovos-local-media,open.file.browser,"start usb browser"
skill-ovos-local-media,open.file.browser,"show usb browser"
skill-ovos-local-media,open.file.browser,"open usb browser"
skill-ovos-local-media,open.file.browser,"start usb browser app"
skill-ovos-local-media,open.file.browser,"show usb browser app"
skill-ovos-local-media,open.file.browser,"open usb browser app"
skill-ovos-local-media,open.file.browser,"show my usb"
skill-ovos-local-media,open.file.browser,"start file browser"
skill-ovos-local-media,open.file.browser,"open file browser drive"
skill-ovos-local-media,open.file.browser,"show usb drive"
skill-ovos-local-media,open.file.browser,"start usb browser"
skill-ovos-local-media,open.file.browser,"show my file browser drive"
skill-ovos-local-media,open.file.browser,"start usb browser app"
skill-ovos-local-media,open.file.browser,"show usb browser app"
skill-ovos-local-media,open.file.browser,"open file browser app"
skill-ovos-local-media,open.file.browser,"open my usb"
skill-ovos-local-media,open.file.browser,"open my usb drive"
skill-ovos-local-media,open.file.browser,"show my file browser"
skill-ovos-local-media,open.file.browser,"open file browser"
skill-ovos-local-media,open.file.browser,"show usb"
skill-ovos-local-media,open.file.browser,"show file browser app"
skill-ovos-local-media,open.file.browser,"open usb browser app"
skill-ovos-local-media,open.file.browser,"show file browser drive"
skill-ovos-local-media,open.file.browser,"show file browser"
skill-ovos-local-media,open.file.browser,"show my usb drive"
skill-ovos-local-media,open.file.browser,"open usb browser"
skill-ovos-local-media,open.file.browser,"show usb browser"
skill-ovos-local-media,open.file.browser,"open usb"
skill-ovos-local-media,open.file.browser,"open my file browser"
skill-ovos-local-media,open.file.browser,"open usb drive"
skill-ovos-local-media,open.file.browser,"open my file browser drive"
skill-ovos-local-media,open.file.browser,"start file browser app"
skill-ovos-naptime,naptime,"go to sleep"
skill-ovos-naptime,naptime,"nap time"
skill-ovos-naptime,naptime,"let's take a nap"
skill-ovos-naptime,naptime,"time to sleep"
skill-ovos-naptime,naptime,"enter sleep mode"
skill-ovos-naptime,naptime,"begin naptime"
skill-ovos-naptime,naptime,"start nap"
skill-ovos-naptime,naptime,"activate sleep mode"
skill-ovos-naptime,naptime,"initiate naptime"
skill-ovos-naptime,naptime,"enter rest mode"
skill-ovos-naptime,naptime,"let's go to sleep"
skill-ovos-naptime,naptime,"time for a nap"
skill-ovos-naptime,naptime,"begin sleeping"
skill-ovos-naptime,naptime,"initiate sleep mode"
skill-ovos-naptime,naptime,"enter hibernation"
skill-ovos-naptime,naptime,"initiate quiet time"
skill-ovos-naptime,naptime,"begin downtime"
skill-ovos-naptime,naptime,"start snooze mode"
skill-ovos-naptime,naptime,"enter slumber mode"
skill-ovos-naptime,naptime,"begin power nap"
skill-ovos-naptime,naptime,"initiate siesta"
skill-ovos-naptime,naptime,"start sleep session"
skill-ovos-naptime,naptime,"enter dreamland"
skill-ovos-naptime,naptime,"start nap period"
skill-ovos-naptime,naptime,"initiate siesta mode"
skill-ovos-naptime,naptime,"start doze-off"
skill-ovos-naptime,naptime,"initiate shut-eye"
skill-ovos-naptime,naptime,"let's have some quiet time"
skill-ovos-naptime,naptime,"begin sleep interval"
skill-ovos-naptime,naptime,"start slumber time"
skill-ovos-naptime,naptime,"enter silent mode"
skill-ovos-personal,WhenWereYouBorn,"when were you born"
skill-ovos-personal,WhenWereYouBorn,"when were you invented"
skill-ovos-personal,WhenWereYouBorn,"when were you programmed"
skill-ovos-personal,WhenWereYouBorn,"when were you made"
skill-ovos-personal,WhenWereYouBorn,"when were you created"
skill-ovos-personal,WhereWereYouBorn,"where were you born"
skill-ovos-personal,WhereWereYouBorn,"where were you invented"
skill-ovos-personal,WhereWereYouBorn,"where were you programmed"
skill-ovos-personal,WhereWereYouBorn,"where were you made"
skill-ovos-personal,WhereWereYouBorn,"where were you created"
skill-ovos-personal,WhoMadeYou,"who built you"
skill-ovos-personal,WhoMadeYou,"who invented you"
skill-ovos-personal,WhoMadeYou,"who programmed you"
skill-ovos-personal,WhoMadeYou,"who made you"
skill-ovos-personal,WhoMadeYou,"who created you"
skill-ovos-personal,WhoMadeYou,"who were you invented by"
skill-ovos-personal,WhoMadeYou,"who were you programmed by"
skill-ovos-personal,WhoMadeYou,"who were you made by"
skill-ovos-personal,WhoMadeYou,"who were you created by"
skill-ovos-personal,WhatAreYou,"what are you"
skill-ovos-personal,WhoAreYou,"who are you"
skill-ovos-homescreen,change.wallpaper,"change current wallpaper"
skill-ovos-homescreen,change.wallpaper,"change the wallpaper"
skill-ovos-homescreen,change.wallpaper,"change homescreen wallpaper"
skill-ovos-homescreen,change.wallpaper,"change wallpaper"
skill-ovos-homescreen,take.screenshot,"take screenshot"
skill-ovos-homescreen,take.screenshot,"take a screenshot"
skill-ovos-icanhazdadjokes,search_joke,"tell me a {search} joke"
skill-ovos-icanhazdadjokes,search_joke,"say a {search} joke"
skill-ovos-icanhazdadjokes,search_joke,"do you know any {search} jokes"
skill-ovos-icanhazdadjokes,search_joke,"can you tell {search} jokes"
skill-ovos-icanhazdadjokes,search_joke,"joke about {search}"
skill-ovos-icanhazdadjokes,search_joke,"tell me a joke about {search}"
skill-ovos-icanhazdadjokes,search_joke,"say a joke about {search}"
skill-ovos-icanhazdadjokes,search_joke,"do you know any jokes about {search}"
skill-ovos-icanhazdadjokes,search_joke,"can you tell jokes about {search}"
skill-ovos-icanhazdadjokes,joke,"tell me a joke"
skill-ovos-icanhazdadjokes,joke,"say a joke"
skill-ovos-icanhazdadjokes,joke,"do you know any jokes"
skill-ovos-icanhazdadjokes,joke,"can you tell jokes"
skill-ovos-icanhazdadjokes,joke,"make me laugh"
ovos-skill-iss-location,when_iss,"when is the space station passing above"
ovos-skill-iss-location,when_iss,"when is the space station passing above me"
ovos-skill-iss-location,when_iss,"when is the space station passing above us"
ovos-skill-iss-location,when_iss,"when is the space station passing over"
ovos-skill-iss-location,when_iss,"when is the space station passing over me"
ovos-skill-iss-location,when_iss,"when is the space station passing over us"
ovos-skill-iss-location,when_iss,"when is the space station passing by"
ovos-skill-iss-location,when_iss,"when is the space station passing by me"
ovos-skill-iss-location,when_iss,"when is the space station passing by us"
ovos-skill-iss-location,when_iss,"when is the international space station passing above"
ovos-skill-iss-location,when_iss,"when is the international space station passing above me"
ovos-skill-iss-location,when_iss,"when is the international space station passing above us"
ovos-skill-iss-location,when_iss,"when is the international space station passing over"
ovos-skill-iss-location,when_iss,"when is the international space station passing over me"
ovos-skill-iss-location,when_iss,"when is the international space station passing over us"
ovos-skill-iss-location,when_iss,"when is the international space station passing by"
ovos-skill-iss-location,when_iss,"when is the international space station passing by me"
ovos-skill-iss-location,when_iss,"when is the international space station passing by us"
ovos-skill-iss-location,when_iss,"when is the I S S passing above"
ovos-skill-iss-location,when_iss,"when is the I S S passing above me"
ovos-skill-iss-location,when_iss,"when is the I S S passing above us"
ovos-skill-iss-location,when_iss,"when is the I S S passing over"
ovos-skill-iss-location,when_iss,"when is the I S S passing over me"
ovos-skill-iss-location,when_iss,"when is the I S S passing over us"
ovos-skill-iss-location,when_iss,"when is the I S S passing by"
ovos-skill-iss-location,when_iss,"when is the I S S passing by me"
ovos-skill-iss-location,when_iss,"when is the I S S passing by us"
ovos-skill-iss-location,when_iss,"when is the ISS passing above"
ovos-skill-iss-location,when_iss,"when is the ISS passing above me"
ovos-skill-iss-location,when_iss,"when is the ISS passing above us"
ovos-skill-iss-location,when_iss,"when is the ISS passing over"
ovos-skill-iss-location,when_iss,"when is the ISS passing over me"
ovos-skill-iss-location,when_iss,"when is the ISS passing over us"
ovos-skill-iss-location,when_iss,"when is the ISS passing by"
ovos-skill-iss-location,when_iss,"when is the ISS passing by me"
ovos-skill-iss-location,when_iss,"when is the ISS passing by us"
ovos-skill-iss-location,when_iss,"when is the space station going to be above"
ovos-skill-iss-location,when_iss,"when is the space station going to be above me"
ovos-skill-iss-location,when_iss,"when is the space station going to be above us"
ovos-skill-iss-location,when_iss,"when is the space station going to be over"
ovos-skill-iss-location,when_iss,"when is the space station going to be over me"
ovos-skill-iss-location,when_iss,"when is the space station going to be over us"
ovos-skill-iss-location,when_iss,"when is the international space station going to be above"
ovos-skill-iss-location,when_iss,"when is the international space station going to be above me"
ovos-skill-iss-location,when_iss,"when is the international space station going to be above us"
ovos-skill-iss-location,when_iss,"when is the international space station going to be over"
ovos-skill-iss-location,when_iss,"when is the international space station going to be over me"
ovos-skill-iss-location,when_iss,"when is the international space station going to be over us"
ovos-skill-iss-location,when_iss,"when is the I S S going to be above"
ovos-skill-iss-location,when_iss,"when is the I S S going to be above me"
ovos-skill-iss-location,when_iss,"when is the I S S going to be above us"
ovos-skill-iss-location,when_iss,"when is the I S S going to be over"
ovos-skill-iss-location,when_iss,"when is the I S S going to be over me"
ovos-skill-iss-location,when_iss,"when is the I S S going to be over us"
ovos-skill-iss-location,when_iss,"when is the ISS going to be above"
ovos-skill-iss-location,when_iss,"when is the ISS going to be above me"
ovos-skill-iss-location,when_iss,"when is the ISS going to be above us"
ovos-skill-iss-location,when_iss,"when is the ISS going to be over"
ovos-skill-iss-location,when_iss,"when is the ISS going to be over me"
ovos-skill-iss-location,when_iss,"when is the ISS going to be over us"
ovos-skill-iss-location,where_iss,"where is the space station"
ovos-skill-iss-location,where_iss,"where is the international space station"
ovos-skill-iss-location,where_iss,"tell me the space station location"
ovos-skill-iss-location,where_iss,"tell me the international space station location"
ovos-skill-iss-location,where_iss,"what is the space station location"
ovos-skill-iss-location,where_iss,"what is the international space station location"
ovos-skill-iss-location,where_iss,"location of the space station"
ovos-skill-iss-location,where_iss,"location of the international space station"
ovos-skill-iss-location,where_iss,"where is the I S S"
ovos-skill-iss-location,where_iss,"where is the ISS"
ovos-skill-iss-location,where_iss,"tell me the I S S location"
ovos-skill-iss-location,where_iss,"tell me the ISS location"
ovos-skill-iss-location,where_iss,"what is the I S S location"
ovos-skill-iss-location,where_iss,"what is the ISS location"
ovos-skill-iss-location,where_iss,"location of the I S S"
ovos-skill-iss-location,where_iss,"location of the ISS"
ovos-skill-iss-location,about,"info about the space station"
ovos-skill-iss-location,about,"info about the international space station"
ovos-skill-iss-location,about,"what is the space station"
ovos-skill-iss-location,about,"what is the international space station"
ovos-skill-iss-location,about,"tell me about the space station"
ovos-skill-iss-location,about,"tell me about the international space station"
ovos-skill-iss-location,about,"talk about the space station"
ovos-skill-iss-location,about,"talk about the international space station"
ovos-skill-wikihow,howto,"how to {query}"
ovos-skill-wikihow,howto,"how do i {query}"
ovos-skill-wikihow,howto,"how can i {query}"
ovos-skill-wikihow,howto,"steps for {query}"
ovos-skill-wikihow,howto,"step by step {query}"
ovos-skill-wikihow,howto,"explain step by step {query}"
ovos-skill-wikihow,wikihow,"search wikihow {query}"
ovos-skill-wikihow,wikihow,"search wikihow for {query}"
ovos-skill-wikihow,wikihow,"search wiki how {query}"
ovos-skill-wikihow,wikihow,"search wiki how for {query}"
ovos-skill-wikihow,wikihow,"what does wikihow think about {query}"
ovos-skill-wikihow,wikihow,"what does wikihow say about {query}"
ovos-skill-wikihow,wikihow,"what does wiki how think about {query}"
ovos-skill-wikihow,wikihow,"what does wiki how say about {query}"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} minutes from now"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} minutes in {location}"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} minutes from now in {location}"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} hours from now"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} hours in {location}"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} seconds from now"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} seconds in {location}"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} seconds from now in {location}"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} minutes"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} hours"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} hours from now in {location}"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} seconds"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} minutes from now"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} minutes in {location}"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} minutes from now in {location}"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} hours from now"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} hours in {location}"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} seconds from now"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} seconds in {location}"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} seconds from now in {location}"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} minutes"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} hours"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} hours from now"
skill-ovos-date-time,what.time.will.it.be,"when is it {offset} seconds"
skill-ovos-date-time,what.time.will.it.be,"when will it be {offset} minutes from now"
skill-ovos-date-time,what.time.will.it.be,"when will it be {offset} minutes in {location}"
skill-ovos-date-time,what.time.will.it.be,"when will it be {offset} minutes from now in {location}"
skill-ovos-date-time,what.time.will.it.be,"when will it be {offset} hours from now"
skill-ovos-date-time,what.time.will.it.be,"when will it be {offset} hours in {location}"
skill-ovos-date-time,what.time.will.it.be,"when will it be {offset} seconds from now"
skill-ovos-date-time,what.time.will.it.be,"when will it be {offset} seconds in {location}"
skill-ovos-date-time,what.time.will.it.be,"when will it be {offset} seconds from now in {location}"
skill-ovos-date-time,what.time.will.it.be,"when will it be {offset} minutes"
skill-ovos-date-time,what.time.will.it.be,"when will it be {offset} hours"
skill-ovos-date-time,what.time.will.it.be,"when will it be {offset} hours from now"
skill-ovos-date-time,what.time.will.it.be,"when will it be {offset} seconds"
skill-ovos-date-time,what.time.will.it.be,"what time will it be in {offset} minutes"
skill-ovos-date-time,what.time.will.it.be,"what time will it be in {offset} minutes in {location}"
skill-ovos-date-time,what.time.will.it.be,"what time will it be in {offset} minutes from now"
skill-ovos-date-time,what.time.will.it.be,"what time will it be in {offset} minutes from now in {location}"
skill-ovos-date-time,what.time.will.it.be,"what time will it be in {offset} hours"
skill-ovos-date-time,what.time.will.it.be,"what time will it be in {offset} hours in {location}"
skill-ovos-date-time,what.time.will.it.be,"what time will it be in {offset} hours from now"
skill-ovos-date-time,what.time.will.it.be,"what time will it be in {offset} hours from now in {location}"
skill-ovos-date-time,what.time.will.it.be,"what time will it be in {offset} seconds"
skill-ovos-date-time,what.time.will.it.be,"what time will it be in {offset} seconds in {location}"
skill-ovos-date-time,what.time.will.it.be,"what time will it be in {offset} seconds from now"
skill-ovos-date-time,what.time.will.it.be,"what time will it be in {offset} seconds from now in {location}"
skill-ovos-date-time,date.last.weekend,"what were the days for last weekend"
skill-ovos-date-time,date.last.weekend,"what date was last weekend"
skill-ovos-date-time,date.last.weekend,"what were the dates for last weekend"
skill-ovos-date-time,date.last.weekend,"what were the dates last weekend"
skill-ovos-date-time,date.last.weekend,"what was the date last weekend"
skill-ovos-date-time,date.last.weekend,"what days were last weekend"
skill-ovos-date-time,date.last.weekend,"what were the days last weekend"
skill-ovos-date-time,date.last.weekend,"what day was last weekend"
skill-ovos-date-time,date.last.weekend,"what dates were last weekend"
skill-ovos-date-time,date.last.weekend,"What were the days of the weekend before?"
skill-ovos-date-time,date.last.weekend,"What dates did last weekend cover?"
skill-ovos-date-time,date.last.weekend,"Which days fell under last weekend?"
skill-ovos-date-time,date.last.weekend,"Give me the dates for the previous weekend."
skill-ovos-date-time,date.last.weekend,"Tell me the days that comprised last weekend."
skill-ovos-date-time,date.last.weekend,"What days were part of the weekend just passed?"
skill-ovos-date-time,date.last.weekend,"Which dates were considered last weekend?"
skill-ovos-date-time,date.last.weekend,"Please provide the days for the weekend prior."
skill-ovos-date-time,date.last.weekend,"I'm interested in knowing the dates for last weekend."
skill-ovos-date-time,date.last.weekend,"Can you tell me which days were last weekend?"
skill-ovos-date-time,date.last.weekend,"Give me the specific dates for the weekend before."
skill-ovos-date-time,date.last.weekend,"What days did last weekend include?"
skill-ovos-date-time,date.last.weekend,"What were the dates of the preceding weekend?"
skill-ovos-date-time,date.last.weekend,"Inform me of the days that constituted last weekend."
skill-ovos-date-time,date.last.weekend,"What days fell within the last weekend?"
skill-ovos-date-time,date.last.weekend,"Please inform me of the dates for last weekend."
skill-ovos-date-time,date.last.weekend,"What dates did last weekend encompass?"
skill-ovos-date-time,date.last.weekend,"Which days were included in last weekend?"
skill-ovos-date-time,date.last.weekend,"Tell me the dates of the weekend that just passed."
skill-ovos-date-time,date.last.weekend,"Provide me with the days for the previous weekend."
skill-ovos-date-time,date.last.weekend,"Which dates constituted last weekend?"
skill-ovos-date-time,date.last.weekend,"When was the previous weekend?"
skill-ovos-date-time,date.last.weekend,"Tell me the dates of the weekend that just ended."
skill-ovos-date-time,date.last.weekend,"Which days were part of the weekend before this one?"
skill-ovos-date-time,date.last.weekend,"What were the dates for the weekend prior to this one?"
skill-ovos-date-time,date.last.weekend,"What days did the last weekend cover?"
skill-ovos-date-time,date.last.weekend,"Can you provide the dates of the weekend before this one?"
skill-ovos-date-time,date.last.weekend,"Give me the specific dates for the previous weekend."
skill-ovos-date-time,date.last.weekend,"Tell me the days that comprised the weekend just passed."
skill-ovos-date-time,date.last.weekend,"What days were included in the weekend before this one?"
skill-ovos-date-time,date.last.weekend,"Inform me of the dates for the weekend that just passed."
skill-ovos-date-time,date.last.weekend,"What were the dates of the preceding weekend?"
skill-ovos-date-time,date.last.weekend,"Can you tell me the days for the previous weekend?"
skill-ovos-date-time,date.last.weekend,"Which dates constituted the last weekend?"
skill-ovos-date-time,date.last.weekend,"Tell me the dates of the weekend before last."
skill-ovos-date-time,date.last.weekend,"What days were part of the last weekend?"
skill-ovos-date-time,date.last.weekend,"Provide me with the specific dates for the weekend before last."
skill-ovos-date-time,date.last.weekend,"Tell me the days that fell within the last weekend."
skill-ovos-date-time,date.last.weekend,"What were the dates for the weekend that just went by?"
skill-ovos-date-time,date.last.weekend,"Give me the dates of the weekend before last."
skill-ovos-date-time,date.last.weekend,"Tell me the specific dates of the last weekend."
skill-ovos-date-time,date.last.weekend,"What days did the last weekend encompass?"
skill-ovos-date-time,date.last.weekend,"Inform me of the dates for the weekend before last."
skill-ovos-date-time,date.last.weekend,"What were the dates of the weekend before the current one?"
skill-ovos-date-time,date.last.weekend,"Can you provide the days for the last weekend?"
skill-ovos-date-time,date.last.weekend,"Which dates fell within the last weekend?"
skill-ovos-date-time,date.last.weekend,"Tell me the dates of the weekend before the current one."
skill-ovos-date-time,date.last.weekend,"What days were included in the weekend before the current one?"
skill-ovos-date-time,date.future.weekend,"What are the days this weekend?"
skill-ovos-date-time,date.future.weekend,"What day is next weekend?"
skill-ovos-date-time,date.future.weekend,"What are the dates this weekend?"
skill-ovos-date-time,date.future.weekend,"What dates are this weekend?"
skill-ovos-date-time,date.future.weekend,"What date is this weekend?"
skill-ovos-date-time,date.future.weekend,"What dates are next weekend?"
skill-ovos-date-time,date.future.weekend,"What days next weekend?"
skill-ovos-date-time,date.future.weekend,"What are the days for next weekend?"
skill-ovos-date-time,date.future.weekend,"What days for this weekend?"
skill-ovos-date-time,date.future.weekend,"What are the dates next weekend?"
skill-ovos-date-time,date.future.weekend,"What are the dates for this weekend?"
skill-ovos-date-time,date.future.weekend,"What date is next weekend?"
skill-ovos-date-time,date.future.weekend,"What day is this weekend?"
skill-ovos-date-time,date.future.weekend,"What days this weekend?"
skill-ovos-date-time,date.future.weekend,"What are the days for this weekend?"
skill-ovos-date-time,date.future.weekend,"What are the dates for next weekend?"
skill-ovos-date-time,date.future.weekend,"What is the date for this weekend?"
skill-ovos-date-time,date.future.weekend,"What are the days next weekend?"
skill-ovos-date-time,date.future.weekend,"What days for next weekend?"
skill-ovos-date-time,date.future.weekend,"What is the date this weekend?"
skill-ovos-date-time,date.future.weekend,"What is the date next weekend?"
skill-ovos-date-time,date.future.weekend,"What is the date for next weekend?"
skill-ovos-date-time,date.future.weekend,"Which days are upcoming this weekend?"
skill-ovos-date-time,date.future.weekend,"Can you tell me the days of the upcoming weekend?"
skill-ovos-date-time,date.future.weekend,"What are the days planned for this weekend?"
skill-ovos-date-time,date.future.weekend,"Tell me the dates of the upcoming weekend."
skill-ovos-date-time,date.future.weekend,"Which days will be part of the coming weekend?"
skill-ovos-date-time,date.future.weekend,"What dates are scheduled for this weekend?"
skill-ovos-date-time,date.future.weekend,"What are the days set for next weekend?"
skill-ovos-date-time,date.future.weekend,"Can you provide the dates of the forthcoming weekend?"
skill-ovos-date-time,date.future.weekend,"What will be the days for this weekend?"
skill-ovos-date-time,date.future.weekend,"Tell me the dates for the upcoming weekend."
skill-ovos-date-time,date.future.weekend,"Which days are reserved for the following weekend?"
skill-ovos-date-time,date.future.weekend,"What dates are confirmed for this weekend?"
skill-ovos-date-time,date.future.weekend,"What will be the days for next weekend?"
skill-ovos-date-time,date.future.weekend,"Can you inform me of the dates for the coming weekend?"
skill-ovos-date-time,date.future.weekend,"What is the schedule for this weekend?"
skill-ovos-date-time,date.future.weekend,"Tell me the days for the forthcoming weekend."
skill-ovos-date-time,date.future.weekend,"Which dates are allocated for this weekend?"
skill-ovos-date-time,date.future.weekend,"What are the days anticipated for next weekend?"
skill-ovos-date-time,date.future.weekend,"Can you provide the dates for the weekend that follows?"
skill-ovos-date-time,date.future.weekend,"What will be the days for the weekend ahead?"
skill-ovos-date-time,date.future.weekend,"Tell me the dates planned for next weekend."
skill-ovos-date-time,date.future.weekend,"Which days are expected for the upcoming weekend?"
skill-ovos-date-time,date.future.weekend,"What dates are marked for next weekend?"
skill-ovos-date-time,date.future.weekend,"What are the days for the upcoming weekend?"
skill-ovos-date-time,date.future.weekend,"What days are coming up this weekend?"
skill-ovos-date-time,date.future.weekend,"Which days are reserved for the next weekend?"
skill-ovos-date-time,date.future.weekend,"Can you tell me the dates for the upcoming weekend?"
skill-ovos-date-time,date.future.weekend,"What dates are scheduled for the forthcoming weekend?"
skill-ovos-date-time,date.future.weekend,"What will be the days for the weekend after this one?"
skill-ovos-date-time,date.future.weekend,"Tell me the dates of the weekend following this one."
skill-ovos-date-time,date.future.weekend,"Which days are anticipated for the weekend ahead?"
skill-ovos-date-time,date.future.weekend,"What dates are confirmed for the following weekend?"
skill-ovos-date-time,date.future.weekend,"What will be the days for the weekend that comes next?"
skill-ovos-date-time,date.future.weekend,"Can you inform me of the dates for the weekend after this one?"
skill-ovos-date-time,date.future.weekend,"What is the schedule for the weekend after this one?"
skill-ovos-date-time,date.future.weekend,"Tell me the days for the weekend that follows this one."
skill-ovos-date-time,date.future.weekend,"Which dates are allocated for the weekend after this one?"
skill-ovos-date-time,date.future.weekend,"What are the days expected for the weekend that is approaching?"
skill-ovos-date-time,date.future.weekend,"Can you provide the dates for the weekend that follows this one?"
skill-ovos-date-time,date.future.weekend,"What will be the days for the upcoming weekend?"
skill-ovos-date-time,date.future.weekend,"Tell me the dates planned for the weekend after this one."
skill-ovos-date-time,date.future.weekend,"Which days are projected for the weekend ahead?"
skill-ovos-date-time,date.future.weekend,"What dates are marked for the weekend that is coming up?"
skill-ovos-date-time,date.future.weekend,"What are the days anticipated for the weekend that is approaching?"
skill-ovos-date-time,date.future.weekend,"Can you tell me the dates for the weekend that follows the current one?"
skill-ovos-date-time,date.future.weekend,"What days are set for the weekend after the current one?"
skill-ovos-date-time,date.future.weekend,"Which days will be part of the weekend that comes next?"
skill-ovos-date-time,date.future.weekend,"What dates are scheduled for the weekend that follows the current one?"
skill-ovos-date-time,date.future.weekend,"What will be the days for the weekend after the current one?"
skill-ovos-date-time,date.future.weekend,"Tell me the dates of the weekend that follows the current one."
skill-ovos-date-time,date.future.weekend,"Which days are expected for the weekend after the current one?"
skill-ovos-date-time,date.future.weekend,"What dates are confirmed for the weekend that follows the current one?"
skill-ovos-date-time,date.future.weekend,"What will be the days for the weekend that is coming up?"
skill-ovos-date-time,date.future.weekend,"Tell me the dates planned for the weekend that follows the current one."
skill-ovos-date-time,date.future.weekend,"Which days are projected for the weekend that is approaching?"
skill-ovos-date-time,date.future.weekend,"What dates are marked for the weekend that comes next?"
skill-ovos-date-time,date.future.weekend,"What are the days anticipated for the weekend that follows the current one?"
skill-ovos-date-time,what.time.is.it,"current time"
skill-ovos-date-time,what.time.is.it,"time right now"
skill-ovos-date-time,what.time.is.it,"clock"
skill-ovos-date-time,what.time.is.it,"clock right now please"
skill-ovos-date-time,what.time.is.it,"the clock now"
skill-ovos-date-time,what.time.is.it,"do you have the current time"
skill-ovos-date-time,what.time.is.it,"the clock now please"
skill-ovos-date-time,what.time.is.it,"the clock"
skill-ovos-date-time,what.time.is.it,"time right now please"
skill-ovos-date-time,what.time.is.it,"the clock please"
skill-ovos-date-time,what.time.is.it,"the time right now"
skill-ovos-date-time,what.time.is.it,"clock please"
skill-ovos-date-time,what.time.is.it,"clock now please"
skill-ovos-date-time,what.time.is.it,"do you have the time"
skill-ovos-date-time,what.time.is.it,"the time right now please"
skill-ovos-date-time,what.time.is.it,"the time now"
skill-ovos-date-time,what.time.is.it,"clock right now"
skill-ovos-date-time,what.time.is.it,"the clock right now please"
skill-ovos-date-time,what.time.is.it,"the time now please"
skill-ovos-date-time,what.time.is.it,"time please"
skill-ovos-date-time,what.time.is.it,"time"
skill-ovos-date-time,what.time.is.it,"time now please"
skill-ovos-date-time,what.time.is.it,"clock now"
skill-ovos-date-time,what.time.is.it,"the time please"
skill-ovos-date-time,what.time.is.it,"the clock right now"
skill-ovos-date-time,what.time.is.it,"the time"
skill-ovos-date-time,what.time.is.it,"time now"
skill-ovos-date-time,what.time.is.it,"what's the time now"
skill-ovos-date-time,what.time.is.it,"please tell me the current time"
skill-ovos-date-time,what.time.is.it,"can you inform me of the time"
skill-ovos-date-time,what.time.is.it,"what time is it currently"
skill-ovos-date-time,what.time.is.it,"I would like to know the current time"
skill-ovos-date-time,what.time.is.it,"do you have the time right now"
skill-ovos-date-time,what.time.is.it,"tell me the time please"
skill-ovos-date-time,what.time.is.it,"what is the time at the moment"
skill-ovos-date-time,what.time.is.it,"give me the current time"
skill-ovos-date-time,what.time.is.it,"I need to know the time now"
skill-ovos-date-time,what.time.is.it,"could you tell me the time"
skill-ovos-date-time,what.time.is.it,"what's the time"
skill-ovos-date-time,what.time.is.it,"I want to know the time"
skill-ovos-date-time,what.time.is.it,"let me know the current time"
skill-ovos-date-time,what.time.is.it,"do you know what time it is"
skill-ovos-date-time,what.time.is.it,"what is the current time"
skill-ovos-date-time,what.time.is.it,"please provide the time"
skill-ovos-date-time,what.time.is.it,"tell me what time it is"
skill-ovos-date-time,what.time.is.it,"I'm curious about the time"
skill-ovos-date-time,what.time.is.it,"can you tell me the time"
skill-ovos-date-time,what.time.is.it,"what's the current time"
skill-ovos-date-time,what.time.is.it,"What time is it now?"
skill-ovos-date-time,what.time.is.it,"Can you give me the time, please?"
skill-ovos-date-time,what.time.is.it,"I'd like to know the time right now."
skill-ovos-date-time,what.time.is.it,"Tell me the current time, please."
skill-ovos-date-time,what.time.is.it,"What's the time at this moment?"
skill-ovos-date-time,what.time.is.it,"Could you please share the time?"
skill-ovos-date-time,what.time.is.it,"Do you have the current time available?"
skill-ovos-date-time,what.time.is.it,"Please provide me with the current time."
skill-ovos-date-time,what.time.is.it,"I need to check the time."
skill-ovos-date-time,what.time.is.it,"What time is it at the present?"
skill-ovos-date-time,what.time.is.it,"Tell me the time now, please."
skill-ovos-date-time,what.time.is.it,"May I know the time?"
skill-ovos-date-time,what.time.is.it,"I want to check the current time."
skill-ovos-date-time,what.time.is.it,"What's the current time, if you don't mind?"
skill-ovos-date-time,what.time.is.it,"Can you let me know what time it is?"
skill-ovos-date-time,what.time.is.it,"I'm wondering about the current time."
skill-ovos-date-time,what.time.is.it,"Please inform me of the time."
skill-ovos-date-time,what.time.is.it,"Do you happen to know the time?"
skill-ovos-date-time,what.time.is.it,"What's the time according to your clock?"
skill-ovos-date-time,what.time.is.it,"Can you give me an update on the time?"
skill-ovos-date-time,what.time.is.it,"What time is it showing?"
skill-ovos-date-time,what.time.is.it,"I'd appreciate it if you could tell me the time."
skill-ovos-date-time,what.time.is.it,"Is it possible to get the time right now?"
skill-ovos-date-time,what.time.is.it,"Could you give me the current time, please?"
skill-ovos-date-time,what.time.is.it,"What's the time on your end?"
skill-ovos-date-time,what.time.is.it,"Let me know the time, please."
skill-ovos-date-time,what.time.is.it,"Can you share the time with me?"
skill-ovos-date-time,what.time.is.it,"I'm curious, what time is it?"
skill-ovos-date-time,what.time.is.it,"Tell me the time, if you would."
skill-ovos-date-time,what.time.is.it,"I need to be aware of the current time."
skill-ovos-ddg,search_duck,"search duck duck go for {keyword}"
skill-ovos-ddg,search_duck,"search duck duck for {keyword}"
skill-ovos-ddg,search_duck,"ask the duck duck about {keyword}"
skill-ovos-ddg,search_duck,"ask the duck duck go about {keyword}"
skill-ovos-ddg,search_duck,"what does duck duck go say about {keyword}"
skill-ovos-ddg,search_duck,"what does duck duck say about {keyword}"
skill-ovos-ddg,search_duck,"search the duck for {keyword}"
skill-ovos-ddg,search_duck,"what does the duck say about {keyword}"
skill-ovos-ddg,born,"when was {keyword} born"
skill-ovos-ddg,born,"when is {keyword} day of birth"
skill-ovos-ddg,born,"when is {keyword} birthday"
skill-ovos-ddg,born,"when is {keyword} birth"
skill-ovos-ddg,born,"{keyword} date of birth"
skill-ovos-ddg,born,"{keyword} day of birth"
skill-ovos-ddg,fields,"what is {keyword} field of expertise"
skill-ovos-ddg,official_website,"what is {keyword} official website"
skill-ovos-ddg,resting_place,"where is {keyword} resting place"
skill-ovos-ddg,resting_place,"where is {keyword} resting buried"
skill-ovos-ddg,alma_mater,"what is {keyword} alma mater"
skill-ovos-ddg,who,"who is {person}"
skill-ovos-ddg,known_for,"what is {keyword} known for"
skill-ovos-ddg,known_for,"what is {keyword} famous for"
skill-ovos-ddg,birthdate,"when was {person} born"
skill-ovos-ddg,birthdate,"what is {person} birthday"
skill-ovos-ddg,birthdate,"what is {person} birth date"
skill-ovos-ddg,birthdate,"when was born {person}"
skill-ovos-ddg,died,"when was {keyword} death"
skill-ovos-ddg,died,"when did {keyword} die"
skill-ovos-ddg,died,"{keyword} date of death"
skill-ovos-ddg,died,"{keyword} day of death"
skill-ovos-ddg,query,"tell me about {keyword}"
skill-ovos-ddg,query,"what is {keyword}"
skill-ovos-ddg,query,"who was {keyword}"
skill-ovos-ddg,query,"who is {keyword}"
skill-ovos-ddg,query,"What do you know about {keyword}"
skill-ovos-ddg,query,"Give me information about {keyword}"
skill-ovos-ddg,query,"I'm curious about {keyword}"
skill-ovos-ddg,query,"I'd like to know about {keyword}"
skill-ovos-ddg,query,"I'd like to know more about {keyword}"
skill-ovos-ddg,query,"Can you explain what {keyword} is"
skill-ovos-ddg,query,"Can you enlighten me about {keyword}"
skill-ovos-ddg,query,"I'm seeking details about {keyword}"
skill-ovos-ddg,query,"Can you provide details on {keyword}"
skill-ovos-ddg,children,"how many children does {keyword} have"
skill-ovos-ddg,children,"how many children did {keyword} have"
skill-ovos-ddg,age_at_death,"how old was {keyword} when she died"
skill-ovos-ddg,age_at_death,"how old was {keyword} when he died"
skill-ovos-ddg,age_at_death,"how old was {keyword} on his death"
skill-ovos-ddg,age_at_death,"how old was {keyword} on the day she died"
skill-ovos-ddg,age_at_death,"how old was {keyword} on the day he died"
skill-ovos-ddg,thesis,"what is {keyword} thesis subject"
skill-ovos-ddg,education,"where did {keyword} study"
skill-ovos-ddg,education,"where did {keyword} get her education"
skill-ovos-ddg,education,"where did {keyword} get his education"
skill-ovos-hello-world,HowAreYou,"how are you"
skill-ovos-hello-world,HowAreYou,"how are you doing"
skill-ovos-hello-world,HowAreYou,"how have you been"
skill-ovos-hello-world,HowAreYou,"how has your day been"
skill-ovos-audio-recording,start_recording,"activate audio recording"
skill-ovos-audio-recording,start_recording,"activate audio recording as {name}"
skill-ovos-audio-recording,start_recording,"activate audio recording named {name}"
skill-ovos-audio-recording,start_recording,"activate audio recording under the title {name}"
skill-ovos-audio-recording,start_recording,"begin audio capture"
skill-ovos-audio-recording,start_recording,"begin audio capture as {name}"
skill-ovos-audio-recording,start_recording,"begin audio capture named {name}"
skill-ovos-audio-recording,start_recording,"begin audio capture titled {name}"
skill-ovos-audio-recording,start_recording,"begin audio recording"
skill-ovos-audio-recording,start_recording,"begin audio recording named {name}"
skill-ovos-audio-recording,start_recording,"begin audio recording {name}"
skill-ovos-audio-recording,start_recording,"begin recording"
skill-ovos-audio-recording,start_recording,"begin recording named {name}"
skill-ovos-audio-recording,start_recording,"begin recording session"
skill-ovos-audio-recording,start_recording,"begin recording {name}"
skill-ovos-audio-recording,start_recording,"commence audio recording titled {name}"
skill-ovos-audio-recording,start_recording,"commence audio recording with the name {name}"
skill-ovos-audio-recording,start_recording,"commence recording"
skill-ovos-audio-recording,start_recording,"commence recording session called {name}"
skill-ovos-audio-recording,start_recording,"commence recording with the name {name}"
skill-ovos-audio-recording,start_recording,"establish recording named {name}"
skill-ovos-audio-recording,start_recording,"initialize recording"
skill-ovos-audio-recording,start_recording,"initialize recording titled {name}"
skill-ovos-audio-recording,start_recording,"initiate a new recording"
skill-ovos-audio-recording,start_recording,"initiate an audio recording called {name}"
skill-ovos-audio-recording,start_recording,"initiate an audio recording named {name}"
skill-ovos-audio-recording,start_recording,"initiate audio recording"
skill-ovos-audio-recording,start_recording,"initiate audio recording named {name}"
skill-ovos-audio-recording,start_recording,"initiate audio recording operation named {name}"
skill-ovos-audio-recording,start_recording,"initiate audio recording {name}"
skill-ovos-audio-recording,start_recording,"initiate recording"
skill-ovos-audio-recording,start_recording,"initiate recording named {name}"
skill-ovos-audio-recording,start_recording,"initiate recording under the name {name}"
skill-ovos-audio-recording,start_recording,"initiate recording {name}"
skill-ovos-audio-recording,start_recording,"new recording"
skill-ovos-audio-recording,start_recording,"new recording named {name}"
skill-ovos-audio-recording,start_recording,"proceed with recording"
skill-ovos-audio-recording,start_recording,"record a new audio file"
skill-ovos-audio-recording,start_recording,"record a new audio file named {name}"
skill-ovos-audio-recording,start_recording,"record audio"
skill-ovos-audio-recording,start_recording,"record audio as {name}"
skill-ovos-audio-recording,start_recording,"record audio named {name}"
skill-ovos-audio-recording,start_recording,"record audio now"
skill-ovos-audio-recording,start_recording,"record audio now with the name {name}"
skill-ovos-audio-recording,start_recording,"set up a new recording named {name}"
skill-ovos-audio-recording,start_recording,"start a new audio recording"
skill-ovos-audio-recording,start_recording,"start a new audio recording called {name}"
skill-ovos-audio-recording,start_recording,"start a new audio recording named {name}"
skill-ovos-audio-recording,start_recording,"start a new recording"
skill-ovos-audio-recording,start_recording,"start a new recording called {name}"
skill-ovos-audio-recording,start_recording,"start a new recording named {name}"
skill-ovos-audio-recording,start_recording,"start a new recording with the title {name}"
skill-ovos-audio-recording,start_recording,"start a recording"
skill-ovos-audio-recording,start_recording,"start a recording called {name}"
skill-ovos-audio-recording,start_recording,"start a recording named {name}"
skill-ovos-audio-recording,start_recording,"start an audio recording"
skill-ovos-audio-recording,start_recording,"start an audio recording called {name}"
skill-ovos-audio-recording,start_recording,"start an audio recording named {name}"
skill-ovos-audio-recording,start_recording,"start audio recording now"
skill-ovos-audio-recording,start_recording,"start audio recording now as {name}"
skill-ovos-audio-recording,start_recording,"start audio recording now named {name}"
skill-ovos-audio-recording,start_recording,"start audio recording operation"
skill-ovos-audio-recording,start_recording,"start audio recording operation as {name}"
skill-ovos-audio-recording,start_recording,"start audio recording operation named {name}"
skill-ovos-audio-recording,start_recording,"start audio recording please"
skill-ovos-audio-recording,start_recording,"start audio recording please as {name}"
skill-ovos-audio-recording,start_recording,"start audio recording please named {name}"
skill-ovos-audio-recording,start_recording,"start recording"
skill-ovos-audio-recording,start_recording,"start recording immediately as {name}"
skill-ovos-audio-recording,start_recording,"start recording named {name"
skill-ovos-audio-recording,start_recording,"start recording now"
skill-ovos-audio-recording,start_recording,"start recording now as {name}"
skill-ovos-audio-recording,start_recording,"start recording now named {name}"
skill-ovos-audio-recording,start_recording,"start recording please"
skill-ovos-audio-recording,start_recording,"start recording please as {name}"
skill-ovos-audio-recording,start_recording,"start recording please named {name}"
skill-ovos-audio-recording,start_recording,"start recording right away"
ovos-utterance-plugin-cancel,cancel,"cancel that"
ovos-utterance-plugin-cancel,cancel,"cancel it"
ovos-utterance-plugin-cancel,cancel,"cancel that order"
ovos-utterance-plugin-cancel,cancel,"cancel that command"
ovos-utterance-plugin-cancel,cancel,"cancel order"
ovos-utterance-plugin-cancel,cancel,"cancel command"
ovos-utterance-plugin-cancel,cancel,"nevermind that"
ovos-utterance-plugin-cancel,cancel,"nevermind that order"
ovos-utterance-plugin-cancel,cancel,"nevermind that command"
ovos-utterance-plugin-cancel,cancel,"forget it"
ovos-utterance-plugin-cancel,cancel,"forget that"
ovos-utterance-plugin-cancel,cancel,"forget order"
ovos-utterance-plugin-cancel,cancel,"forget command"
ovos-utterance-plugin-cancel,cancel,"forget that order"
ovos-utterance-plugin-cancel,cancel,"forget that command"
skill-ovos-boot-finished,disable_ready_notification,"deactivate loaded notifications"
skill-ovos-boot-finished,disable_ready_notification,"deactivate loaded sounds"
skill-ovos-boot-finished,disable_ready_notification,"deactivate loaded speech"
skill-ovos-boot-finished,disable_ready_notification,"deactivate loaded notification"
skill-ovos-boot-finished,disable_ready_notification,"deactivate loaded sound"
skill-ovos-boot-finished,disable_ready_notification,"deactivate booted notifications"
skill-ovos-boot-finished,disable_ready_notification,"deactivate booted sounds"
skill-ovos-boot-finished,disable_ready_notification,"deactivate booted speech"
skill-ovos-boot-finished,disable_ready_notification,"deactivate booted notification"
skill-ovos-boot-finished,disable_ready_notification,"deactivate booted sound"
skill-ovos-boot-finished,disable_ready_notification,"deactivate started notifications"
skill-ovos-boot-finished,disable_ready_notification,"deactivate started sounds"
skill-ovos-boot-finished,disable_ready_notification,"deactivate started speech"
skill-ovos-boot-finished,disable_ready_notification,"deactivate started notification"
skill-ovos-boot-finished,disable_ready_notification,"deactivate started sound"
skill-ovos-boot-finished,disable_ready_notification,"deactivate readiness notifications"
skill-ovos-boot-finished,disable_ready_notification,"deactivate readiness sounds"
skill-ovos-boot-finished,disable_ready_notification,"deactivate readiness speech"
skill-ovos-boot-finished,disable_ready_notification,"deactivate readiness notification"
skill-ovos-boot-finished,disable_ready_notification,"deactivate readiness sound"
skill-ovos-boot-finished,disable_ready_notification,"deactivate load notifications"
skill-ovos-boot-finished,disable_ready_notification,"deactivate load sounds"
skill-ovos-boot-finished,disable_ready_notification,"deactivate load speech"
skill-ovos-boot-finished,disable_ready_notification,"deactivate load notification"
skill-ovos-boot-finished,disable_ready_notification,"deactivate load sound"
skill-ovos-boot-finished,disable_ready_notification,"deactivate boot notifications"
skill-ovos-boot-finished,disable_ready_notification,"deactivate boot sounds"
skill-ovos-boot-finished,disable_ready_notification,"deactivate boot speech"
skill-ovos-boot-finished,disable_ready_notification,"deactivate boot notification"
skill-ovos-boot-finished,disable_ready_notification,"deactivate boot sound"
skill-ovos-boot-finished,disable_ready_notification,"deactivate start up notifications"
skill-ovos-boot-finished,disable_ready_notification,"deactivate start up sounds"
skill-ovos-boot-finished,disable_ready_notification,"deactivate start up speech"
skill-ovos-boot-finished,disable_ready_notification,"deactivate start up notification"
skill-ovos-boot-finished,disable_ready_notification,"deactivate start up sound"
skill-ovos-boot-finished,disable_ready_notification,"deactivate startup notifications"
skill-ovos-boot-finished,disable_ready_notification,"deactivate startup sounds"
skill-ovos-boot-finished,disable_ready_notification,"deactivate startup speech"
skill-ovos-boot-finished,disable_ready_notification,"deactivate startup notification"
skill-ovos-boot-finished,disable_ready_notification,"deactivate startup sound"
skill-ovos-boot-finished,disable_ready_notification,"deactivate start notifications"
skill-ovos-boot-finished,disable_ready_notification,"deactivate start sounds"
skill-ovos-boot-finished,disable_ready_notification,"deactivate start speech"
skill-ovos-boot-finished,disable_ready_notification,"deactivate start notification"
skill-ovos-boot-finished,disable_ready_notification,"deactivate start sound"
skill-ovos-boot-finished,disable_ready_notification,"deactivate ready notifications"
skill-ovos-boot-finished,disable_ready_notification,"deactivate ready sounds"
skill-ovos-boot-finished,disable_ready_notification,"deactivate ready speech"
skill-ovos-boot-finished,disable_ready_notification,"deactivate ready notification"
skill-ovos-boot-finished,disable_ready_notification,"deactivate ready sound"
skill-ovos-boot-finished,disable_ready_notification,"turn off loaded notifications"
skill-ovos-boot-finished,disable_ready_notification,"turn off loaded sounds"
skill-ovos-boot-finished,disable_ready_notification,"turn off loaded speech"
skill-ovos-boot-finished,disable_ready_notification,"turn off loaded notification"
skill-ovos-boot-finished,disable_ready_notification,"turn off loaded sound"
skill-ovos-boot-finished,disable_ready_notification,"turn off booted notifications"
skill-ovos-boot-finished,disable_ready_notification,"turn off booted sounds"
skill-ovos-boot-finished,disable_ready_notification,"turn off booted speech"
skill-ovos-boot-finished,disable_ready_notification,"turn off booted notification"
skill-ovos-boot-finished,disable_ready_notification,"turn off booted sound"
skill-ovos-boot-finished,disable_ready_notification,"turn off started notifications"
skill-ovos-boot-finished,disable_ready_notification,"turn off started sounds"
skill-ovos-boot-finished,disable_ready_notification,"turn off started speech"
skill-ovos-boot-finished,disable_ready_notification,"turn off started notification"
skill-ovos-boot-finished,disable_ready_notification,"turn off started sound"
skill-ovos-boot-finished,disable_ready_notification,"turn off readiness notifications"
skill-ovos-boot-finished,disable_ready_notification,"turn off readiness sounds"
skill-ovos-boot-finished,disable_ready_notification,"turn off readiness speech"
skill-ovos-boot-finished,disable_ready_notification,"turn off readiness notification"
skill-ovos-boot-finished,disable_ready_notification,"turn off readiness sound"
skill-ovos-boot-finished,disable_ready_notification,"turn off load notifications"
skill-ovos-boot-finished,disable_ready_notification,"turn off load sounds"
skill-ovos-boot-finished,disable_ready_notification,"turn off load speech"
skill-ovos-boot-finished,disable_ready_notification,"turn off load notification"
skill-ovos-boot-finished,disable_ready_notification,"turn off load sound"
skill-ovos-boot-finished,disable_ready_notification,"turn off boot notifications"
skill-ovos-boot-finished,disable_ready_notification,"turn off boot sounds"
skill-ovos-boot-finished,disable_ready_notification,"turn off boot speech"
skill-ovos-boot-finished,disable_ready_notification,"turn off boot notification"
skill-ovos-boot-finished,disable_ready_notification,"turn off boot sound"
skill-ovos-boot-finished,disable_ready_notification,"turn off start up notifications"
skill-ovos-boot-finished,disable_ready_notification,"turn off start up sounds"
skill-ovos-boot-finished,disable_ready_notification,"turn off start up speech"
skill-ovos-boot-finished,disable_ready_notification,"turn off start up notification"
skill-ovos-boot-finished,disable_ready_notification,"turn off start up sound"
skill-ovos-boot-finished,disable_ready_notification,"turn off startup notifications"
skill-ovos-boot-finished,disable_ready_notification,"turn off startup sounds"
skill-ovos-boot-finished,disable_ready_notification,"turn off startup speech"
skill-ovos-boot-finished,disable_ready_notification,"turn off startup notification"
skill-ovos-boot-finished,disable_ready_notification,"turn off startup sound"
skill-ovos-boot-finished,disable_ready_notification,"turn off start notifications"
skill-ovos-boot-finished,disable_ready_notification,"turn off start sounds"
skill-ovos-boot-finished,disable_ready_notification,"turn off start speech"
skill-ovos-boot-finished,disable_ready_notification,"turn off start notification"
skill-ovos-boot-finished,disable_ready_notification,"turn off start sound"
skill-ovos-boot-finished,disable_ready_notification,"turn off ready notifications"
skill-ovos-boot-finished,disable_ready_notification,"turn off ready sounds"
skill-ovos-boot-finished,disable_ready_notification,"turn off ready speech"
skill-ovos-boot-finished,disable_ready_notification,"turn off ready notification"
skill-ovos-boot-finished,disable_ready_notification,"turn off ready sound"
skill-ovos-boot-finished,disable_ready_notification,"disable loaded notifications"
skill-ovos-boot-finished,disable_ready_notification,"disable loaded sounds"
skill-ovos-boot-finished,disable_ready_notification,"disable loaded speech"
skill-ovos-boot-finished,disable_ready_notification,"disable loaded notification"
skill-ovos-boot-finished,disable_ready_notification,"disable loaded sound"
skill-ovos-boot-finished,disable_ready_notification,"disable booted notifications"
skill-ovos-boot-finished,disable_ready_notification,"disable booted sounds"
skill-ovos-boot-finished,disable_ready_notification,"disable booted speech"
skill-ovos-boot-finished,disable_ready_notification,"disable booted notification"
skill-ovos-boot-finished,disable_ready_notification,"disable booted sound"
skill-ovos-boot-finished,disable_ready_notification,"disable started notifications"
skill-ovos-boot-finished,disable_ready_notification,"disable started sounds"
skill-ovos-boot-finished,disable_ready_notification,"disable started speech"
skill-ovos-boot-finished,disable_ready_notification,"disable started notification"
skill-ovos-boot-finished,disable_ready_notification,"disable started sound"
skill-ovos-boot-finished,disable_ready_notification,"disable readiness notifications"
skill-ovos-boot-finished,disable_ready_notification,"disable readiness sounds"
skill-ovos-boot-finished,disable_ready_notification,"disable readiness speech"
skill-ovos-boot-finished,disable_ready_notification,"disable readiness notification"
skill-ovos-boot-finished,disable_ready_notification,"disable readiness sound"
skill-ovos-boot-finished,disable_ready_notification,"disable load notifications"
skill-ovos-boot-finished,disable_ready_notification,"disable load sounds"
skill-ovos-boot-finished,disable_ready_notification,"disable load speech"
skill-ovos-boot-finished,disable_ready_notification,"disable load notification"
skill-ovos-boot-finished,disable_ready_notification,"disable load sound"
skill-ovos-boot-finished,disable_ready_notification,"disable boot notifications"
skill-ovos-boot-finished,disable_ready_notification,"disable boot sounds"
skill-ovos-boot-finished,disable_ready_notification,"disable boot speech"
skill-ovos-boot-finished,disable_ready_notification,"disable boot notification"
skill-ovos-boot-finished,disable_ready_notification,"disable boot sound"
skill-ovos-boot-finished,disable_ready_notification,"disable start up notifications"
skill-ovos-boot-finished,disable_ready_notification,"disable start up sounds"
skill-ovos-boot-finished,disable_ready_notification,"disable start up speech"
skill-ovos-boot-finished,disable_ready_notification,"disable start up notification"
skill-ovos-boot-finished,disable_ready_notification,"disable start up sound"
skill-ovos-boot-finished,disable_ready_notification,"disable startup notifications"
skill-ovos-boot-finished,disable_ready_notification,"disable startup sounds"
skill-ovos-boot-finished,disable_ready_notification,"disable startup speech"
skill-ovos-boot-finished,disable_ready_notification,"disable startup notification"
skill-ovos-boot-finished,disable_ready_notification,"disable startup sound"
skill-ovos-boot-finished,disable_ready_notification,"disable start notifications"
skill-ovos-boot-finished,disable_ready_notification,"disable start sounds"
skill-ovos-boot-finished,disable_ready_notification,"disable start speech"
skill-ovos-boot-finished,disable_ready_notification,"disable start notification"
skill-ovos-boot-finished,disable_ready_notification,"disable start sound"
skill-ovos-boot-finished,disable_ready_notification,"disable ready notifications"
skill-ovos-boot-finished,disable_ready_notification,"disable ready sounds"
skill-ovos-boot-finished,disable_ready_notification,"disable ready speech"
skill-ovos-boot-finished,disable_ready_notification,"disable ready notification"
skill-ovos-boot-finished,disable_ready_notification,"disable ready sound"
skill-ovos-boot-finished,enable_ready_notification,"activate loaded notifications"
skill-ovos-boot-finished,enable_ready_notification,"activate loaded sounds"
skill-ovos-boot-finished,enable_ready_notification,"activate loaded speech"
skill-ovos-boot-finished,enable_ready_notification,"activate loaded notification"
skill-ovos-boot-finished,enable_ready_notification,"activate loaded sound"
skill-ovos-boot-finished,enable_ready_notification,"activate booted notifications"
skill-ovos-boot-finished,enable_ready_notification,"activate booted sounds"
skill-ovos-boot-finished,enable_ready_notification,"activate booted speech"
skill-ovos-boot-finished,enable_ready_notification,"activate booted notification"
skill-ovos-boot-finished,enable_ready_notification,"activate booted sound"
skill-ovos-boot-finished,enable_ready_notification,"activate startup notifications"
skill-ovos-boot-finished,enable_ready_notification,"activate startup sounds"
skill-ovos-boot-finished,enable_ready_notification,"activate startup speech"
skill-ovos-boot-finished,enable_ready_notification,"activate startup notification"
skill-ovos-boot-finished,enable_ready_notification,"activate startup sound"
skill-ovos-boot-finished,enable_ready_notification,"activate started notifications"
skill-ovos-boot-finished,enable_ready_notification,"activate started sounds"
skill-ovos-boot-finished,enable_ready_notification,"activate started speech"
skill-ovos-boot-finished,enable_ready_notification,"activate started notification"
skill-ovos-boot-finished,enable_ready_notification,"activate started sound"
skill-ovos-boot-finished,enable_ready_notification,"activate readiness notifications"
skill-ovos-boot-finished,enable_ready_notification,"activate readiness sounds"
skill-ovos-boot-finished,enable_ready_notification,"activate readiness speech"
skill-ovos-boot-finished,enable_ready_notification,"activate readiness notification"
skill-ovos-boot-finished,enable_ready_notification,"activate readiness sound"
skill-ovos-boot-finished,enable_ready_notification,"activate load notifications"
skill-ovos-boot-finished,enable_ready_notification,"activate load sounds"
skill-ovos-boot-finished,enable_ready_notification,"activate load speech"
skill-ovos-boot-finished,enable_ready_notification,"activate load notification"
skill-ovos-boot-finished,enable_ready_notification,"activate load sound"
skill-ovos-boot-finished,enable_ready_notification,"activate boot notifications"
skill-ovos-boot-finished,enable_ready_notification,"activate boot sounds"
skill-ovos-boot-finished,enable_ready_notification,"activate boot speech"
skill-ovos-boot-finished,enable_ready_notification,"activate boot notification"
skill-ovos-boot-finished,enable_ready_notification,"activate boot sound"
skill-ovos-boot-finished,enable_ready_notification,"activate start up notifications"
skill-ovos-boot-finished,enable_ready_notification,"activate start up sounds"
skill-ovos-boot-finished,enable_ready_notification,"activate start up speech"
skill-ovos-boot-finished,enable_ready_notification,"activate start up notification"
skill-ovos-boot-finished,enable_ready_notification,"activate start up sound"
skill-ovos-boot-finished,enable_ready_notification,"activate startup notifications"
skill-ovos-boot-finished,enable_ready_notification,"activate startup sounds"
skill-ovos-boot-finished,enable_ready_notification,"activate startup speech"
skill-ovos-boot-finished,enable_ready_notification,"activate startup notification"
skill-ovos-boot-finished,enable_ready_notification,"activate startup sound"
skill-ovos-boot-finished,enable_ready_notification,"activate start notifications"
skill-ovos-boot-finished,enable_ready_notification,"activate start sounds"
skill-ovos-boot-finished,enable_ready_notification,"activate start speech"
skill-ovos-boot-finished,enable_ready_notification,"activate start notification"
skill-ovos-boot-finished,enable_ready_notification,"activate start sound"
skill-ovos-boot-finished,enable_ready_notification,"activate ready notifications"
skill-ovos-boot-finished,enable_ready_notification,"activate ready sounds"
skill-ovos-boot-finished,enable_ready_notification,"activate ready speech"
skill-ovos-boot-finished,enable_ready_notification,"activate ready notification"
skill-ovos-boot-finished,enable_ready_notification,"activate ready sound"
skill-ovos-boot-finished,enable_ready_notification,"turn on loaded notifications"
skill-ovos-boot-finished,enable_ready_notification,"turn on loaded sounds"
skill-ovos-boot-finished,enable_ready_notification,"turn on loaded speech"
skill-ovos-boot-finished,enable_ready_notification,"turn on loaded notification"
skill-ovos-boot-finished,enable_ready_notification,"turn on loaded sound"
skill-ovos-boot-finished,enable_ready_notification,"turn on booted notifications"
skill-ovos-boot-finished,enable_ready_notification,"turn on booted sounds"
skill-ovos-boot-finished,enable_ready_notification,"turn on booted speech"
skill-ovos-boot-finished,enable_ready_notification,"turn on booted notification"
skill-ovos-boot-finished,enable_ready_notification,"turn on booted sound"
skill-ovos-boot-finished,enable_ready_notification,"turn on startup notifications"
skill-ovos-boot-finished,enable_ready_notification,"turn on startup sounds"
skill-ovos-boot-finished,enable_ready_notification,"turn on startup speech"
skill-ovos-boot-finished,enable_ready_notification,"turn on startup notification"
skill-ovos-boot-finished,enable_ready_notification,"turn on startup sound"
skill-ovos-boot-finished,enable_ready_notification,"turn on started notifications"
skill-ovos-boot-finished,enable_ready_notification,"turn on started sounds"
skill-ovos-boot-finished,enable_ready_notification,"turn on started speech"
skill-ovos-boot-finished,enable_ready_notification,"turn on started notification"
skill-ovos-boot-finished,enable_ready_notification,"turn on started sound"
skill-ovos-boot-finished,enable_ready_notification,"turn on readiness notifications"
skill-ovos-boot-finished,enable_ready_notification,"turn on readiness sounds"
skill-ovos-boot-finished,enable_ready_notification,"turn on readiness speech"
skill-ovos-boot-finished,enable_ready_notification,"turn on readiness notification"
skill-ovos-boot-finished,enable_ready_notification,"turn on readiness sound"
skill-ovos-boot-finished,enable_ready_notification,"turn on load notifications"
skill-ovos-boot-finished,enable_ready_notification,"turn on load sounds"
skill-ovos-boot-finished,enable_ready_notification,"turn on load speech"
skill-ovos-boot-finished,enable_ready_notification,"turn on load notification"
skill-ovos-boot-finished,enable_ready_notification,"turn on load sound"
skill-ovos-boot-finished,enable_ready_notification,"turn on boot notifications"
skill-ovos-boot-finished,enable_ready_notification,"turn on boot sounds"
skill-ovos-boot-finished,enable_ready_notification,"turn on boot speech"
skill-ovos-boot-finished,enable_ready_notification,"turn on boot notification"
skill-ovos-boot-finished,enable_ready_notification,"turn on boot sound"
skill-ovos-boot-finished,enable_ready_notification,"turn on start up notifications"
skill-ovos-boot-finished,enable_ready_notification,"turn on start up sounds"
skill-ovos-boot-finished,enable_ready_notification,"turn on start up speech"
skill-ovos-boot-finished,enable_ready_notification,"turn on start up notification"
skill-ovos-boot-finished,enable_ready_notification,"turn on start up sound"
skill-ovos-boot-finished,enable_ready_notification,"turn on startup notifications"
skill-ovos-boot-finished,enable_ready_notification,"turn on startup sounds"
skill-ovos-boot-finished,enable_ready_notification,"turn on startup speech"
skill-ovos-boot-finished,enable_ready_notification,"turn on startup notification"
skill-ovos-boot-finished,enable_ready_notification,"turn on startup sound"
skill-ovos-boot-finished,enable_ready_notification,"turn on start notifications"
skill-ovos-boot-finished,enable_ready_notification,"turn on start sounds"
skill-ovos-boot-finished,enable_ready_notification,"turn on start speech"
skill-ovos-boot-finished,enable_ready_notification,"turn on start notification"
skill-ovos-boot-finished,enable_ready_notification,"turn on start sound"
skill-ovos-boot-finished,enable_ready_notification,"turn on ready notifications"
skill-ovos-boot-finished,enable_ready_notification,"turn on ready sounds"
skill-ovos-boot-finished,enable_ready_notification,"turn on ready speech"
skill-ovos-boot-finished,enable_ready_notification,"turn on ready notification"
skill-ovos-boot-finished,enable_ready_notification,"turn on ready sound"
skill-ovos-boot-finished,enable_ready_notification,"enable loaded notifications"
skill-ovos-boot-finished,enable_ready_notification,"enable loaded sounds"
skill-ovos-boot-finished,enable_ready_notification,"enable loaded speech"
skill-ovos-boot-finished,enable_ready_notification,"enable loaded notification"
skill-ovos-boot-finished,enable_ready_notification,"enable loaded sound"
skill-ovos-boot-finished,enable_ready_notification,"enable booted notifications"
skill-ovos-boot-finished,enable_ready_notification,"enable booted sounds"
skill-ovos-boot-finished,enable_ready_notification,"enable booted speech"
skill-ovos-boot-finished,enable_ready_notification,"enable booted notification"
skill-ovos-boot-finished,enable_ready_notification,"enable booted sound"
skill-ovos-boot-finished,enable_ready_notification,"enable startup notifications"
skill-ovos-boot-finished,enable_ready_notification,"enable startup sounds"
skill-ovos-boot-finished,enable_ready_notification,"enable startup speech"
skill-ovos-boot-finished,enable_ready_notification,"enable startup notification"
skill-ovos-boot-finished,enable_ready_notification,"enable startup sound"
skill-ovos-boot-finished,enable_ready_notification,"enable started notifications"
skill-ovos-boot-finished,enable_ready_notification,"enable started sounds"
skill-ovos-boot-finished,enable_ready_notification,"enable started speech"
skill-ovos-boot-finished,enable_ready_notification,"enable started notification"
skill-ovos-boot-finished,enable_ready_notification,"enable started sound"
skill-ovos-boot-finished,enable_ready_notification,"enable readiness notifications"
skill-ovos-boot-finished,enable_ready_notification,"enable readiness sounds"
skill-ovos-boot-finished,enable_ready_notification,"enable readiness speech"
skill-ovos-boot-finished,enable_ready_notification,"enable readiness notification"
skill-ovos-boot-finished,enable_ready_notification,"enable readiness sound"
skill-ovos-boot-finished,enable_ready_notification,"enable load notifications"
skill-ovos-boot-finished,enable_ready_notification,"enable load sounds"
skill-ovos-boot-finished,enable_ready_notification,"enable load speech"
skill-ovos-boot-finished,enable_ready_notification,"enable load notification"
skill-ovos-boot-finished,enable_ready_notification,"enable load sound"
skill-ovos-boot-finished,enable_ready_notification,"enable boot notifications"
skill-ovos-boot-finished,enable_ready_notification,"enable boot sounds"
skill-ovos-boot-finished,enable_ready_notification,"enable boot speech"
skill-ovos-boot-finished,enable_ready_notification,"enable boot notification"
skill-ovos-boot-finished,enable_ready_notification,"enable boot sound"
skill-ovos-boot-finished,enable_ready_notification,"enable start up notifications"
skill-ovos-boot-finished,enable_ready_notification,"enable start up sounds"
skill-ovos-boot-finished,enable_ready_notification,"enable start up speech"
skill-ovos-boot-finished,enable_ready_notification,"enable start up notification"
skill-ovos-boot-finished,enable_ready_notification,"enable start up sound"
skill-ovos-boot-finished,enable_ready_notification,"enable startup notifications"
skill-ovos-boot-finished,enable_ready_notification,"enable startup sounds"
skill-ovos-boot-finished,enable_ready_notification,"enable startup speech"
skill-ovos-boot-finished,enable_ready_notification,"enable startup notification"
skill-ovos-boot-finished,enable_ready_notification,"enable startup sound"
skill-ovos-boot-finished,enable_ready_notification,"enable start notifications"
skill-ovos-boot-finished,enable_ready_notification,"enable start sounds"
skill-ovos-boot-finished,enable_ready_notification,"enable start speech"
skill-ovos-boot-finished,enable_ready_notification,"enable start notification"
skill-ovos-boot-finished,enable_ready_notification,"enable start sound"
skill-ovos-boot-finished,enable_ready_notification,"enable ready notifications"
skill-ovos-boot-finished,enable_ready_notification,"enable ready sounds"
skill-ovos-boot-finished,enable_ready_notification,"enable ready speech"
skill-ovos-boot-finished,enable_ready_notification,"enable ready notification"
skill-ovos-boot-finished,enable_ready_notification,"enable ready sound" |