qubicl-cli 0.1.0-dev.0 → 0.1.1

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 +129 -19
  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 +8 -8
package/README.md CHANGED
@@ -1,37 +1,147 @@
1
- # Qubicl CLI
1
+ <div align="center">
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
+ <picture>
4
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/EldanRing/qubicl/main/assets/brand/qubicl-mark-dark.svg">
5
+ <img alt="Qubicl" src="https://raw.githubusercontent.com/EldanRing/qubicl/main/assets/brand/qubicl-mark.svg" width="180">
6
+ </picture>
4
7
 
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.
8
+ <h1>Qubicl</h1>
6
9
 
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`.
10
+ ### Give any AI agent a real, private computer on your machine.
8
11
 
9
- For development, build and invoke the CLI from the repository:
12
+ Durable files. Terminal access. Web research. A persistent browser and desktop.
13
+ Human takeover whenever you want it. No Qubicl account, cloud control plane, or
14
+ model lock-in.
15
+
16
+ [![npm](https://img.shields.io/npm/v/qubicl-cli?color=cb3837&label=npm)](https://www.npmjs.com/package/qubicl-cli)
17
+ [![License](https://img.shields.io/badge/license-Apache--2.0-6f42c1)](https://github.com/EldanRing/qubicl/blob/main/LICENSE)
18
+ [![Node](https://img.shields.io/badge/node-22%20%7C%2024-339933)](https://github.com/EldanRing/qubicl/blob/main/package.json)
19
+ [![Docker](https://img.shields.io/badge/runtime-Docker-2496ED)](https://www.docker.com/)
20
+
21
+ </div>
22
+
23
+ ---
24
+
25
+ ```sh
26
+ npm install -g qubicl-cli
27
+ qubicl setup
28
+ ```
29
+
30
+ Qubicl turns local Docker into observable computers for external AI agents.
31
+ The agent stays in Codex, Claude, Open WebUI, Cursor, VS Code, or another MCP or
32
+ OpenAPI client. Qubicl supplies the machine it works on.
33
+
34
+ ```text
35
+ your model or agent
36
+
37
+ │ MCP / OpenAPI / Open Terminal
38
+
39
+ localhost-only Qubicl gateway
40
+
41
+ ├── terminal + managed processes
42
+ ├── durable, host-visible files
43
+ ├── keyless web search + local extraction
44
+ ├── persistent Chromium + desktop
45
+ ├── packaged, operator-controlled skills
46
+ └── live viewer + human takeover
47
+ ```
48
+
49
+ ## Why Qubicl
50
+
51
+ | | |
52
+ | --- | --- |
53
+ | **Bring your own model** | One computer works with any compatible client. Switch models without rebuilding the workspace. |
54
+ | **See the work** | Watch the live desktop, take control, finish a task yourself, and hand the same session back. |
55
+ | **Keep the files** | The computer's `/home` is visible on the host and survives restarts, upgrades, and runtime recreation. |
56
+ | **Do more than code** | Terminal, Git, web research, browser automation, desktop apps, office workflows, previews, backups, and SSH. |
57
+ | **Control every computer** | Choose its resources, network policy, exposed tools, active skills, credentials, and lifecycle. |
58
+ | **Stay local** | No Qubicl account, telemetry backend, database, hosted daemon, or Docker socket inside the computer. |
59
+
60
+ ## Quick start
61
+
62
+ Requirements: Node.js 22 or 24, Docker Engine 24.0 or Docker Desktop 4.29+, and
63
+ Docker Compose 2.24+. Qubicl supports Linux, Apple Silicon macOS with Docker
64
+ Desktop, and Windows 11 x64 through Ubuntu 24.04 on WSL 2 with Docker Desktop.
10
65
 
11
66
  ```sh
12
- npm ci
13
- npm run build
14
- node packages/cli/dist/qubicl.mjs init
67
+ qubicl setup
68
+ qubicl create computer-name --preset computer
69
+ qubicl connect computer-name --client codex
15
70
  ```
16
71
 
17
- To try the claimed development package instead:
72
+ The setup wizard checks Docker, compares four progressive computer presets,
73
+ previews resource and image effects, obtains only the selected image plus the
74
+ gateway, and can create the first computer. Run Qubicl as your normal user,
75
+ never with `sudo`.
76
+
77
+ ## Computer presets
78
+
79
+ | Preset | Includes | Viewer | Suggested limit |
80
+ | --- | --- | :---: | ---: |
81
+ | `file-system` | Shell, processes, Git, durable files, web research | — | 1 CPU / 512m |
82
+ | `browser` | Everything above plus persistent Chromium, OCR, PDF inspection | ✓ | 2 CPU / 2g |
83
+ | `computer` | Browser plus a lightweight XFCE desktop, editors, document tools, SSH | ✓ | 2 CPU / 3g |
84
+ | `workstation` | Full development and office environment with LibreOffice | ✓ | 2 CPU / 4g |
85
+
86
+ Every preset includes native keyless `web_search`, local `web_extract`, and
87
+ verified Qubicl-native skill baselines with durable, agent-editable working
88
+ copies. Operators choose the tools and skills each computer exposes:
18
89
 
19
90
  ```sh
20
- npm install --global qubicl-cli@dev
21
- qubicl --version
91
+ qubicl tools computer-name
92
+ qubicl skills computer-name
22
93
  ```
23
94
 
24
- After an official release, the intended commands are:
95
+ Disabled tools disappear from MCP, OpenAPI, and Open Terminal, and cached calls
96
+ fail closed.
97
+
98
+ ## Connect any agent
25
99
 
26
100
  ```sh
27
- qubicl init
28
- qubicl create research
29
- qubicl connect research --client generic
30
- qubicl view research
101
+ qubicl connect computer-name --client codex
102
+ qubicl connect computer-name --client claude-code
103
+ qubicl connect computer-name --client cursor
104
+ qubicl connect computer-name --client opencode
105
+ qubicl connect computer-name --client openclaw
106
+ qubicl connect computer-name --client hermes-agent
107
+ qubicl connect computer-name --client open-webui
31
108
  ```
32
109
 
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.
110
+ Adapters cover Codex, Claude Code, Claude Desktop, Cursor, VS Code, OpenCode,
111
+ OpenClaw, Hermes Agent, Open WebUI, generic stdio and HTTP MCP, and direct
112
+ OpenAPI. `connect` prints configuration; it never edits client files or prints
113
+ a bearer token.
114
+
115
+ For Open WebUI, copy the generated configuration into **Admin Panel → Settings
116
+ → Integrations → Open Terminal**. Qubicl supplies native durable-file browsing,
117
+ chat uploads, screenshots, browser tools, and explicitly published local
118
+ previews without joining Open WebUI's Docker network.
119
+
120
+ ## Watch and take over
121
+
122
+ ```sh
123
+ qubicl view computer-name
124
+ ```
125
+
126
+ Observation is passive. **Take control** fences agent tools and terminates its
127
+ ordinary managed commands before handing you the keyboard and mouse. Persistent
128
+ browser and managed desktop applications remain visible so you can continue the
129
+ same task. Qubicl's green pointer shows the agent's latest desktop or browser
130
+ position in the viewer.
131
+
132
+ ## Security boundary
133
+
134
+ Computers run without privileged mode, a Docker socket, host namespaces,
135
+ arbitrary mounts, or passwordless elevation. The gateway listens only on
136
+ `127.0.0.1`. Qubicl is a Docker-based computer for trusted or
137
+ operator-supervised workloads, not a VM boundary against hostile code.
138
+
139
+ Read the complete [security model](https://github.com/EldanRing/qubicl/blob/main/docs/security-model.md)
140
+ before relying on the boundary.
34
141
 
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.
142
+ Qubicl `0.1.x` is the initial public series. Interfaces and state formats may
143
+ evolve before 1.0; back up important computer homes before upgrades.
36
144
 
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.
145
+ Explore the [source and full documentation](https://github.com/EldanRing/qubicl).
146
+ Source code and documentation are Apache-2.0. Designated Qubicl brand artwork
147
+ is CC BY 4.0.
@@ -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.1-npm-application",
6
+ "documentNamespace": "https://github.com/EldanRing/qubicl/spdx/qubicl-cli/0.1.1/dac0e16a11b8cbc0ed7f8b0e9eb9e16a3aa2f45d/npm-application",
7
+ "creationInfo": {
8
+ "created": "2026-08-27T13:23:55Z",
9
+ "creators": [
10
+ "Tool: qubicl-metafile-sbom-1"
11
+ ]
12
+ },
13
+ "documentDescribes": [
14
+ "SPDXRef-Package-qubicl-cli-0.1.1-3aef512ef329"
15
+ ],
16
+ "packages": [
17
+ {
18
+ "name": "qubicl-cli",
19
+ "SPDXID": "SPDXRef-Package-qubicl-cli-0.1.1-3aef512ef329",
20
+ "versionInfo": "0.1.1",
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.1"
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.1-7a87144aafe4",
128
+ "versionInfo": "0.1.1",
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@dac0e16a11b8cbc0ed7f8b0e9eb9e16a3aa2f45d"
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.1-3aef512ef329",
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.1-3aef512ef329",
188
+ "relationshipType": "DEPENDS_ON",
189
+ "relatedSpdxElement": "SPDXRef-Package-modelcontextprotocol-core-2.0.0-546354de5e47"
190
+ },
191
+ {
192
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.1-3aef512ef329",
193
+ "relationshipType": "DEPENDS_ON",
194
+ "relatedSpdxElement": "SPDXRef-Package-modelcontextprotocol-node-2.0.0-cc861036891c"
195
+ },
196
+ {
197
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.1-3aef512ef329",
198
+ "relationshipType": "DEPENDS_ON",
199
+ "relatedSpdxElement": "SPDXRef-Package-modelcontextprotocol-server-2.0.0-39f69d3701b8"
200
+ },
201
+ {
202
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.1-3aef512ef329",
203
+ "relationshipType": "DEPENDS_ON",
204
+ "relatedSpdxElement": "SPDXRef-Package-playwright-core-1.62.1-6e887f47565b"
205
+ },
206
+ {
207
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.1-3aef512ef329",
208
+ "relationshipType": "DEPENDS_ON",
209
+ "relatedSpdxElement": "SPDXRef-Package-qubicl-core-skill-adaptations-0.1.1-7a87144aafe4"
210
+ },
211
+ {
212
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.1-3aef512ef329",
213
+ "relationshipType": "DEPENDS_ON",
214
+ "relatedSpdxElement": "SPDXRef-Package-yaml-2.9.0-be80181ebffd"
215
+ },
216
+ {
217
+ "spdxElementId": "SPDXRef-Package-qubicl-cli-0.1.1-3aef512ef329",
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.1
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.