rterm-backend 3.0.8 → 3.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.
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "web-intel",
3
+ "version": "1.0.0",
4
+ "description": "Local-first web intelligence for RTerm's agent via wigolo — multi-engine web search, clean-page fetch, site crawl, structured extract, similar-pages, cache, research, and page-watch → RTerm trigger automation. Keyless search/fetch/crawl, $0/query, local-first. Synthesis uses RTerm's own agent (no LLM key needed). Lean by default: the daemon starts lazily with no browser-engine/model warmup (~1.5 GB stays opt-in).",
5
+ "entry": "index.mjs",
6
+ "tools": [
7
+ "webintel_health",
8
+ "web_search",
9
+ "web_fetch",
10
+ "web_crawl",
11
+ "web_research",
12
+ "web_find_similar",
13
+ "web_watch_add",
14
+ "web_watch_list",
15
+ "web_watch_remove"
16
+ ],
17
+ "triggers": [
18
+ "webintel_page_changed"
19
+ ],
20
+ "panels": [
21
+ "web-intel"
22
+ ],
23
+ "permissions": [
24
+ "exec",
25
+ "spawnProcess",
26
+ "readLedger:metrics"
27
+ ]
28
+ }
@@ -0,0 +1,134 @@
1
+ /**
2
+ * sidecar.mjs — manages the wigolo daemon lifecycle for RTerm's web-intel
3
+ * plugin: lazily start `wigolo serve` on first use, keep a stock RTerm install
4
+ * lean (no browser-engine/on-device-model download unless the user opts in),
5
+ * and report status. Pure + injectable: process spawning and health-probing are
6
+ * injected so it's fully unit-testable offline.
7
+ *
8
+ * Lean-by-default: we start the daemon with WIGOLO_NO_WARMUP=1 so the ~1.5 GB
9
+ * browser engine + on-device models are NOT downloaded at init — search/fetch/
10
+ * crawl work keyless without them. The heavier models download in the background
11
+ * on first use that actually needs them. `warmupOnInit: true` opts into the full
12
+ * upfront download (a background `wigolo init` run).
13
+ */
14
+
15
+ export const DEFAULT_PORT = 3333
16
+ export const DEFAULT_HOST = '127.0.0.1'
17
+
18
+ /**
19
+ * Build the spawn plan for the wigolo daemon.
20
+ * @param {{ port?: number, host?: string, warmup?: boolean, token?: string }} cfg
21
+ * @returns {{ command: string, args: string[], env: Record<string,string> }}
22
+ */
23
+ export function buildServePlan(cfg = {}) {
24
+ const port = cfg.port ?? DEFAULT_PORT
25
+ const host = cfg.host ?? DEFAULT_HOST
26
+ const env = { ...process.env }
27
+ // Lean by default: skip the browser-engine/model warmup unless explicitly on.
28
+ if (cfg.warmup !== true) env.WIGOLO_NO_WARMUP = '1'
29
+ if (cfg.token) env.WIGOLO_API_TOKEN = cfg.token
30
+ return {
31
+ command: 'npx',
32
+ args: ['-y', 'wigolo', 'serve', '--port', String(port), '--host', host],
33
+ env,
34
+ }
35
+ }
36
+
37
+ /** Build the background `wigolo init` plan (the full ~1.5 GB warmup). */
38
+ export function buildInitPlan(cfg = {}) {
39
+ const env = { ...process.env }
40
+ if (cfg.token) env.WIGOLO_API_TOKEN = cfg.token
41
+ return { command: 'npx', args: ['-y', 'wigolo', 'init'], env }
42
+ }
43
+
44
+ export class WigoloSidecar {
45
+ /**
46
+ * @param {{
47
+ * spawnImpl?: (cmd: string, args: string[], opts: object) => any,
48
+ * healthImpl?: () => Promise<boolean>,
49
+ * log?: (line: string) => void,
50
+ * config?: { port?: number, host?: string, warmup?: boolean, token?: string, autoStart?: boolean },
51
+ * now?: () => number,
52
+ * }} deps — all injectable; defaults are real (child_process + a health probe).
53
+ */
54
+ constructor(deps = {}) {
55
+ this.config = deps.config ?? {}
56
+ this.spawnImpl = deps.spawnImpl
57
+ this.healthImpl = deps.healthImpl
58
+ this.log = deps.log ?? (() => {})
59
+ this.now = deps.now ?? (() => Date.now())
60
+ this.process = null
61
+ this.startedAt = 0
62
+ this.lastError = undefined
63
+ }
64
+
65
+ /** Whether the daemon process is believed to be running. */
66
+ isRunning() {
67
+ return this.process != null
68
+ }
69
+
70
+ /** Start the daemon (idempotent). Returns the base URL it's expected on. */
71
+ async start() {
72
+ if (this.process) return this.baseUrl()
73
+ if (typeof this.spawnImpl !== 'function') {
74
+ this.lastError = 'no spawnImpl (sidecar spawn not available in this runtime)'
75
+ throw new Error(this.lastError)
76
+ }
77
+ const plan = buildServePlan(this.config)
78
+ this.log(`[web-intel] starting wigolo daemon: ${plan.command} ${plan.args.join(' ')}`)
79
+ try {
80
+ this.process = this.spawnImpl(plan.command, plan.args, {
81
+ env: plan.env,
82
+ detached: true,
83
+ stdio: 'ignore',
84
+ })
85
+ // Detach so the daemon outlives the plugin turn (it serves many agents).
86
+ this.process?.unref?.()
87
+ this.startedAt = this.now()
88
+ this.lastError = undefined
89
+ } catch (e) {
90
+ this.lastError = e?.message ?? String(e)
91
+ this.process = null
92
+ throw e
93
+ }
94
+ return this.baseUrl()
95
+ }
96
+
97
+ /** Kick off the full ~1.5 GB warmup in the background (opt-in). */
98
+ async warmupInBackground() {
99
+ if (typeof this.spawnImpl !== 'function') return false
100
+ const plan = buildInitPlan(this.config)
101
+ try {
102
+ const p = this.spawnImpl(plan.command, plan.args, { env: plan.env, detached: true, stdio: 'ignore' })
103
+ p?.unref?.()
104
+ this.log('[web-intel] background wigolo init (browser engine + models) started')
105
+ return true
106
+ } catch {
107
+ return false
108
+ }
109
+ }
110
+
111
+ /** Stop the daemon. */
112
+ async stop() {
113
+ if (!this.process) return
114
+ try { this.process.kill?.() } catch { /* best-effort */ }
115
+ this.process = null
116
+ }
117
+
118
+ /** Status snapshot for the health tool / panel. */
119
+ status() {
120
+ return {
121
+ running: this.isRunning(),
122
+ baseUrl: this.baseUrl(),
123
+ startedAt: this.startedAt || undefined,
124
+ lastError: this.lastError,
125
+ warmup: this.config.warmup === true ? 'full' : 'lean (no warmup)',
126
+ }
127
+ }
128
+
129
+ baseUrl() {
130
+ const host = this.config.host ?? DEFAULT_HOST
131
+ const port = this.config.port ?? DEFAULT_PORT
132
+ return `http://${host}:${port}`
133
+ }
134
+ }
@@ -0,0 +1,145 @@
1
+ /**
2
+ * wigoloClient.mjs — a minimal, dependency-free HTTP client for the wigolo web
3
+ * intelligence daemon (`wigolo serve`, default http://127.0.0.1:3333).
4
+ *
5
+ * wigolo exposes one REST route per tool: POST /v1/{search,fetch,crawl,cache,
6
+ * extract,find_similar,research,agent,diff,watch}, GET /health, GET /v1/tools.
7
+ * This client is pure + injectable (a `fetchImpl` is passed in) so it is fully
8
+ * unit-testable offline with a mocked fetch — no runtime network baked in.
9
+ *
10
+ * Auth: when the daemon is started with WIGOLO_API_TOKEN, every /v1 request
11
+ * needs `Authorization: Bearer <token>` (/health stays open). The client sends
12
+ * the header only when a token is provided.
13
+ */
14
+
15
+ export const DEFAULT_BASE_URL = 'http://127.0.0.1:3333'
16
+
17
+ /** Build request headers (adds the bearer token only when set). */
18
+ export function buildHeaders(token) {
19
+ const h = { 'content-type': 'application/json', accept: 'application/json' }
20
+ if (token) h.authorization = `Bearer ${token}`
21
+ return h
22
+ }
23
+
24
+ /** Join a base URL + path safely (single slash). */
25
+ export function joinUrl(base, path) {
26
+ const b = String(base || DEFAULT_BASE_URL).replace(/\/+$/, '')
27
+ const p = String(path || '').startsWith('/') ? String(path) : `/${path}`
28
+ return `${b}${p}`
29
+ }
30
+
31
+ async function parseBody(res) {
32
+ const text = await res.text()
33
+ if (!text) return null
34
+ try { return JSON.parse(text) } catch { return text }
35
+ }
36
+
37
+ export class WigoloApiError extends Error {
38
+ constructor(status, path, body) {
39
+ super(`wigolo ${status} ${path}: ${typeof body === 'string' ? body.slice(0, 300) : JSON.stringify(body)?.slice(0, 300)}`)
40
+ this.status = status
41
+ this.path = path
42
+ this.body = body
43
+ }
44
+ }
45
+
46
+ export class WigoloClient {
47
+ /**
48
+ * @param {{ baseUrl?: string, token?: string, fetchImpl: Function }} opts
49
+ * fetchImpl(url, {method, headers, body}) -> Promise<{ok,status,text:()=>Promise<string>}>
50
+ */
51
+ constructor(opts = {}) {
52
+ if (typeof opts.fetchImpl !== 'function') throw new Error('WigoloClient needs a fetchImpl')
53
+ this.baseUrl = opts.baseUrl || DEFAULT_BASE_URL
54
+ this.token = opts.token
55
+ this.fetchImpl = opts.fetchImpl
56
+ }
57
+
58
+ async #post(path, payload) {
59
+ const res = await this.fetchImpl(joinUrl(this.baseUrl, path), {
60
+ method: 'POST',
61
+ headers: buildHeaders(this.token),
62
+ body: JSON.stringify(payload ?? {}),
63
+ })
64
+ const body = await parseBody(res)
65
+ if (!res.ok) throw new WigoloApiError(res.status, path, body)
66
+ return body
67
+ }
68
+
69
+ async #get(path) {
70
+ const res = await this.fetchImpl(joinUrl(this.baseUrl, path), {
71
+ method: 'GET',
72
+ headers: buildHeaders(this.token),
73
+ })
74
+ const body = await parseBody(res)
75
+ if (!res.ok) throw new WigoloApiError(res.status, path, body)
76
+ return body
77
+ }
78
+
79
+ /** Liveness + component status. Always open (no token). */
80
+ async health() {
81
+ try {
82
+ const body = await this.#get('/health')
83
+ return { ok: true, status: body }
84
+ } catch (e) {
85
+ return { ok: false, error: e?.message ?? String(e) }
86
+ }
87
+ }
88
+
89
+ /** List the daemon's tools (descriptions + endpoints). */
90
+ async tools() {
91
+ return this.#get('/v1/tools')
92
+ }
93
+
94
+ /** Multi-engine web search. `query` is a string or an array (parallel breadth). */
95
+ async search(query, opts = {}) {
96
+ return this.#post('/v1/search', { query, ...opts })
97
+ }
98
+
99
+ /** Fetch one URL as clean markdown (tiered router escalates to the browser engine). */
100
+ async fetch(url, opts = {}) {
101
+ return this.#post('/v1/fetch', { url, ...opts })
102
+ }
103
+
104
+ /** Multi-page crawl (BFS/DFS/sitemap/map-only). */
105
+ async crawl(url, opts = {}) {
106
+ return this.#post('/v1/crawl', { url, ...opts })
107
+ }
108
+
109
+ /** Structured extraction (tables, metadata, JSON-LD, named/custom schema). */
110
+ async extract(url, opts = {}) {
111
+ return this.#post('/v1/extract', { url, ...opts })
112
+ }
113
+
114
+ /** Pages similar to a URL/concept (keyword + semantic + live web fusion). */
115
+ async findSimilar(input, opts = {}) {
116
+ return this.#post('/v1/find_similar', typeof input === 'string' ? { url: input, ...opts } : { ...input, ...opts })
117
+ }
118
+
119
+ /** Query the local cache of everything already seen (keyword or hybrid semantic). */
120
+ async cache(opts = {}) {
121
+ return this.#post('/v1/cache', opts)
122
+ }
123
+
124
+ /** Decompose → fan out → fetch → return a structured brief + evidence.
125
+ * (Synthesis is done by the HOST agent, not wigolo's LLM — we pass no LLM key,
126
+ * so wigolo returns the raw brief + evidence and RTerm's agent writes the answer.) */
127
+ async research(question, opts = {}) {
128
+ return this.#post('/v1/research', { question, ...opts })
129
+ }
130
+
131
+ /** Autonomous gather loop (plan → search → fetch → extract) with a step log. */
132
+ async agent(goal, opts = {}) {
133
+ return this.#post('/v1/agent', { goal, ...opts })
134
+ }
135
+
136
+ /** Diff two page snapshots (or a page vs its last-seen cached version). */
137
+ async diff(input, opts = {}) {
138
+ return this.#post('/v1/diff', typeof input === 'string' ? { url: input, ...opts } : { ...input, ...opts })
139
+ }
140
+
141
+ /** Watch management: action=create|list|remove. */
142
+ async watch(action, opts = {}) {
143
+ return this.#post('/v1/watch', { action, ...opts })
144
+ }
145
+ }
package/LICENSE.md DELETED
@@ -1,201 +0,0 @@
1
- Apache License
2
- Version 2.0, January 2004
3
- http://www.apache.org/licenses/
4
-
5
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
-
7
- 1. Definitions.
8
-
9
- "License" shall mean the terms and conditions for use, reproduction,
10
- and distribution as defined by Sections 1 through 9 of this document.
11
-
12
- "Licensor" shall mean the copyright owner or entity authorized by
13
- the copyright owner that is granting the License.
14
-
15
- "Legal Entity" shall mean the union of the acting entity and all
16
- other entities that control, are controlled by, or are under common
17
- control with that entity. For the purposes of this definition,
18
- "control" means (i) the power, direct or indirect, to cause the
19
- direction or management of such entity, whether by contract or
20
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
- outstanding shares, or (iii) beneficial ownership of such entity.
22
-
23
- "You" (or "Your") shall mean an individual or Legal Entity
24
- exercising permissions granted by this License.
25
-
26
- "Source" form shall mean the preferred form for making modifications,
27
- including but not limited to software source code, documentation
28
- source, and configuration files.
29
-
30
- "Object" form shall mean any form resulting from mechanical
31
- transformation or translation of a Source form, including but
32
- not limited to compiled object code, generated documentation,
33
- and conversions to other media types.
34
-
35
- "Work" shall mean the work of authorship, whether in Source or
36
- Object form, made available under the License, as indicated by a
37
- copyright notice that is included in or attached to the work
38
- (an example is provided in the Appendix below).
39
-
40
- "Derivative Works" shall mean any work, whether in Source or Object
41
- form, that is based on (or derived from) the Work and for which the
42
- editorial revisions, annotations, elaborations, or other modifications
43
- represent, as a whole, an original work of authorship. For the purposes
44
- of this License, Derivative Works shall not include works that remain
45
- separable from, or merely link (or bind by name) to the interfaces of,
46
- the Work and Derivative Works thereof.
47
-
48
- "Contribution" shall mean any work of authorship, including
49
- the original version of the Work and any modifications or additions
50
- to that Work or Derivative Works thereof, that is intentionally
51
- submitted to Licensor for inclusion in the Work by the copyright owner
52
- or by an individual or Legal Entity authorized to submit on behalf of
53
- the copyright owner. For the purposes of this definition, "submitted"
54
- means any form of electronic, verbal, or written communication sent
55
- to the Licensor or its representatives, including but not limited to
56
- communication on electronic mailing lists, source code control systems,
57
- and issue tracking systems that are managed by, or on behalf of, the
58
- Licensor for the purpose of discussing and improving the Work, but
59
- excluding communication that is conspicuously marked or otherwise
60
- designated in writing by the copyright owner as "Not a Contribution."
61
-
62
- "Contributor" shall mean Licensor and any individual or Legal Entity
63
- on behalf of whom a Contribution has been received by Licensor and
64
- subsequently incorporated within the Work.
65
-
66
- 2. Grant of Copyright License. Subject to the terms and conditions of
67
- this License, each Contributor hereby grants to You a perpetual,
68
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
- copyright license to reproduce, prepare Derivative Works of,
70
- publicly display, publicly perform, sublicense, and distribute the
71
- Work and such Derivative Works in Source or Object form.
72
-
73
- 3. Grant of Patent License. Subject to the terms and conditions of
74
- this License, each Contributor hereby grants to You a perpetual,
75
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
- (except as stated in this section) patent license to make, have made,
77
- use, offer to sell, sell, import, and otherwise transfer the Work,
78
- where such license applies only to those patent claims licensable
79
- by such Contributor that are necessarily infringed by their
80
- Contribution(s) alone or by combination of their Contribution(s)
81
- with the Work to which such Contribution(s) was submitted. If You
82
- institute patent litigation against any entity (including a
83
- cross-claim or counterclaim in a lawsuit) alleging that the Work
84
- or a Contribution incorporated within the Work constitutes direct
85
- or contributory patent infringement, then any patent licenses
86
- granted to You under this License for that Work shall terminate
87
- as of the date such litigation is filed.
88
-
89
- 4. Redistribution. You may reproduce and distribute copies of the
90
- Work or Derivative Works thereof in any medium, with or without
91
- modifications, and in Source or Object form, provided that You
92
- meet the following conditions:
93
-
94
- (a) You must give any other recipients of the Work or
95
- Derivative Works a copy of this License; and
96
-
97
- (b) You must cause any modified files to carry prominent notices
98
- stating that You changed the files; and
99
-
100
- (c) You must retain, in the Source form of any Derivative Works
101
- that You distribute, all copyright, patent, trademark, and
102
- attribution notices from the Source form of the Work,
103
- excluding those notices that do not pertain to any part of
104
- the Derivative Works; and
105
-
106
- (d) If the Work includes a "NOTICE" text file as part of its
107
- distribution, then any Derivative Works that You distribute must
108
- include a readable copy of the attribution notices contained
109
- in such NOTICE file, excluding those notices that do not
110
- pertain to any part of the Derivative Works, in at least one
111
- of the following places: within a NOTICE text file distributed
112
- as part of the Derivative Works; within the Source form or
113
- documentation, if provided along with the Derivative Works; or,
114
- within a display generated by the Derivative Works, if and
115
- wherever such third-party notices normally appear. The contents
116
- of the NOTICE file are for informational purposes only and
117
- do not modify the License. You may add Your own attribution
118
- notices within Derivative Works that You distribute, alongside
119
- or as an addendum to the NOTICE text from the Work, provided
120
- that such additional attribution notices cannot be construed
121
- as modifying the License.
122
-
123
- You may add Your own copyright statement to Your modifications and
124
- may provide additional or different license terms and conditions
125
- for use, reproduction, or distribution of Your modifications, or
126
- for any such Derivative Works as a whole, provided Your use,
127
- reproduction, and distribution of the Work otherwise complies with
128
- the conditions stated in this License.
129
-
130
- 5. Submission of Contributions. Unless You explicitly state otherwise,
131
- any Contribution intentionally submitted for inclusion in the Work
132
- by You to the Licensor shall be under the terms and conditions of
133
- this License, without any additional terms or conditions.
134
- Notwithstanding the above, nothing herein shall supersede or modify
135
- the terms of any separate license agreement you may have executed
136
- with Licensor regarding such Contributions.
137
-
138
- 6. Trademarks. This License does not grant permission to use the trade
139
- names, trademarks, service marks, or product names of the Licensor,
140
- except as required for reasonable and customary use in describing the
141
- origin of the Work and reproducing the content of the NOTICE file.
142
-
143
- 7. Disclaimer of Warranty. Unless required by applicable law or
144
- agreed to in writing, Licensor provides the Work (and each
145
- Contributor provides its Contributions) on an "AS IS" BASIS,
146
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
- implied, including, without limitation, any warranties or conditions
148
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
- PARTICULAR PURPOSE. You are solely responsible for determining the
150
- appropriateness of using or redistributing the Work and assume any
151
- risks associated with Your exercise of permissions under this License.
152
-
153
- 8. Limitation of Liability. In no event and under no legal theory,
154
- whether in tort (including negligence), contract, or otherwise,
155
- unless required by applicable law (such as deliberate and grossly
156
- negligent acts) or agreed to in writing, shall any Contributor be
157
- liable to You for damages, including any direct, indirect, special,
158
- incidental, or consequential damages of any character arising as a
159
- result of this License or out of the use or inability to use the
160
- Work (including but not limited to damages for loss of goodwill,
161
- work stoppage, computer failure or malfunction, or any and all
162
- other commercial damages or losses), even if such Contributor
163
- has been advised of the possibility of such damages.
164
-
165
- 9. Accepting Warranty or Additional Liability. While redistributing
166
- the Work or Derivative Works thereof, You may choose to offer,
167
- and charge a fee for, acceptance of support, warranty, indemnity,
168
- or other liability obligations and/or rights consistent with this
169
- License. However, in accepting such obligations, You may act only
170
- on Your own behalf and on Your sole responsibility, not on behalf
171
- of any other Contributor, and only if You agree to indemnify,
172
- defend, and hold each Contributor harmless for any liability
173
- incurred by, or claims asserted against, such Contributor by reason
174
- of your accepting any such warranty or additional liability.
175
-
176
- END OF TERMS AND CONDITIONS
177
-
178
- APPENDIX: How to apply the Apache License to your work.
179
-
180
- To apply the Apache License to your work, attach the following
181
- boilerplate notice, with the fields enclosed by brackets "[]"
182
- replaced with your own identifying information. (Don't include
183
- the brackets!) The text should be enclosed in the appropriate
184
- comment syntax for the file format. We also recommend that a
185
- file or class name and description of purpose be included on the
186
- same "printed page" as the copyright notice for easier
187
- identification within third-party archives.
188
-
189
- Copyright 2026 Hyperspace Technologies
190
-
191
- Licensed under the Apache License, Version 2.0 (the "License");
192
- you may not use this file except in compliance with the License.
193
- You may obtain a copy of the License at
194
-
195
- http://www.apache.org/licenses/LICENSE-2.0
196
-
197
- Unless required by applicable law or agreed to in writing, software
198
- distributed under the License is distributed on an "AS IS" BASIS,
199
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
- See the License for the specific language governing permissions and
201
- limitations under the License.
package/README.md DELETED
@@ -1,31 +0,0 @@
1
- # gybackend
2
-
3
- Backend runtime bootstrap workspace for GyShell (internal/development entry).
4
-
5
- ## Run
6
-
7
- ```bash
8
- npm --workspace @gyshell/gybackend run build
9
- npm --workspace @gyshell/gybackend run start
10
- ```
11
-
12
- This workspace is mainly for repository development and runtime debugging. End users should use the desktop app. `gyll` / CLI TUI is deprecated and unsupported.
13
-
14
- ## Environment Variables
15
-
16
- - `GYBACKEND_WS_HOST` (default `0.0.0.0`)
17
- - `GYBACKEND_WS_PORT` (default `17888`)
18
- - `GYBACKEND_DATA_DIR` (default `./.gybackend-data` under current working directory)
19
- - `GYBACKEND_BOOTSTRAP_LOCAL_TERMINAL` (default `true`)
20
- - `GYBACKEND_TERMINAL_ID` (default `local-main`)
21
- - `GYBACKEND_TERMINAL_TITLE` (default `Local`)
22
- - `GYBACKEND_TERMINAL_CWD` (optional)
23
- - `GYBACKEND_TERMINAL_SHELL` (optional)
24
- - `GYBACKEND_MODEL` (optional bootstrap model name)
25
- - `GYBACKEND_API_KEY` (optional bootstrap model API key)
26
- - `GYBACKEND_BASE_URL` (optional bootstrap model base URL)
27
-
28
- ## Notes
29
-
30
- - gybackend delegates shared backend behavior to `packages/backend`.
31
- - MCP runtime is active through the shared backend core.