qubicl-cli 0.1.0-dev.0 → 0.1.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.
Files changed (91) hide show
  1. package/README.md +46 -21
  2. package/dist/SBOM.spdx.json +222 -0
  3. package/dist/THIRD_PARTY_NOTICES.txt +244 -0
  4. package/dist/assets/chromium-seccomp.json +181 -0
  5. package/dist/assets/computer/BROWSER_SKILLS_THIRD_PARTY_NOTICES.txt +23 -0
  6. package/dist/assets/computer/Dockerfile +191 -49
  7. package/dist/assets/computer/PLAYWRIGHT_THIRD_PARTY_NOTICES.txt +217 -0
  8. package/dist/assets/computer/SKILLS_THIRD_PARTY_NOTICES.txt +29 -0
  9. package/dist/assets/computer/THIRD_PARTY_NOTICES.txt +28 -0
  10. package/dist/assets/computer/WEB_THIRD_PARTY_NOTICES.txt +42 -0
  11. package/dist/assets/computer/browser-skills-requirements.txt +12 -0
  12. package/dist/assets/computer/chromium-wrapper.sh +12 -0
  13. package/dist/assets/computer/control.mjs +112 -52
  14. package/dist/assets/computer/entrypoint.sh +272 -35
  15. package/dist/assets/computer/libreoffice-registrymodifications.xcu +8 -0
  16. package/dist/assets/computer/manifests/browser.json +72 -0
  17. package/dist/assets/computer/manifests/computer.json +76 -0
  18. package/dist/assets/computer/manifests/file-system.json +42 -0
  19. package/dist/assets/computer/manifests/workstation.json +78 -0
  20. package/dist/assets/computer/node_modules/playwright-core/LICENSE +202 -0
  21. package/dist/assets/computer/node_modules/playwright-core/NOTICE +5 -0
  22. package/dist/assets/computer/node_modules/playwright-core/ThirdPartyNotices.txt +13 -0
  23. package/dist/assets/computer/node_modules/playwright-core/browsers.json +75 -0
  24. package/dist/assets/computer/node_modules/playwright-core/index.js +17 -0
  25. package/dist/assets/computer/node_modules/playwright-core/index.mjs +28 -0
  26. package/dist/assets/computer/node_modules/playwright-core/lib/bootstrap.js +88 -0
  27. package/dist/assets/computer/node_modules/playwright-core/lib/coreBundle.js +74830 -0
  28. package/dist/assets/computer/node_modules/playwright-core/lib/utilsBundle.js +90764 -0
  29. package/dist/assets/computer/node_modules/playwright-core/lib/utilsBundle.js.LICENSE +2179 -0
  30. package/dist/assets/computer/node_modules/playwright-core/lib/webp_codec.LICENSE +173 -0
  31. package/dist/assets/computer/node_modules/playwright-core/lib/webp_codec.wasm +0 -0
  32. package/dist/assets/computer/node_modules/playwright-core/lib/xdg-open +1267 -0
  33. package/dist/assets/computer/node_modules/playwright-core/package.json +34 -0
  34. package/dist/assets/computer/skills/core/docx/LICENSE +21 -0
  35. package/dist/assets/computer/skills/core/docx/SKILL.md +21 -0
  36. package/dist/assets/computer/skills/core/docx/references/revisions-and-comments.md +88 -0
  37. package/dist/assets/computer/skills/core/docx/scripts/docx_comments.py +289 -0
  38. package/dist/assets/computer/skills/core/docx/scripts/docx_common.py +94 -0
  39. package/dist/assets/computer/skills/core/docx/scripts/docx_create.py +177 -0
  40. package/dist/assets/computer/skills/core/docx/scripts/docx_edit.py +250 -0
  41. package/dist/assets/computer/skills/core/docx/scripts/docx_read.py +149 -0
  42. package/dist/assets/computer/skills/core/docx/scripts/docx_revisions.py +147 -0
  43. package/dist/assets/computer/skills/core/docx/scripts/docx_template.py +70 -0
  44. package/dist/assets/computer/skills/core/docx/scripts/docx_validate.py +156 -0
  45. package/dist/assets/computer/skills/core/ocr-and-documents/LICENSE +21 -0
  46. package/dist/assets/computer/skills/core/ocr-and-documents/SKILL.md +24 -0
  47. package/dist/assets/computer/skills/core/ocr-and-documents/scripts/ocr_document.py +132 -0
  48. package/dist/assets/computer/skills/core/pdf/LICENSE +21 -0
  49. package/dist/assets/computer/skills/core/pdf/SKILL.md +25 -0
  50. package/dist/assets/computer/skills/core/pdf/references/forms.md +100 -0
  51. package/dist/assets/computer/skills/core/pdf/scripts/_raster.py +76 -0
  52. package/dist/assets/computer/skills/core/pdf/scripts/pdf_create.py +130 -0
  53. package/dist/assets/computer/skills/core/pdf/scripts/pdf_fill_form.py +97 -0
  54. package/dist/assets/computer/skills/core/pdf/scripts/pdf_form_layout.py +168 -0
  55. package/dist/assets/computer/skills/core/pdf/scripts/pdf_make_form.py +145 -0
  56. package/dist/assets/computer/skills/core/pdf/scripts/pdf_merge.py +50 -0
  57. package/dist/assets/computer/skills/core/pdf/scripts/pdf_meta.py +115 -0
  58. package/dist/assets/computer/skills/core/pdf/scripts/pdf_page_image.py +99 -0
  59. package/dist/assets/computer/skills/core/pdf/scripts/pdf_read.py +153 -0
  60. package/dist/assets/computer/skills/core/pdf/scripts/pdf_secure.py +71 -0
  61. package/dist/assets/computer/skills/core/pdf/scripts/pdf_split.py +84 -0
  62. package/dist/assets/computer/skills/core/pdf/scripts/pdf_stamp.py +143 -0
  63. package/dist/assets/computer/skills/core/pdf/scripts/pdf_watermark.py +51 -0
  64. package/dist/assets/computer/skills/core/plan/LICENSE +21 -0
  65. package/dist/assets/computer/skills/core/plan/SKILL.md +21 -0
  66. package/dist/assets/computer/skills/core/powerpoint/LICENSE +21 -0
  67. package/dist/assets/computer/skills/core/powerpoint/SKILL.md +18 -0
  68. package/dist/assets/computer/skills/core/powerpoint/scripts/pptx_create.py +214 -0
  69. package/dist/assets/computer/skills/core/powerpoint/scripts/pptx_edit.py +436 -0
  70. package/dist/assets/computer/skills/core/powerpoint/scripts/pptx_from_template.py +88 -0
  71. package/dist/assets/computer/skills/core/powerpoint/scripts/pptx_read.py +131 -0
  72. package/dist/assets/computer/skills/core/powerpoint/scripts/pptx_render.py +93 -0
  73. package/dist/assets/computer/skills/core/xlsx/LICENSE +21 -0
  74. package/dist/assets/computer/skills/core/xlsx/SKILL.md +22 -0
  75. package/dist/assets/computer/skills/core/xlsx/references/restructuring.md +71 -0
  76. package/dist/assets/computer/skills/core/xlsx/scripts/csv_to_xlsx.py +104 -0
  77. package/dist/assets/computer/skills/core/xlsx/scripts/xlsx_create.py +259 -0
  78. package/dist/assets/computer/skills/core/xlsx/scripts/xlsx_edit.py +263 -0
  79. package/dist/assets/computer/skills/core/xlsx/scripts/xlsx_read.py +160 -0
  80. package/dist/assets/computer/skills/core/xlsx/scripts/xlsx_recalc.py +110 -0
  81. package/dist/assets/computer/skills/core/xlsx/scripts/xlsx_restructure.py +337 -0
  82. package/dist/assets/computer/skills/core/xlsx/scripts/xlsx_to_csv.py +69 -0
  83. package/dist/assets/computer/skills/core-catalog.json +246 -0
  84. package/dist/assets/computer/skills-requirements.txt +18 -0
  85. package/dist/assets/computer/web-provider.py +592 -0
  86. package/dist/assets/computer/web-requirements.txt +37 -0
  87. package/dist/assets/gateway/Dockerfile +3 -1
  88. package/dist/assets/gateway/gateway.mjs +69 -40
  89. package/dist/assets/image-catalog.json +183 -0
  90. package/dist/qubicl.mjs +297 -167
  91. package/package.json +7 -7
package/README.md CHANGED
@@ -1,37 +1,62 @@
1
1
  # Qubicl CLI
2
2
 
3
- > Qubicl is unreleased development software. The npm package uses the `dev` tag and is unsupported; interfaces and state formats may change without notice.
3
+ Qubicl is a local computer layer for AI agents. It gives a compatible MCP or OpenAPI client a private Docker computer with durable files, bounded terminal/process tools, keyless web research, optional Chromium/desktop workflows, and explicit human takeover. The model stays outside Qubicl.
4
4
 
5
- Qubicl gives an MCP- or OpenAPI-capable AI a private Docker computer with a durable, host-visible home and an interactive desktop. The model stays outside Qubicl.
5
+ Qubicl `0.1.x` is the initial pre-1.0 release series. Interfaces and state
6
+ formats may evolve; back up important homes before upgrades.
6
7
 
7
- Native archives bundle Node.js and do not require a host Node installation. The npm fallback requires Node.js 22.14 or newer in the 22.x line, or Node.js 24.x. Both distributions require Docker Engine 24.0 or Docker Desktop 4.29 or newer, Docker Compose 2.24 or newer, and a supported Linux or macOS host. Run Qubicl as your normal host user, not with `sudo`.
8
-
9
- For development, build and invoke the CLI from the repository:
8
+ Install and start onboarding with:
10
9
 
11
10
  ```sh
12
- npm ci
13
- npm run build
14
- node packages/cli/dist/qubicl.mjs init
11
+ npm install -g qubicl-cli
12
+ qubicl setup
15
13
  ```
16
14
 
17
- To try the claimed development package instead:
15
+ The setup wizard uses ordinary numbered/text prompts. Type `back` to revisit the previous step or `cancel` to leave before confirmation without obtaining images or changing Qubicl state.
18
16
 
19
- ```sh
20
- npm install --global qubicl-cli@dev
21
- qubicl --version
22
- ```
17
+ Setup compares four progressive presets: lean headless `file-system` (1 CPU/512m), Openbox/Chromium `browser` with OCR and document inspection (2 CPU/2g), minimal-XFCE `computer` with document helpers and managed SSH (2 CPU/3g), and broad development/office `workstation` (2 CPU/4g). It validates a local Docker daemon, previews the exact image and resource effects, obtains only the selected image plus gateway, and optionally creates the first computer. Every image carries native keyless `web_search`, local `web_extract`, and the full compatible skill catalog. New computers activate `plan` on `file-system`; `plan`, `pdf`, and `ocr-and-documents` on `browser`; and all six core skills on `computer` and `workstation`.
23
18
 
24
- After an official release, the intended commands are:
19
+ Connect without placing a bearer token in client configuration:
25
20
 
26
21
  ```sh
27
- qubicl init
28
- qubicl create research
29
- qubicl connect research --client generic
30
- qubicl view research
22
+ qubicl connect computer-name --client codex
23
+ qubicl connect computer-name --client opencode
24
+ qubicl connect computer-name --client openclaw
25
+ qubicl connect computer-name --client hermes-agent
31
26
  ```
32
27
 
33
- Qubicl exposes one localhost-only gateway. Every computer has an immutable ID, exclusive fenced control leases, a dedicated bridge network, and a private bind-mounted `/home`. Only `/home` is durable; container-root files and installed packages may disappear on recreation. Computers receive no Docker socket, host namespaces, devices, arbitrary host mounts, or privileged mode.
28
+ Adapters are available for Codex, Claude Code, Claude Desktop, Cursor, VS Code, OpenCode, OpenClaw, Hermes Agent, Open WebUI, generic stdio, HTTP MCP, and OpenAPI. `connect` only prints setup instructions and never edits client files. HTTP/OpenAPI snippets point to the explicit `qubicl token show computer-name` command; they cannot print a raw token themselves.
29
+
30
+ For a client on the same Linux/macOS host, Codex prints `codex mcp add qubicl-computer-name -- qubicl mcp computer-name`; Qubicl does not run it. When the client runs on Windows and Qubicl runs inside WSL 2, add `--client-host windows` to any stdio adapter. Qubicl then emits that client's normal configuration with a pinned `wsl.exe`, distribution, Node executable, and Qubicl entrypoint. For other clients, copy the printed configuration into the client yourself. The stdio bridge owns its fenced lease, so lease proofs are absent from model-visible tools. Optional `--profile files|browser-semantic|browser-visual|desktop` arguments select smaller static catalogs; `--result-mode structured|compatible` is available for clients that require a non-default MCP result representation.
31
+
32
+ For a same-host Open WebUI, run `qubicl connect computer-name --client open-webui` and copy the printed fields into **Admin Panel → Settings → Integrations → Open Terminal**. The generated Docker Desktop URL uses `host.docker.internal`; replace it with `127.0.0.1` only when Open WebUI runs directly on the host. Retrieve the token separately and treat it as a password. The compatibility connection supplies native durable-file browsing and search, filesystem-backed chat uploads, lease-safe Qubicl/browser tools, native PNG screenshots, and explicitly published loopback port previews, but not an interactive PTY.
33
+
34
+ Every computer has an immutable ID, independent credentials, lease fencing, one explicit resource-bounded container, and a host-mounted `/home`. **Only `/home` is durable.** Files and packages elsewhere may disappear on recreation; use a compatible custom image for permanent system packages.
34
35
 
35
- Run `qubicl help` for every lifecycle, token, image, manifest, MCP, OpenAPI, and viewer command. Run `qubicl --version` to identify the Qubicl version and source revision. Qubicl is Apache-2.0 licensed and contains no telemetry or cloud-account requirement.
36
+ The gateway listens only on localhost. Computers receive no Docker socket, privileged mode, host namespaces, devices, added capabilities, or arbitrary host mounts. Browser-capable computers keep Chromium's Linux namespace and renderer seccomp-BPF sandboxes enabled through a constrained seccomp profile—without `--no-sandbox`, `SYS_ADMIN`, or an unconfined container. Controller and workload processes share the computer container, so takeover is a cooperative managed-process fence rather than a hostile-code boundary. Qubicl is not a VM-grade hostile-code sandbox.
37
+
38
+ Requirements are Node.js `^22.14.0 || ^24.0.0`, Docker Engine 24.0 or
39
+ Docker Desktop 4.29 or newer, and Docker Compose 2.24 or newer. Linux x64,
40
+ Apple Silicon macOS with Docker Desktop, and Windows 11 x64 through Ubuntu
41
+ 24.04 on WSL 2 with Docker Desktop are directly exercised for the first
42
+ release. Linux ARM64, Intel macOS, Windows on ARM, and other WSL distributions
43
+ are best-effort. Native Windows execution and WSL 1 are not supported, and
44
+ Qubicl computers remain Linux containers on every host.
45
+
46
+ Useful commands:
47
+
48
+ ```sh
49
+ qubicl help
50
+ qubicl doctor --json
51
+ qubicl list --json
52
+ qubicl create computer-name --json
53
+ qubicl upgrade computer-name --offline
54
+ qubicl skills computer-name
55
+ qubicl tools computer-name
56
+ qubicl control release computer-name
57
+ qubicl network show computer-name
58
+ qubicl backup create computer-name --quiesce
59
+ qubicl --version
60
+ ```
36
61
 
37
- Published builds are intended to use versioned Qubicl images. If an official system image is unavailable, the CLI can build the matching image locally from its bundled Docker context; it does not silently replace user-supplied custom images.
62
+ The source, security model, documentation, and Apache-2.0 license are in the [Qubicl repository](https://github.com/EldanRing/qubicl).
@@ -0,0 +1,222 @@
1
+ {
2
+ "spdxVersion": "SPDX-2.3",
3
+ "dataLicense": "CC0-1.0",
4
+ "SPDXID": "SPDXRef-DOCUMENT",
5
+ "name": "qubicl-cli-0.1.0-npm-application",
6
+ "documentNamespace": "https://github.com/EldanRing/qubicl/spdx/qubicl-cli/0.1.0/960bfafcc5e114f8c518e4a931b5172b7277292c/npm-application",
7
+ "creationInfo": {
8
+ "created": "2026-08-27T03:44:45Z",
9
+ "creators": [
10
+ "Tool: qubicl-metafile-sbom-1"
11
+ ]
12
+ },
13
+ "documentDescribes": [
14
+ "SPDXRef-Package-qubicl-cli-0.1.0-d495f41fa330"
15
+ ],
16
+ "packages": [
17
+ {
18
+ "name": "qubicl-cli",
19
+ "SPDXID": "SPDXRef-Package-qubicl-cli-0.1.0-d495f41fa330",
20
+ "versionInfo": "0.1.0",
21
+ "downloadLocation": "NOASSERTION",
22
+ "filesAnalyzed": false,
23
+ "licenseConcluded": "Apache-2.0",
24
+ "licenseDeclared": "Apache-2.0",
25
+ "copyrightText": "NOASSERTION",
26
+ "externalRefs": [
27
+ {
28
+ "referenceCategory": "PACKAGE-MANAGER",
29
+ "referenceType": "purl",
30
+ "referenceLocator": "pkg:npm/qubicl-cli@0.1.0"
31
+ }
32
+ ],
33
+ "comment": "Qubicl npm-application application assembled from the recorded esbuild metafiles."
34
+ },
35
+ {
36
+ "name": "@hono/node-server",
37
+ "SPDXID": "SPDXRef-Package-hono-node-server-1.19.17-1838a11ef509",
38
+ "versionInfo": "1.19.17",
39
+ "downloadLocation": "NOASSERTION",
40
+ "filesAnalyzed": false,
41
+ "licenseConcluded": "MIT",
42
+ "licenseDeclared": "MIT",
43
+ "copyrightText": "NOASSERTION",
44
+ "externalRefs": [
45
+ {
46
+ "referenceCategory": "PACKAGE-MANAGER",
47
+ "referenceType": "purl",
48
+ "referenceLocator": "pkg:npm/%40hono/node-server@1.19.17"
49
+ }
50
+ ],
51
+ "comment": "Bundled into: control."
52
+ },
53
+ {
54
+ "name": "@modelcontextprotocol/core",
55
+ "SPDXID": "SPDXRef-Package-modelcontextprotocol-core-2.0.0-546354de5e47",
56
+ "versionInfo": "2.0.0",
57
+ "downloadLocation": "NOASSERTION",
58
+ "filesAnalyzed": false,
59
+ "licenseConcluded": "MIT",
60
+ "licenseDeclared": "MIT",
61
+ "copyrightText": "NOASSERTION",
62
+ "externalRefs": [
63
+ {
64
+ "referenceCategory": "PACKAGE-MANAGER",
65
+ "referenceType": "purl",
66
+ "referenceLocator": "pkg:npm/%40modelcontextprotocol/core@2.0.0"
67
+ }
68
+ ],
69
+ "comment": "Bundled into: cli, control."
70
+ },
71
+ {
72
+ "name": "@modelcontextprotocol/node",
73
+ "SPDXID": "SPDXRef-Package-modelcontextprotocol-node-2.0.0-cc861036891c",
74
+ "versionInfo": "2.0.0",
75
+ "downloadLocation": "NOASSERTION",
76
+ "filesAnalyzed": false,
77
+ "licenseConcluded": "MIT",
78
+ "licenseDeclared": "MIT",
79
+ "copyrightText": "NOASSERTION",
80
+ "externalRefs": [
81
+ {
82
+ "referenceCategory": "PACKAGE-MANAGER",
83
+ "referenceType": "purl",
84
+ "referenceLocator": "pkg:npm/%40modelcontextprotocol/node@2.0.0"
85
+ }
86
+ ],
87
+ "comment": "Bundled into: control."
88
+ },
89
+ {
90
+ "name": "@modelcontextprotocol/server",
91
+ "SPDXID": "SPDXRef-Package-modelcontextprotocol-server-2.0.0-39f69d3701b8",
92
+ "versionInfo": "2.0.0",
93
+ "downloadLocation": "NOASSERTION",
94
+ "filesAnalyzed": false,
95
+ "licenseConcluded": "MIT",
96
+ "licenseDeclared": "MIT",
97
+ "copyrightText": "NOASSERTION",
98
+ "externalRefs": [
99
+ {
100
+ "referenceCategory": "PACKAGE-MANAGER",
101
+ "referenceType": "purl",
102
+ "referenceLocator": "pkg:npm/%40modelcontextprotocol/server@2.0.0"
103
+ }
104
+ ],
105
+ "comment": "Bundled into: cli, control."
106
+ },
107
+ {
108
+ "name": "playwright-core",
109
+ "SPDXID": "SPDXRef-Package-playwright-core-1.62.1-6e887f47565b",
110
+ "versionInfo": "1.62.1",
111
+ "downloadLocation": "NOASSERTION",
112
+ "filesAnalyzed": false,
113
+ "licenseConcluded": "Apache-2.0",
114
+ "licenseDeclared": "Apache-2.0",
115
+ "copyrightText": "NOASSERTION",
116
+ "externalRefs": [
117
+ {
118
+ "referenceCategory": "PACKAGE-MANAGER",
119
+ "referenceType": "purl",
120
+ "referenceLocator": "pkg:npm/playwright-core@1.62.1"
121
+ }
122
+ ],
123
+ "comment": "Bundled into: control-runtime."
124
+ },
125
+ {
126
+ "name": "qubicl-core-skill-adaptations",
127
+ "SPDXID": "SPDXRef-Package-qubicl-core-skill-adaptations-0.1.0-a8cccccd5bcc",
128
+ "versionInfo": "0.1.0",
129
+ "downloadLocation": "https://github.com/EldanRing/qubicl",
130
+ "filesAnalyzed": false,
131
+ "licenseConcluded": "MIT",
132
+ "licenseDeclared": "MIT",
133
+ "copyrightText": "NOASSERTION",
134
+ "externalRefs": [
135
+ {
136
+ "referenceCategory": "PACKAGE-MANAGER",
137
+ "referenceType": "purl",
138
+ "referenceLocator": "pkg:github/EldanRing/qubicl@960bfafcc5e114f8c518e4a931b5172b7277292c"
139
+ }
140
+ ],
141
+ "comment": "Six Qubicl-native core skills, with selected MIT-licensed helpers adapted from hermes-agent@7d6db4efb885856078e4d19f804035226df81e0d; Hermes Agent is not installed."
142
+ },
143
+ {
144
+ "name": "yaml",
145
+ "SPDXID": "SPDXRef-Package-yaml-2.9.0-be80181ebffd",
146
+ "versionInfo": "2.9.0",
147
+ "downloadLocation": "NOASSERTION",
148
+ "filesAnalyzed": false,
149
+ "licenseConcluded": "ISC",
150
+ "licenseDeclared": "ISC",
151
+ "copyrightText": "NOASSERTION",
152
+ "externalRefs": [
153
+ {
154
+ "referenceCategory": "PACKAGE-MANAGER",
155
+ "referenceType": "purl",
156
+ "referenceLocator": "pkg:npm/yaml@2.9.0"
157
+ }
158
+ ],
159
+ "comment": "Bundled into: cli."
160
+ },
161
+ {
162
+ "name": "zod",
163
+ "SPDXID": "SPDXRef-Package-zod-4.4.3-0479f5dfed7f",
164
+ "versionInfo": "4.4.3",
165
+ "downloadLocation": "NOASSERTION",
166
+ "filesAnalyzed": false,
167
+ "licenseConcluded": "MIT",
168
+ "licenseDeclared": "MIT",
169
+ "copyrightText": "NOASSERTION",
170
+ "externalRefs": [
171
+ {
172
+ "referenceCategory": "PACKAGE-MANAGER",
173
+ "referenceType": "purl",
174
+ "referenceLocator": "pkg:npm/zod@4.4.3"
175
+ }
176
+ ],
177
+ "comment": "Bundled into: cli, control, gateway."
178
+ }
179
+ ],
180
+ "relationships": [
181
+ {
182
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.0-d495f41fa330",
183
+ "relationshipType": "DEPENDS_ON",
184
+ "relatedSpdxElement": "SPDXRef-Package-hono-node-server-1.19.17-1838a11ef509"
185
+ },
186
+ {
187
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.0-d495f41fa330",
188
+ "relationshipType": "DEPENDS_ON",
189
+ "relatedSpdxElement": "SPDXRef-Package-modelcontextprotocol-core-2.0.0-546354de5e47"
190
+ },
191
+ {
192
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.0-d495f41fa330",
193
+ "relationshipType": "DEPENDS_ON",
194
+ "relatedSpdxElement": "SPDXRef-Package-modelcontextprotocol-node-2.0.0-cc861036891c"
195
+ },
196
+ {
197
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.0-d495f41fa330",
198
+ "relationshipType": "DEPENDS_ON",
199
+ "relatedSpdxElement": "SPDXRef-Package-modelcontextprotocol-server-2.0.0-39f69d3701b8"
200
+ },
201
+ {
202
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.0-d495f41fa330",
203
+ "relationshipType": "DEPENDS_ON",
204
+ "relatedSpdxElement": "SPDXRef-Package-playwright-core-1.62.1-6e887f47565b"
205
+ },
206
+ {
207
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.0-d495f41fa330",
208
+ "relationshipType": "DEPENDS_ON",
209
+ "relatedSpdxElement": "SPDXRef-Package-qubicl-core-skill-adaptations-0.1.0-a8cccccd5bcc"
210
+ },
211
+ {
212
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.0-d495f41fa330",
213
+ "relationshipType": "DEPENDS_ON",
214
+ "relatedSpdxElement": "SPDXRef-Package-yaml-2.9.0-be80181ebffd"
215
+ },
216
+ {
217
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.0-d495f41fa330",
218
+ "relationshipType": "DEPENDS_ON",
219
+ "relatedSpdxElement": "SPDXRef-Package-zod-4.4.3-0479f5dfed7f"
220
+ }
221
+ ]
222
+ }
@@ -699,6 +699,222 @@ the full license text.
699
699
 
700
700
  ================================================================================
701
701
 
702
+ playwright-core@1.62.1
703
+ Declared license: Apache-2.0
704
+
705
+ --- LICENSE ---
706
+ Apache License
707
+ Version 2.0, January 2004
708
+ http://www.apache.org/licenses/
709
+
710
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
711
+
712
+ 1. Definitions.
713
+
714
+ "License" shall mean the terms and conditions for use, reproduction,
715
+ and distribution as defined by Sections 1 through 9 of this document.
716
+
717
+ "Licensor" shall mean the copyright owner or entity authorized by
718
+ the copyright owner that is granting the License.
719
+
720
+ "Legal Entity" shall mean the union of the acting entity and all
721
+ other entities that control, are controlled by, or are under common
722
+ control with that entity. For the purposes of this definition,
723
+ "control" means (i) the power, direct or indirect, to cause the
724
+ direction or management of such entity, whether by contract or
725
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
726
+ outstanding shares, or (iii) beneficial ownership of such entity.
727
+
728
+ "You" (or "Your") shall mean an individual or Legal Entity
729
+ exercising permissions granted by this License.
730
+
731
+ "Source" form shall mean the preferred form for making modifications,
732
+ including but not limited to software source code, documentation
733
+ source, and configuration files.
734
+
735
+ "Object" form shall mean any form resulting from mechanical
736
+ transformation or translation of a Source form, including but
737
+ not limited to compiled object code, generated documentation,
738
+ and conversions to other media types.
739
+
740
+ "Work" shall mean the work of authorship, whether in Source or
741
+ Object form, made available under the License, as indicated by a
742
+ copyright notice that is included in or attached to the work
743
+ (an example is provided in the Appendix below).
744
+
745
+ "Derivative Works" shall mean any work, whether in Source or Object
746
+ form, that is based on (or derived from) the Work and for which the
747
+ editorial revisions, annotations, elaborations, or other modifications
748
+ represent, as a whole, an original work of authorship. For the purposes
749
+ of this License, Derivative Works shall not include works that remain
750
+ separable from, or merely link (or bind by name) to the interfaces of,
751
+ the Work and Derivative Works thereof.
752
+
753
+ "Contribution" shall mean any work of authorship, including
754
+ the original version of the Work and any modifications or additions
755
+ to that Work or Derivative Works thereof, that is intentionally
756
+ submitted to Licensor for inclusion in the Work by the copyright owner
757
+ or by an individual or Legal Entity authorized to submit on behalf of
758
+ the copyright owner. For the purposes of this definition, "submitted"
759
+ means any form of electronic, verbal, or written communication sent
760
+ to the Licensor or its representatives, including but not limited to
761
+ communication on electronic mailing lists, source code control systems,
762
+ and issue tracking systems that are managed by, or on behalf of, the
763
+ Licensor for the purpose of discussing and improving the Work, but
764
+ excluding communication that is conspicuously marked or otherwise
765
+ designated in writing by the copyright owner as "Not a Contribution."
766
+
767
+ "Contributor" shall mean Licensor and any individual or Legal Entity
768
+ on behalf of whom a Contribution has been received by Licensor and
769
+ subsequently incorporated within the Work.
770
+
771
+ 2. Grant of Copyright License. Subject to the terms and conditions of
772
+ this License, each Contributor hereby grants to You a perpetual,
773
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
774
+ copyright license to reproduce, prepare Derivative Works of,
775
+ publicly display, publicly perform, sublicense, and distribute the
776
+ Work and such Derivative Works in Source or Object form.
777
+
778
+ 3. Grant of Patent License. Subject to the terms and conditions of
779
+ this License, each Contributor hereby grants to You a perpetual,
780
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
781
+ (except as stated in this section) patent license to make, have made,
782
+ use, offer to sell, sell, import, and otherwise transfer the Work,
783
+ where such license applies only to those patent claims licensable
784
+ by such Contributor that are necessarily infringed by their
785
+ Contribution(s) alone or by combination of their Contribution(s)
786
+ with the Work to which such Contribution(s) was submitted. If You
787
+ institute patent litigation against any entity (including a
788
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
789
+ or a Contribution incorporated within the Work constitutes direct
790
+ or contributory patent infringement, then any patent licenses
791
+ granted to You under this License for that Work shall terminate
792
+ as of the date such litigation is filed.
793
+
794
+ 4. Redistribution. You may reproduce and distribute copies of the
795
+ Work or Derivative Works thereof in any medium, with or without
796
+ modifications, and in Source or Object form, provided that You
797
+ meet the following conditions:
798
+
799
+ (a) You must give any other recipients of the Work or
800
+ Derivative Works a copy of this License; and
801
+
802
+ (b) You must cause any modified files to carry prominent notices
803
+ stating that You changed the files; and
804
+
805
+ (c) You must retain, in the Source form of any Derivative Works
806
+ that You distribute, all copyright, patent, trademark, and
807
+ attribution notices from the Source form of the Work,
808
+ excluding those notices that do not pertain to any part of
809
+ the Derivative Works; and
810
+
811
+ (d) If the Work includes a "NOTICE" text file as part of its
812
+ distribution, then any Derivative Works that You distribute must
813
+ include a readable copy of the attribution notices contained
814
+ within such NOTICE file, excluding those notices that do not
815
+ pertain to any part of the Derivative Works, in at least one
816
+ of the following places: within a NOTICE text file distributed
817
+ as part of the Derivative Works; within the Source form or
818
+ documentation, if provided along with the Derivative Works; or,
819
+ within a display generated by the Derivative Works, if and
820
+ wherever such third-party notices normally appear. The contents
821
+ of the NOTICE file are for informational purposes only and
822
+ do not modify the License. You may add Your own attribution
823
+ notices within Derivative Works that You distribute, alongside
824
+ or as an addendum to the NOTICE text from the Work, provided
825
+ that such additional attribution notices cannot be construed
826
+ as modifying the License.
827
+
828
+ You may add Your own copyright statement to Your modifications and
829
+ may provide additional or different license terms and conditions
830
+ for use, reproduction, or distribution of Your modifications, or
831
+ for any such Derivative Works as a whole, provided Your use,
832
+ reproduction, and distribution of the Work otherwise complies with
833
+ the conditions stated in this License.
834
+
835
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
836
+ any Contribution intentionally submitted for inclusion in the Work
837
+ by You to the Licensor shall be under the terms and conditions of
838
+ this License, without any additional terms or conditions.
839
+ Notwithstanding the above, nothing herein shall supersede or modify
840
+ the terms of any separate license agreement you may have executed
841
+ with Licensor regarding such Contributions.
842
+
843
+ 6. Trademarks. This License does not grant permission to use the trade
844
+ names, trademarks, service marks, or product names of the Licensor,
845
+ except as required for reasonable and customary use in describing the
846
+ origin of the Work and reproducing the content of the NOTICE file.
847
+
848
+ 7. Disclaimer of Warranty. Unless required by applicable law or
849
+ agreed to in writing, Licensor provides the Work (and each
850
+ Contributor provides its Contributions) on an "AS IS" BASIS,
851
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
852
+ implied, including, without limitation, any warranties or conditions
853
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
854
+ PARTICULAR PURPOSE. You are solely responsible for determining the
855
+ appropriateness of using or redistributing the Work and assume any
856
+ risks associated with Your exercise of permissions under this License.
857
+
858
+ 8. Limitation of Liability. In no event and under no legal theory,
859
+ whether in tort (including negligence), contract, or otherwise,
860
+ unless required by applicable law (such as deliberate and grossly
861
+ negligent acts) or agreed to in writing, shall any Contributor be
862
+ liable to You for damages, including any direct, indirect, special,
863
+ incidental, or consequential damages of any character arising as a
864
+ result of this License or out of the use or inability to use the
865
+ Work (including but not limited to damages for loss of goodwill,
866
+ work stoppage, computer failure or malfunction, or any and all
867
+ other commercial damages or losses), even if such Contributor
868
+ has been advised of the possibility of such damages.
869
+
870
+ 9. Accepting Warranty or Additional Liability. While redistributing
871
+ the Work or Derivative Works thereof, You may choose to offer,
872
+ and charge a fee for, acceptance of support, warranty, indemnity,
873
+ or other liability obligations and/or rights consistent with this
874
+ License. However, in accepting such obligations, You may act only
875
+ on Your own behalf and on Your sole responsibility, not on behalf
876
+ of any other Contributor, and only if You agree to indemnify,
877
+ defend, and hold each Contributor harmless for any liability
878
+ incurred by, or claims asserted against, such Contributor by reason
879
+ of your accepting any such warranty or additional liability.
880
+
881
+ END OF TERMS AND CONDITIONS
882
+
883
+ APPENDIX: How to apply the Apache License to your work.
884
+
885
+ To apply the Apache License to your work, attach the following
886
+ boilerplate notice, with the fields enclosed by brackets "[]"
887
+ replaced with your own identifying information. (Don't include
888
+ the brackets!) The text should be enclosed in the appropriate
889
+ comment syntax for the file format. We also recommend that a
890
+ file or class name and description of purpose be included on the
891
+ same "printed page" as the copyright notice for easier
892
+ identification within third-party archives.
893
+
894
+ Portions Copyright (c) Microsoft Corporation.
895
+ Portions Copyright 2017 Google Inc.
896
+
897
+ Licensed under the Apache License, Version 2.0 (the "License");
898
+ you may not use this file except in compliance with the License.
899
+ You may obtain a copy of the License at
900
+
901
+ http://www.apache.org/licenses/LICENSE-2.0
902
+
903
+ Unless required by applicable law or agreed to in writing, software
904
+ distributed under the License is distributed on an "AS IS" BASIS,
905
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
906
+ See the License for the specific language governing permissions and
907
+ limitations under the License.
908
+
909
+ --- NOTICE ---
910
+ Playwright
911
+ Copyright (c) Microsoft Corporation
912
+
913
+ This software contains code derived from the Puppeteer project (https://github.com/puppeteer/puppeteer),
914
+ available under the Apache 2.0 license (https://github.com/puppeteer/puppeteer/blob/master/LICENSE).
915
+
916
+ ================================================================================
917
+
702
918
  yaml@2.9.0
703
919
  Declared license: ISC
704
920
 
@@ -744,3 +960,31 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
744
960
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
745
961
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
746
962
  SOFTWARE.
963
+
964
+ ---
965
+ qubicl-core-skill-adaptations@0.1.0
966
+ Declared license: MIT
967
+ Includes material adapted from https://github.com/NousResearch/hermes-agent/tree/7d6db4efb885856078e4d19f804035226df81e0d
968
+
969
+ --- LICENSE ---
970
+ MIT License
971
+
972
+ Copyright (c) 2025 Nous Research
973
+
974
+ Permission is hereby granted, free of charge, to any person obtaining a copy
975
+ of this software and associated documentation files (the "Software"), to deal
976
+ in the Software without restriction, including without limitation the rights
977
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
978
+ copies of the Software, and to permit persons to whom the Software is
979
+ furnished to do so, subject to the following conditions:
980
+
981
+ The above copyright notice and this permission notice shall be included in all
982
+ copies or substantial portions of the Software.
983
+
984
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
985
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
986
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
987
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
988
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
989
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
990
+ SOFTWARE.