qubicl-cli 0.1.0 → 0.2.0
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/README.md +168 -33
- package/dist/SBOM.spdx.json +226 -19
- package/dist/THIRD_PARTY_NOTICES.txt +392 -1
- package/dist/assets/computer/Dockerfile +27 -7
- package/dist/assets/computer/THIRD_PARTY_NOTICES.txt +73 -1
- package/dist/assets/computer/control.mjs +97 -86
- package/dist/assets/computer/entrypoint.sh +162 -4
- package/dist/assets/computer/manifests/browser.json +2 -2
- package/dist/assets/computer/manifests/computer.json +2 -2
- package/dist/assets/computer/manifests/file-system.json +2 -2
- package/dist/assets/computer/manifests/workstation.json +2 -2
- package/dist/assets/computer/qubicl_viewer_auth.py +63 -0
- package/dist/assets/computer/x11vnc-relay.sh +28 -0
- package/dist/assets/gateway/Dockerfile +6 -3
- package/dist/assets/gateway/gateway.mjs +44 -44
- package/dist/assets/image-catalog.json +59 -56
- package/dist/qubicl.mjs +220 -184
- package/package.json +4 -3
|
@@ -30,6 +30,28 @@ SOFTWARE.
|
|
|
30
30
|
|
|
31
31
|
================================================================================
|
|
32
32
|
|
|
33
|
+
@isaacs/fs-minipass@4.0.1
|
|
34
|
+
Declared license: ISC
|
|
35
|
+
|
|
36
|
+
--- LICENSE ---
|
|
37
|
+
The ISC License
|
|
38
|
+
|
|
39
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
40
|
+
|
|
41
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
42
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
43
|
+
copyright notice and this permission notice appear in all copies.
|
|
44
|
+
|
|
45
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
46
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
47
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
48
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
49
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
50
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
51
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
52
|
+
|
|
53
|
+
================================================================================
|
|
54
|
+
|
|
33
55
|
@modelcontextprotocol/core@2.0.0
|
|
34
56
|
Declared license: MIT
|
|
35
57
|
|
|
@@ -699,6 +721,243 @@ the full license text.
|
|
|
699
721
|
|
|
700
722
|
================================================================================
|
|
701
723
|
|
|
724
|
+
chownr@3.0.0
|
|
725
|
+
Declared license: BlueOak-1.0.0
|
|
726
|
+
|
|
727
|
+
--- LICENSE.md ---
|
|
728
|
+
All packages under `src/` are licensed according to the terms in
|
|
729
|
+
their respective `LICENSE` or `LICENSE.md` files.
|
|
730
|
+
|
|
731
|
+
The remainder of this project is licensed under the Blue Oak
|
|
732
|
+
Model License, as follows:
|
|
733
|
+
|
|
734
|
+
-----
|
|
735
|
+
|
|
736
|
+
# Blue Oak Model License
|
|
737
|
+
|
|
738
|
+
Version 1.0.0
|
|
739
|
+
|
|
740
|
+
## Purpose
|
|
741
|
+
|
|
742
|
+
This license gives everyone as much permission to work with
|
|
743
|
+
this software as possible, while protecting contributors
|
|
744
|
+
from liability.
|
|
745
|
+
|
|
746
|
+
## Acceptance
|
|
747
|
+
|
|
748
|
+
In order to receive this license, you must agree to its
|
|
749
|
+
rules. The rules of this license are both obligations
|
|
750
|
+
under that agreement and conditions to your license.
|
|
751
|
+
You must not do anything with this software that triggers
|
|
752
|
+
a rule that you cannot or will not follow.
|
|
753
|
+
|
|
754
|
+
## Copyright
|
|
755
|
+
|
|
756
|
+
Each contributor licenses you to do everything with this
|
|
757
|
+
software that would otherwise infringe that contributor's
|
|
758
|
+
copyright in it.
|
|
759
|
+
|
|
760
|
+
## Notices
|
|
761
|
+
|
|
762
|
+
You must ensure that everyone who gets a copy of
|
|
763
|
+
any part of this software from you, with or without
|
|
764
|
+
changes, also gets the text of this license or a link to
|
|
765
|
+
<https://blueoakcouncil.org/license/1.0.0>.
|
|
766
|
+
|
|
767
|
+
## Excuse
|
|
768
|
+
|
|
769
|
+
If anyone notifies you in writing that you have not
|
|
770
|
+
complied with [Notices](#notices), you can keep your
|
|
771
|
+
license by taking all practical steps to comply within 30
|
|
772
|
+
days after the notice. If you do not do so, your license
|
|
773
|
+
ends immediately.
|
|
774
|
+
|
|
775
|
+
## Patent
|
|
776
|
+
|
|
777
|
+
Each contributor licenses you to do everything with this
|
|
778
|
+
software that would otherwise infringe any patent claims
|
|
779
|
+
they can license or become able to license.
|
|
780
|
+
|
|
781
|
+
## Reliability
|
|
782
|
+
|
|
783
|
+
No contributor can revoke this license.
|
|
784
|
+
|
|
785
|
+
## No Liability
|
|
786
|
+
|
|
787
|
+
***As far as the law allows, this software comes as is,
|
|
788
|
+
without any warranty or condition, and no contributor
|
|
789
|
+
will be liable to anyone for any damages related to this
|
|
790
|
+
software or this license, under any kind of legal claim.***
|
|
791
|
+
|
|
792
|
+
================================================================================
|
|
793
|
+
|
|
794
|
+
entities@8.0.0
|
|
795
|
+
Declared license: BSD-2-Clause
|
|
796
|
+
|
|
797
|
+
--- LICENSE ---
|
|
798
|
+
Copyright (c) Felix Böhm
|
|
799
|
+
All rights reserved.
|
|
800
|
+
|
|
801
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
802
|
+
|
|
803
|
+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
804
|
+
|
|
805
|
+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
806
|
+
|
|
807
|
+
THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
|
|
808
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
809
|
+
|
|
810
|
+
================================================================================
|
|
811
|
+
|
|
812
|
+
fflate@0.8.3
|
|
813
|
+
Declared license: MIT
|
|
814
|
+
|
|
815
|
+
--- LICENSE ---
|
|
816
|
+
MIT License
|
|
817
|
+
|
|
818
|
+
Copyright (c) 2026 Arjun Barrett
|
|
819
|
+
|
|
820
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
821
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
822
|
+
in the Software without restriction, including without limitation the rights
|
|
823
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
824
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
825
|
+
furnished to do so, subject to the following conditions:
|
|
826
|
+
|
|
827
|
+
The above copyright notice and this permission notice shall be included in all
|
|
828
|
+
copies or substantial portions of the Software.
|
|
829
|
+
|
|
830
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
831
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
832
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
833
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
834
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
835
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
836
|
+
SOFTWARE.
|
|
837
|
+
|
|
838
|
+
================================================================================
|
|
839
|
+
|
|
840
|
+
minipass@7.1.3
|
|
841
|
+
Declared license: BlueOak-1.0.0
|
|
842
|
+
|
|
843
|
+
--- LICENSE.md ---
|
|
844
|
+
# Blue Oak Model License
|
|
845
|
+
|
|
846
|
+
Version 1.0.0
|
|
847
|
+
|
|
848
|
+
## Purpose
|
|
849
|
+
|
|
850
|
+
This license gives everyone as much permission to work with
|
|
851
|
+
this software as possible, while protecting contributors
|
|
852
|
+
from liability.
|
|
853
|
+
|
|
854
|
+
## Acceptance
|
|
855
|
+
|
|
856
|
+
In order to receive this license, you must agree to its
|
|
857
|
+
rules. The rules of this license are both obligations
|
|
858
|
+
under that agreement and conditions to your license.
|
|
859
|
+
You must not do anything with this software that triggers
|
|
860
|
+
a rule that you cannot or will not follow.
|
|
861
|
+
|
|
862
|
+
## Copyright
|
|
863
|
+
|
|
864
|
+
Each contributor licenses you to do everything with this
|
|
865
|
+
software that would otherwise infringe that contributor's
|
|
866
|
+
copyright in it.
|
|
867
|
+
|
|
868
|
+
## Notices
|
|
869
|
+
|
|
870
|
+
You must ensure that everyone who gets a copy of
|
|
871
|
+
any part of this software from you, with or without
|
|
872
|
+
changes, also gets the text of this license or a link to
|
|
873
|
+
<https://blueoakcouncil.org/license/1.0.0>.
|
|
874
|
+
|
|
875
|
+
## Excuse
|
|
876
|
+
|
|
877
|
+
If anyone notifies you in writing that you have not
|
|
878
|
+
complied with [Notices](#notices), you can keep your
|
|
879
|
+
license by taking all practical steps to comply within 30
|
|
880
|
+
days after the notice. If you do not do so, your license
|
|
881
|
+
ends immediately.
|
|
882
|
+
|
|
883
|
+
## Patent
|
|
884
|
+
|
|
885
|
+
Each contributor licenses you to do everything with this
|
|
886
|
+
software that would otherwise infringe any patent claims
|
|
887
|
+
they can license or become able to license.
|
|
888
|
+
|
|
889
|
+
## Reliability
|
|
890
|
+
|
|
891
|
+
No contributor can revoke this license.
|
|
892
|
+
|
|
893
|
+
## No Liability
|
|
894
|
+
|
|
895
|
+
***As far as the law allows, this software comes as is,
|
|
896
|
+
without any warranty or condition, and no contributor
|
|
897
|
+
will be liable to anyone for any damages related to this
|
|
898
|
+
software or this license, under any kind of legal claim.***
|
|
899
|
+
|
|
900
|
+
================================================================================
|
|
901
|
+
|
|
902
|
+
minizlib@3.1.0
|
|
903
|
+
Declared license: MIT
|
|
904
|
+
|
|
905
|
+
--- LICENSE ---
|
|
906
|
+
Minizlib was created by Isaac Z. Schlueter.
|
|
907
|
+
It is a derivative work of the Node.js project.
|
|
908
|
+
|
|
909
|
+
"""
|
|
910
|
+
Copyright (c) 2017-2023 Isaac Z. Schlueter and Contributors
|
|
911
|
+
Copyright (c) 2017-2023 Node.js contributors. All rights reserved.
|
|
912
|
+
Copyright (c) 2017-2023 Joyent, Inc. and other Node contributors. All rights reserved.
|
|
913
|
+
|
|
914
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
|
915
|
+
copy of this software and associated documentation files (the "Software"),
|
|
916
|
+
to deal in the Software without restriction, including without limitation
|
|
917
|
+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
918
|
+
and/or sell copies of the Software, and to permit persons to whom the
|
|
919
|
+
Software is furnished to do so, subject to the following conditions:
|
|
920
|
+
|
|
921
|
+
The above copyright notice and this permission notice shall be included in
|
|
922
|
+
all copies or substantial portions of the Software.
|
|
923
|
+
|
|
924
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
925
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
926
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
927
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
928
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
929
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
930
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
931
|
+
"""
|
|
932
|
+
|
|
933
|
+
================================================================================
|
|
934
|
+
|
|
935
|
+
parse5@8.0.1
|
|
936
|
+
Declared license: MIT
|
|
937
|
+
|
|
938
|
+
--- LICENSE ---
|
|
939
|
+
Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)
|
|
940
|
+
|
|
941
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
942
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
943
|
+
in the Software without restriction, including without limitation the rights
|
|
944
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
945
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
946
|
+
furnished to do so, subject to the following conditions:
|
|
947
|
+
|
|
948
|
+
The above copyright notice and this permission notice shall be included in
|
|
949
|
+
all copies or substantial portions of the Software.
|
|
950
|
+
|
|
951
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
952
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
953
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
954
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
955
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
956
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
957
|
+
THE SOFTWARE.
|
|
958
|
+
|
|
959
|
+
================================================================================
|
|
960
|
+
|
|
702
961
|
playwright-core@1.62.1
|
|
703
962
|
Declared license: Apache-2.0
|
|
704
963
|
|
|
@@ -915,6 +1174,138 @@ available under the Apache 2.0 license (https://github.com/puppeteer/puppeteer/b
|
|
|
915
1174
|
|
|
916
1175
|
================================================================================
|
|
917
1176
|
|
|
1177
|
+
tar@7.5.22
|
|
1178
|
+
Declared license: BlueOak-1.0.0
|
|
1179
|
+
|
|
1180
|
+
--- LICENSE.md ---
|
|
1181
|
+
# Blue Oak Model License
|
|
1182
|
+
|
|
1183
|
+
Version 1.0.0
|
|
1184
|
+
|
|
1185
|
+
## Purpose
|
|
1186
|
+
|
|
1187
|
+
This license gives everyone as much permission to work with
|
|
1188
|
+
this software as possible, while protecting contributors
|
|
1189
|
+
from liability.
|
|
1190
|
+
|
|
1191
|
+
## Acceptance
|
|
1192
|
+
|
|
1193
|
+
In order to receive this license, you must agree to its
|
|
1194
|
+
rules. The rules of this license are both obligations
|
|
1195
|
+
under that agreement and conditions to your license.
|
|
1196
|
+
You must not do anything with this software that triggers
|
|
1197
|
+
a rule that you cannot or will not follow.
|
|
1198
|
+
|
|
1199
|
+
## Copyright
|
|
1200
|
+
|
|
1201
|
+
Each contributor licenses you to do everything with this
|
|
1202
|
+
software that would otherwise infringe that contributor's
|
|
1203
|
+
copyright in it.
|
|
1204
|
+
|
|
1205
|
+
## Notices
|
|
1206
|
+
|
|
1207
|
+
You must ensure that everyone who gets a copy of
|
|
1208
|
+
any part of this software from you, with or without
|
|
1209
|
+
changes, also gets the text of this license or a link to
|
|
1210
|
+
<https://blueoakcouncil.org/license/1.0.0>.
|
|
1211
|
+
|
|
1212
|
+
## Excuse
|
|
1213
|
+
|
|
1214
|
+
If anyone notifies you in writing that you have not
|
|
1215
|
+
complied with [Notices](#notices), you can keep your
|
|
1216
|
+
license by taking all practical steps to comply within 30
|
|
1217
|
+
days after the notice. If you do not do so, your license
|
|
1218
|
+
ends immediately.
|
|
1219
|
+
|
|
1220
|
+
## Patent
|
|
1221
|
+
|
|
1222
|
+
Each contributor licenses you to do everything with this
|
|
1223
|
+
software that would otherwise infringe any patent claims
|
|
1224
|
+
they can license or become able to license.
|
|
1225
|
+
|
|
1226
|
+
## Reliability
|
|
1227
|
+
|
|
1228
|
+
No contributor can revoke this license.
|
|
1229
|
+
|
|
1230
|
+
## No Liability
|
|
1231
|
+
|
|
1232
|
+
***As far as the law allows, this software comes as is,
|
|
1233
|
+
without any warranty or condition, and no contributor
|
|
1234
|
+
will be liable to anyone for any damages related to this
|
|
1235
|
+
software or this license, under any kind of legal claim.***
|
|
1236
|
+
|
|
1237
|
+
================================================================================
|
|
1238
|
+
|
|
1239
|
+
yallist@5.0.0
|
|
1240
|
+
Declared license: BlueOak-1.0.0
|
|
1241
|
+
|
|
1242
|
+
--- LICENSE.md ---
|
|
1243
|
+
All packages under `src/` are licensed according to the terms in
|
|
1244
|
+
their respective `LICENSE` or `LICENSE.md` files.
|
|
1245
|
+
|
|
1246
|
+
The remainder of this project is licensed under the Blue Oak
|
|
1247
|
+
Model License, as follows:
|
|
1248
|
+
|
|
1249
|
+
-----
|
|
1250
|
+
|
|
1251
|
+
# Blue Oak Model License
|
|
1252
|
+
|
|
1253
|
+
Version 1.0.0
|
|
1254
|
+
|
|
1255
|
+
## Purpose
|
|
1256
|
+
|
|
1257
|
+
This license gives everyone as much permission to work with
|
|
1258
|
+
this software as possible, while protecting contributors
|
|
1259
|
+
from liability.
|
|
1260
|
+
|
|
1261
|
+
## Acceptance
|
|
1262
|
+
|
|
1263
|
+
In order to receive this license, you must agree to its
|
|
1264
|
+
rules. The rules of this license are both obligations
|
|
1265
|
+
under that agreement and conditions to your license.
|
|
1266
|
+
You must not do anything with this software that triggers
|
|
1267
|
+
a rule that you cannot or will not follow.
|
|
1268
|
+
|
|
1269
|
+
## Copyright
|
|
1270
|
+
|
|
1271
|
+
Each contributor licenses you to do everything with this
|
|
1272
|
+
software that would otherwise infringe that contributor's
|
|
1273
|
+
copyright in it.
|
|
1274
|
+
|
|
1275
|
+
## Notices
|
|
1276
|
+
|
|
1277
|
+
You must ensure that everyone who gets a copy of
|
|
1278
|
+
any part of this software from you, with or without
|
|
1279
|
+
changes, also gets the text of this license or a link to
|
|
1280
|
+
<https://blueoakcouncil.org/license/1.0.0>.
|
|
1281
|
+
|
|
1282
|
+
## Excuse
|
|
1283
|
+
|
|
1284
|
+
If anyone notifies you in writing that you have not
|
|
1285
|
+
complied with [Notices](#notices), you can keep your
|
|
1286
|
+
license by taking all practical steps to comply within 30
|
|
1287
|
+
days after the notice. If you do not do so, your license
|
|
1288
|
+
ends immediately.
|
|
1289
|
+
|
|
1290
|
+
## Patent
|
|
1291
|
+
|
|
1292
|
+
Each contributor licenses you to do everything with this
|
|
1293
|
+
software that would otherwise infringe any patent claims
|
|
1294
|
+
they can license or become able to license.
|
|
1295
|
+
|
|
1296
|
+
## Reliability
|
|
1297
|
+
|
|
1298
|
+
No contributor can revoke this license.
|
|
1299
|
+
|
|
1300
|
+
## No Liability
|
|
1301
|
+
|
|
1302
|
+
***As far as the law allows, this software comes as is,
|
|
1303
|
+
without any warranty or condition, and no contributor
|
|
1304
|
+
will be liable to anyone for any damages related to this
|
|
1305
|
+
software or this license, under any kind of legal claim.***
|
|
1306
|
+
|
|
1307
|
+
================================================================================
|
|
1308
|
+
|
|
918
1309
|
yaml@2.9.0
|
|
919
1310
|
Declared license: ISC
|
|
920
1311
|
|
|
@@ -962,7 +1353,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
962
1353
|
SOFTWARE.
|
|
963
1354
|
|
|
964
1355
|
---
|
|
965
|
-
qubicl-core-skill-adaptations@0.
|
|
1356
|
+
qubicl-core-skill-adaptations@0.2.0
|
|
966
1357
|
Declared license: MIT
|
|
967
1358
|
Includes material adapted from https://github.com/NousResearch/hermes-agent/tree/7d6db4efb885856078e4d19f804035226df81e0d
|
|
968
1359
|
|
|
@@ -12,9 +12,11 @@ LABEL org.opencontainers.image.title="Qubicl computer" \
|
|
|
12
12
|
org.opencontainers.image.url="$QUBICL_SOURCE" \
|
|
13
13
|
org.opencontainers.image.version="$QUBICL_VERSION" \
|
|
14
14
|
org.opencontainers.image.revision="$QUBICL_REVISION" \
|
|
15
|
-
org.opencontainers.image.created="$QUBICL_CREATED"
|
|
15
|
+
org.opencontainers.image.created="$QUBICL_CREATED" \
|
|
16
|
+
dev.qubicl.preview-access="dynamic-v1"
|
|
16
17
|
|
|
17
|
-
ENV DEBIAN_FRONTEND=noninteractive
|
|
18
|
+
ENV DEBIAN_FRONTEND=noninteractive \
|
|
19
|
+
QUBICL_IMAGE_PREVIEW_ACCESS=dynamic-v1
|
|
18
20
|
RUN apt-get update \
|
|
19
21
|
&& apt-get upgrade -y \
|
|
20
22
|
&& apt-get install -y --no-install-recommends \
|
|
@@ -83,6 +85,8 @@ FROM filesystem-base AS display-browser-base
|
|
|
83
85
|
COPY --chown=qubicl:qubicl node_modules/playwright-core /opt/qubicl/node_modules/playwright-core
|
|
84
86
|
COPY PLAYWRIGHT_THIRD_PARTY_NOTICES.txt /usr/share/doc/qubicl/
|
|
85
87
|
COPY chromium-wrapper.sh /usr/local/bin/qubicl-chromium
|
|
88
|
+
COPY --chown=root:root qubicl_viewer_auth.py /usr/lib/python3/dist-packages/qubicl_viewer_auth.py
|
|
89
|
+
COPY x11vnc-relay.sh /usr/local/bin/qubicl-x11vnc-relay
|
|
86
90
|
|
|
87
91
|
# noVNC is static browser content at runtime. Extract Debian's signed package
|
|
88
92
|
# without installing its unnecessary dependency on Debian's second Node stack.
|
|
@@ -92,6 +96,7 @@ RUN apt-get update \
|
|
|
92
96
|
dbus-x11 \
|
|
93
97
|
fonts-dejavu-core \
|
|
94
98
|
scrot \
|
|
99
|
+
socat \
|
|
95
100
|
websockify \
|
|
96
101
|
x11-utils \
|
|
97
102
|
x11-xserver-utils \
|
|
@@ -110,7 +115,14 @@ RUN apt-get update \
|
|
|
110
115
|
&& test -s /usr/share/doc/novnc/copyright \
|
|
111
116
|
&& rm -rf /tmp/qubicl-novnc-package /var/lib/apt/lists/* \
|
|
112
117
|
&& rm -f /etc/chromium.d/dev-shm \
|
|
113
|
-
&&
|
|
118
|
+
&& groupadd --system qubicl-viewer \
|
|
119
|
+
&& useradd --system --gid qubicl-viewer --home-dir /nonexistent --no-create-home --shell /usr/sbin/nologin qubicl-viewer \
|
|
120
|
+
&& chmod 0444 /usr/lib/python3/dist-packages/qubicl_viewer_auth.py \
|
|
121
|
+
&& chmod 0755 /usr/local/bin/qubicl-chromium /usr/local/bin/qubicl-x11vnc-relay \
|
|
122
|
+
&& ln -s qubicl-x11vnc-relay /usr/local/bin/qubicl-x11vnc-view \
|
|
123
|
+
&& ln -s qubicl-x11vnc-relay /usr/local/bin/qubicl-x11vnc-control \
|
|
124
|
+
&& python3 -I -c 'import qubicl_viewer_auth; assert qubicl_viewer_auth.__file__ == "/usr/lib/python3/dist-packages/qubicl_viewer_auth.py"' \
|
|
125
|
+
&& runuser -u qubicl -- test ! -w /usr/lib/python3/dist-packages/qubicl_viewer_auth.py \
|
|
114
126
|
&& printf 'CHROMIUM_FLAGS="$CHROMIUM_FLAGS --no-first-run --no-default-browser-check"\n' >/etc/chromium.d/qubicl-container
|
|
115
127
|
|
|
116
128
|
FROM display-browser-base AS document-inspection-base
|
|
@@ -168,7 +180,9 @@ RUN apt-get update \
|
|
|
168
180
|
&& apt-get install -y --no-install-recommends \
|
|
169
181
|
build-essential \
|
|
170
182
|
iproute2 \
|
|
171
|
-
libreoffice \
|
|
183
|
+
libreoffice-calc \
|
|
184
|
+
libreoffice-impress \
|
|
185
|
+
libreoffice-writer \
|
|
172
186
|
netcat-openbsd \
|
|
173
187
|
&& rm -rf /var/lib/apt/lists/* \
|
|
174
188
|
&& install -d -m 0755 /etc/skel/.config/libreoffice/4/user
|
|
@@ -195,11 +209,13 @@ ARG QUBICL_CONTRACT_PRESET
|
|
|
195
209
|
ARG QUBICL_CONTRACT_COMPATIBILITY
|
|
196
210
|
ARG QUBICL_CONTRACT_CAPABILITIES
|
|
197
211
|
COPY --chown=qubicl:qubicl manifests/browser.json /opt/qubicl/computer-manifest.json
|
|
198
|
-
ENV QUBICL_IMAGE_STARTUP_PROFILE=browser
|
|
212
|
+
ENV QUBICL_IMAGE_STARTUP_PROFILE=browser \
|
|
213
|
+
QUBICL_IMAGE_VIEWER_AUTHENTICATION=header-v1
|
|
199
214
|
LABEL dev.qubicl.contract-version="1" \
|
|
200
215
|
dev.qubicl.preset="$QUBICL_CONTRACT_PRESET" \
|
|
201
216
|
dev.qubicl.compatibility="$QUBICL_CONTRACT_COMPATIBILITY" \
|
|
202
217
|
dev.qubicl.capabilities="$QUBICL_CONTRACT_CAPABILITIES" \
|
|
218
|
+
dev.qubicl.viewer-authentication="header-v1" \
|
|
203
219
|
dev.qubicl.manifest-sha256="$QUBICL_MANIFEST_SHA256"
|
|
204
220
|
EXPOSE 3212 6080 6081
|
|
205
221
|
|
|
@@ -209,11 +225,13 @@ ARG QUBICL_CONTRACT_PRESET
|
|
|
209
225
|
ARG QUBICL_CONTRACT_COMPATIBILITY
|
|
210
226
|
ARG QUBICL_CONTRACT_CAPABILITIES
|
|
211
227
|
COPY --chown=qubicl:qubicl manifests/computer.json /opt/qubicl/computer-manifest.json
|
|
212
|
-
ENV QUBICL_IMAGE_STARTUP_PROFILE=desktop
|
|
228
|
+
ENV QUBICL_IMAGE_STARTUP_PROFILE=desktop \
|
|
229
|
+
QUBICL_IMAGE_VIEWER_AUTHENTICATION=header-v1
|
|
213
230
|
LABEL dev.qubicl.contract-version="1" \
|
|
214
231
|
dev.qubicl.preset="$QUBICL_CONTRACT_PRESET" \
|
|
215
232
|
dev.qubicl.compatibility="$QUBICL_CONTRACT_COMPATIBILITY" \
|
|
216
233
|
dev.qubicl.capabilities="$QUBICL_CONTRACT_CAPABILITIES" \
|
|
234
|
+
dev.qubicl.viewer-authentication="header-v1" \
|
|
217
235
|
dev.qubicl.manifest-sha256="$QUBICL_MANIFEST_SHA256"
|
|
218
236
|
EXPOSE 3212 6080 6081
|
|
219
237
|
|
|
@@ -223,10 +241,12 @@ ARG QUBICL_CONTRACT_PRESET
|
|
|
223
241
|
ARG QUBICL_CONTRACT_COMPATIBILITY
|
|
224
242
|
ARG QUBICL_CONTRACT_CAPABILITIES
|
|
225
243
|
COPY --chown=qubicl:qubicl manifests/workstation.json /opt/qubicl/computer-manifest.json
|
|
226
|
-
ENV QUBICL_IMAGE_STARTUP_PROFILE=workstation
|
|
244
|
+
ENV QUBICL_IMAGE_STARTUP_PROFILE=workstation \
|
|
245
|
+
QUBICL_IMAGE_VIEWER_AUTHENTICATION=header-v1
|
|
227
246
|
LABEL dev.qubicl.contract-version="1" \
|
|
228
247
|
dev.qubicl.preset="$QUBICL_CONTRACT_PRESET" \
|
|
229
248
|
dev.qubicl.compatibility="$QUBICL_CONTRACT_COMPATIBILITY" \
|
|
230
249
|
dev.qubicl.capabilities="$QUBICL_CONTRACT_CAPABILITIES" \
|
|
250
|
+
dev.qubicl.viewer-authentication="header-v1" \
|
|
231
251
|
dev.qubicl.manifest-sha256="$QUBICL_MANIFEST_SHA256"
|
|
232
252
|
EXPOSE 3212 6080 6081
|
|
@@ -699,6 +699,78 @@ the full license text.
|
|
|
699
699
|
|
|
700
700
|
================================================================================
|
|
701
701
|
|
|
702
|
+
entities@8.0.0
|
|
703
|
+
Declared license: BSD-2-Clause
|
|
704
|
+
|
|
705
|
+
--- LICENSE ---
|
|
706
|
+
Copyright (c) Felix Böhm
|
|
707
|
+
All rights reserved.
|
|
708
|
+
|
|
709
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
710
|
+
|
|
711
|
+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
712
|
+
|
|
713
|
+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
714
|
+
|
|
715
|
+
THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
|
|
716
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
717
|
+
|
|
718
|
+
================================================================================
|
|
719
|
+
|
|
720
|
+
fflate@0.8.3
|
|
721
|
+
Declared license: MIT
|
|
722
|
+
|
|
723
|
+
--- LICENSE ---
|
|
724
|
+
MIT License
|
|
725
|
+
|
|
726
|
+
Copyright (c) 2026 Arjun Barrett
|
|
727
|
+
|
|
728
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
729
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
730
|
+
in the Software without restriction, including without limitation the rights
|
|
731
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
732
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
733
|
+
furnished to do so, subject to the following conditions:
|
|
734
|
+
|
|
735
|
+
The above copyright notice and this permission notice shall be included in all
|
|
736
|
+
copies or substantial portions of the Software.
|
|
737
|
+
|
|
738
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
739
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
740
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
741
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
742
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
743
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
744
|
+
SOFTWARE.
|
|
745
|
+
|
|
746
|
+
================================================================================
|
|
747
|
+
|
|
748
|
+
parse5@8.0.1
|
|
749
|
+
Declared license: MIT
|
|
750
|
+
|
|
751
|
+
--- LICENSE ---
|
|
752
|
+
Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)
|
|
753
|
+
|
|
754
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
755
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
756
|
+
in the Software without restriction, including without limitation the rights
|
|
757
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
758
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
759
|
+
furnished to do so, subject to the following conditions:
|
|
760
|
+
|
|
761
|
+
The above copyright notice and this permission notice shall be included in
|
|
762
|
+
all copies or substantial portions of the Software.
|
|
763
|
+
|
|
764
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
765
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
766
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
767
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
768
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
769
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
770
|
+
THE SOFTWARE.
|
|
771
|
+
|
|
772
|
+
================================================================================
|
|
773
|
+
|
|
702
774
|
zod@4.4.3
|
|
703
775
|
Declared license: MIT
|
|
704
776
|
|
|
@@ -726,7 +798,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
726
798
|
SOFTWARE.
|
|
727
799
|
|
|
728
800
|
---
|
|
729
|
-
qubicl-core-skill-adaptations@0.
|
|
801
|
+
qubicl-core-skill-adaptations@0.2.0
|
|
730
802
|
Declared license: MIT
|
|
731
803
|
Includes material adapted from https://github.com/NousResearch/hermes-agent/tree/7d6db4efb885856078e4d19f804035226df81e0d
|
|
732
804
|
|