pinokiod 7.3.9 → 7.3.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kernel/bin/brew.js +12 -2
- package/kernel/bin/caddy.js +24 -20
- package/kernel/bin/huggingface.js +2 -2
- package/kernel/bin/setup.js +2 -3
- package/kernel/bin/uv.js +13 -6
- package/kernel/connect/index.js +5 -1
- package/kernel/connect/providers/huggingface/index.js +213 -75
- package/kernel/environment.js +16 -1
- package/kernel/router/localhost_home_router.js +7 -0
- package/kernel/shell.js +1 -5
- package/kernel/util.js +1 -0
- package/package.json +1 -1
- package/server/index.js +75 -33
- package/server/public/common.js +52 -88
- package/server/public/install.js +20 -2
- package/server/public/layout.js +1 -1
- package/server/public/nav.js +3 -1
- package/server/public/style.css +1455 -521
- package/server/public/tab-link-popover.css +162 -18
- package/server/public/tab-link-popover.js +230 -21
- package/server/public/task-launcher.css +182 -91
- package/server/public/terminal-settings.js +227 -50
- package/server/public/universal-launcher.css +42 -33
- package/server/public/urldropdown.css +284 -0
- package/server/views/app.ejs +1718 -352
- package/server/views/autolaunch.ejs +4 -5
- package/server/views/checkpoints.ejs +223 -50
- package/server/views/connect/huggingface.ejs +406 -325
- package/server/views/connect.ejs +0 -1
- package/server/views/github.ejs +277 -324
- package/server/views/index.ejs +65 -8
- package/server/views/install.ejs +134 -65
- package/server/views/logs.ejs +9 -8
- package/server/views/net.ejs +341 -64
- package/server/views/network.ejs +85 -63
- package/server/views/partials/main_sidebar.ejs +249 -24
- package/server/views/plugins.ejs +141 -3
- package/server/views/settings.ejs +103 -7
- package/server/views/setup.ejs +0 -5
- package/server/views/skills.ejs +0 -1
- package/server/views/task_list.ejs +0 -1
- package/server/views/terminal.ejs +285 -60
- package/server/views/terminals.ejs +346 -6
- package/server/views/tools.ejs +828 -1691
- package/test/caddy-install.test.js +53 -0
- package/test/connect-setup.test.js +16 -0
- package/test/github-connection.test.js +1 -1
- package/test/huggingface-bin.test.js +4 -4
- package/test/huggingface-connect.test.js +73 -0
- package/test/main-sidebar.test.js +31 -0
- package/test/shell-run-template.test.js +5 -1
- package/test/uv-bin.test.js +29 -0
|
@@ -1825,3 +1825,287 @@ body.dark .host-badge {
|
|
|
1825
1825
|
body.dark .host-arch {
|
|
1826
1826
|
color: #a0aec0;
|
|
1827
1827
|
}
|
|
1828
|
+
|
|
1829
|
+
/* Minimal modal normalization for launcher and capture overlays. */
|
|
1830
|
+
.create-launcher-modal-overlay,
|
|
1831
|
+
.capture-modal-overlay {
|
|
1832
|
+
background: rgba(9, 11, 15, 0.34);
|
|
1833
|
+
-webkit-backdrop-filter: none;
|
|
1834
|
+
backdrop-filter: none;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
body.dark .create-launcher-modal-overlay,
|
|
1838
|
+
body.dark .capture-modal-overlay {
|
|
1839
|
+
background: rgba(0, 0, 0, 0.58);
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
.create-launcher-modal,
|
|
1843
|
+
.capture-modal {
|
|
1844
|
+
border: 1px solid rgba(24, 24, 27, 0.12) !important;
|
|
1845
|
+
border-radius: 8px !important;
|
|
1846
|
+
background: #ffffff !important;
|
|
1847
|
+
color: #18181b !important;
|
|
1848
|
+
box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16) !important;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
body.dark .create-launcher-modal,
|
|
1852
|
+
body.dark .capture-modal {
|
|
1853
|
+
border-color: rgba(255, 255, 255, 0.1) !important;
|
|
1854
|
+
background: #1b1c1d !important;
|
|
1855
|
+
color: rgba(250, 250, 250, 0.94) !important;
|
|
1856
|
+
box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42) !important;
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.create-launcher-modal .create-launcher-modal-header {
|
|
1860
|
+
border-bottom-color: rgba(24, 24, 27, 0.1) !important;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
body.dark .create-launcher-modal .create-launcher-modal-header {
|
|
1864
|
+
border-bottom-color: rgba(255, 255, 255, 0.09) !important;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
.create-launcher-modal h3,
|
|
1868
|
+
.capture-modal-title {
|
|
1869
|
+
color: inherit !important;
|
|
1870
|
+
font-size: 16px !important;
|
|
1871
|
+
line-height: 1.25 !important;
|
|
1872
|
+
font-weight: 600 !important;
|
|
1873
|
+
letter-spacing: 0 !important;
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
.create-launcher-modal .create-launcher-modal-description,
|
|
1877
|
+
.capture-modal-description {
|
|
1878
|
+
color: #71717a !important;
|
|
1879
|
+
font-size: 12px !important;
|
|
1880
|
+
line-height: 1.45 !important;
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
body.dark .create-launcher-modal .create-launcher-modal-description,
|
|
1884
|
+
body.dark .capture-modal-description {
|
|
1885
|
+
color: rgba(229, 231, 235, 0.62) !important;
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
.create-launcher-modal .create-launcher-modal-close {
|
|
1889
|
+
width: 28px !important;
|
|
1890
|
+
height: 28px !important;
|
|
1891
|
+
border-radius: 6px !important;
|
|
1892
|
+
border-color: rgba(24, 24, 27, 0.12) !important;
|
|
1893
|
+
background: transparent !important;
|
|
1894
|
+
color: #71717a !important;
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
body.dark .create-launcher-modal .create-launcher-modal-close {
|
|
1898
|
+
border-color: rgba(255, 255, 255, 0.1) !important;
|
|
1899
|
+
color: rgba(229, 231, 235, 0.58) !important;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
.create-launcher-modal .create-launcher-modal-close:hover,
|
|
1903
|
+
.create-launcher-modal .create-launcher-modal-close:focus-visible {
|
|
1904
|
+
background: rgba(24, 24, 27, 0.06) !important;
|
|
1905
|
+
color: #18181b !important;
|
|
1906
|
+
outline: none !important;
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
body.dark .create-launcher-modal .create-launcher-modal-close:hover,
|
|
1910
|
+
body.dark .create-launcher-modal .create-launcher-modal-close:focus-visible {
|
|
1911
|
+
background: rgba(255, 255, 255, 0.07) !important;
|
|
1912
|
+
color: rgba(250, 250, 250, 0.94) !important;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
.create-launcher-modal .create-launcher-modal-input,
|
|
1916
|
+
.create-launcher-modal .create-launcher-modal-textarea,
|
|
1917
|
+
.create-launcher-modal .create-launcher-modal-template-input {
|
|
1918
|
+
border-radius: 6px !important;
|
|
1919
|
+
border-color: rgba(24, 24, 27, 0.16) !important;
|
|
1920
|
+
background: #ffffff !important;
|
|
1921
|
+
color: #18181b !important;
|
|
1922
|
+
box-shadow: none !important;
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
body.dark .create-launcher-modal .create-launcher-modal-input,
|
|
1926
|
+
body.dark .create-launcher-modal .create-launcher-modal-textarea,
|
|
1927
|
+
body.dark .create-launcher-modal .create-launcher-modal-template-input {
|
|
1928
|
+
border-color: rgba(255, 255, 255, 0.14) !important;
|
|
1929
|
+
background: rgba(255, 255, 255, 0.04) !important;
|
|
1930
|
+
color: rgba(250, 250, 250, 0.94) !important;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
.create-launcher-modal .create-launcher-modal-input:focus,
|
|
1934
|
+
.create-launcher-modal .create-launcher-modal-textarea:focus,
|
|
1935
|
+
.create-launcher-modal .create-launcher-modal-template-input:focus {
|
|
1936
|
+
border-color: rgba(24, 24, 27, 0.42) !important;
|
|
1937
|
+
box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.12) !important;
|
|
1938
|
+
outline: none !important;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
body.dark .create-launcher-modal .create-launcher-modal-input:focus,
|
|
1942
|
+
body.dark .create-launcher-modal .create-launcher-modal-textarea:focus,
|
|
1943
|
+
body.dark .create-launcher-modal .create-launcher-modal-template-input:focus {
|
|
1944
|
+
border-color: rgba(255, 255, 255, 0.38) !important;
|
|
1945
|
+
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14) !important;
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
.create-launcher-modal .create-launcher-modal-template,
|
|
1949
|
+
.create-launcher-modal .create-launcher-modal-tool,
|
|
1950
|
+
.create-launcher-modal .create-launcher-upload-dropzone,
|
|
1951
|
+
.create-launcher-modal .create-launcher-upload-item {
|
|
1952
|
+
border-color: rgba(24, 24, 27, 0.1) !important;
|
|
1953
|
+
background: rgba(24, 24, 27, 0.03) !important;
|
|
1954
|
+
box-shadow: none !important;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
body.dark .create-launcher-modal .create-launcher-modal-template,
|
|
1958
|
+
body.dark .create-launcher-modal .create-launcher-modal-tool,
|
|
1959
|
+
body.dark .create-launcher-modal .create-launcher-upload-dropzone,
|
|
1960
|
+
body.dark .create-launcher-modal .create-launcher-upload-item {
|
|
1961
|
+
border-color: rgba(255, 255, 255, 0.09) !important;
|
|
1962
|
+
background: rgba(255, 255, 255, 0.04) !important;
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
.create-launcher-modal .create-launcher-modal-tool:hover,
|
|
1966
|
+
.create-launcher-modal .create-launcher-modal-tool.selected,
|
|
1967
|
+
.create-launcher-modal .create-launcher-modal-tool:focus-within,
|
|
1968
|
+
body.dark .create-launcher-modal .create-launcher-modal-tool:hover,
|
|
1969
|
+
body.dark .create-launcher-modal .create-launcher-modal-tool.selected,
|
|
1970
|
+
body.dark .create-launcher-modal .create-launcher-modal-tool:focus-within {
|
|
1971
|
+
border-color: rgba(24, 24, 27, 0.2) !important;
|
|
1972
|
+
background: rgba(24, 24, 27, 0.06) !important;
|
|
1973
|
+
box-shadow: none !important;
|
|
1974
|
+
transform: none !important;
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
body.dark .create-launcher-modal .create-launcher-modal-tool:hover,
|
|
1978
|
+
body.dark .create-launcher-modal .create-launcher-modal-tool.selected,
|
|
1979
|
+
body.dark .create-launcher-modal .create-launcher-modal-tool:focus-within {
|
|
1980
|
+
border-color: rgba(255, 255, 255, 0.18) !important;
|
|
1981
|
+
background: rgba(255, 255, 255, 0.07) !important;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
.create-launcher-modal .create-launcher-modal-tool::before,
|
|
1985
|
+
body.dark .create-launcher-modal .create-launcher-modal-tool::before {
|
|
1986
|
+
border-color: rgba(24, 24, 27, 0.3) !important;
|
|
1987
|
+
background: transparent !important;
|
|
1988
|
+
box-shadow: none !important;
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
body.dark .create-launcher-modal .create-launcher-modal-tool::before {
|
|
1992
|
+
border-color: rgba(255, 255, 255, 0.32) !important;
|
|
1993
|
+
}
|
|
1994
|
+
|
|
1995
|
+
.create-launcher-modal .create-launcher-modal-tool.selected::before {
|
|
1996
|
+
border-color: #18181b !important;
|
|
1997
|
+
background: #18181b !important;
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
body.dark .create-launcher-modal .create-launcher-modal-tool.selected::before {
|
|
2001
|
+
border-color: rgba(250, 250, 250, 0.94) !important;
|
|
2002
|
+
background: rgba(250, 250, 250, 0.94) !important;
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
.create-launcher-modal .create-launcher-modal-button,
|
|
2006
|
+
.capture-modal-button {
|
|
2007
|
+
min-height: 32px !important;
|
|
2008
|
+
padding: 0 12px !important;
|
|
2009
|
+
border-radius: 6px !important;
|
|
2010
|
+
box-shadow: none !important;
|
|
2011
|
+
font-size: 13px !important;
|
|
2012
|
+
font-weight: 600 !important;
|
|
2013
|
+
transform: none !important;
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2016
|
+
.create-launcher-modal .create-launcher-modal-button.confirm,
|
|
2017
|
+
.capture-modal-button.primary {
|
|
2018
|
+
border: 1px solid #18181b !important;
|
|
2019
|
+
background: #18181b !important;
|
|
2020
|
+
color: #ffffff !important;
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
body.dark .create-launcher-modal .create-launcher-modal-button.confirm,
|
|
2024
|
+
body.dark .capture-modal-button.primary {
|
|
2025
|
+
border-color: rgba(250, 250, 250, 0.94) !important;
|
|
2026
|
+
background: rgba(250, 250, 250, 0.94) !important;
|
|
2027
|
+
color: #1b1c1d !important;
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
.create-launcher-modal .create-launcher-modal-button.confirm:hover,
|
|
2031
|
+
.capture-modal-button.primary:hover {
|
|
2032
|
+
border-color: #27272a !important;
|
|
2033
|
+
background: #27272a !important;
|
|
2034
|
+
box-shadow: none !important;
|
|
2035
|
+
transform: none !important;
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2038
|
+
body.dark .create-launcher-modal .create-launcher-modal-button.confirm:hover,
|
|
2039
|
+
body.dark .capture-modal-button.primary:hover {
|
|
2040
|
+
border-color: #ffffff !important;
|
|
2041
|
+
background: #ffffff !important;
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
.create-launcher-modal .create-launcher-modal-button.cancel,
|
|
2045
|
+
.capture-modal-button.secondary {
|
|
2046
|
+
border: 1px solid rgba(24, 24, 27, 0.12) !important;
|
|
2047
|
+
background: transparent !important;
|
|
2048
|
+
color: #52525b !important;
|
|
2049
|
+
}
|
|
2050
|
+
|
|
2051
|
+
body.dark .create-launcher-modal .create-launcher-modal-button.cancel,
|
|
2052
|
+
body.dark .capture-modal-button.secondary {
|
|
2053
|
+
border-color: rgba(255, 255, 255, 0.1) !important;
|
|
2054
|
+
color: rgba(229, 231, 235, 0.7) !important;
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
.create-launcher-modal .create-launcher-modal-button.cancel:hover,
|
|
2058
|
+
.capture-modal-button.secondary:hover {
|
|
2059
|
+
border-color: rgba(24, 24, 27, 0.2) !important;
|
|
2060
|
+
background: rgba(24, 24, 27, 0.06) !important;
|
|
2061
|
+
color: #18181b !important;
|
|
2062
|
+
box-shadow: none !important;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
body.dark .create-launcher-modal .create-launcher-modal-button.cancel:hover,
|
|
2066
|
+
body.dark .capture-modal-button.secondary:hover {
|
|
2067
|
+
border-color: rgba(255, 255, 255, 0.18) !important;
|
|
2068
|
+
background: rgba(255, 255, 255, 0.07) !important;
|
|
2069
|
+
color: rgba(250, 250, 250, 0.94) !important;
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
.create-launcher-modal .create-launcher-modal-button:focus-visible,
|
|
2073
|
+
.capture-modal-button:focus-visible {
|
|
2074
|
+
outline: 2px solid rgba(24, 24, 27, 0.28) !important;
|
|
2075
|
+
outline-offset: 2px !important;
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
body.dark .create-launcher-modal .create-launcher-modal-button:focus-visible,
|
|
2079
|
+
body.dark .capture-modal-button:focus-visible {
|
|
2080
|
+
outline-color: rgba(255, 255, 255, 0.28) !important;
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
.create-launcher-modal .create-launcher-upload-dropzone.dragover {
|
|
2084
|
+
border-color: rgba(24, 24, 27, 0.28) !important;
|
|
2085
|
+
background: rgba(24, 24, 27, 0.05) !important;
|
|
2086
|
+
}
|
|
2087
|
+
|
|
2088
|
+
body.dark .create-launcher-modal .create-launcher-upload-dropzone.dragover {
|
|
2089
|
+
border-color: rgba(255, 255, 255, 0.22) !important;
|
|
2090
|
+
background: rgba(255, 255, 255, 0.06) !important;
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
.create-launcher-modal .create-launcher-upload-remove {
|
|
2094
|
+
color: #52525b !important;
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
body.dark .create-launcher-modal .create-launcher-upload-remove {
|
|
2098
|
+
color: rgba(229, 231, 235, 0.7) !important;
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
.create-launcher-modal .create-launcher-modal-advanced,
|
|
2102
|
+
.create-launcher-modal .create-launcher-modal-bookmarklet {
|
|
2103
|
+
color: #52525b !important;
|
|
2104
|
+
text-decoration-color: rgba(82, 82, 91, 0.35);
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
body.dark .create-launcher-modal .create-launcher-modal-advanced,
|
|
2108
|
+
body.dark .create-launcher-modal .create-launcher-modal-bookmarklet {
|
|
2109
|
+
color: rgba(229, 231, 235, 0.7) !important;
|
|
2110
|
+
text-decoration-color: rgba(229, 231, 235, 0.28);
|
|
2111
|
+
}
|