@essentialai/cogent-bridge-bundled 3.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/cogent-bridge.mjs +36287 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# @essentialai/cogent-bridge-bundled
|
|
2
|
+
|
|
3
|
+
A **zero-dependency**, pre-bundled build of the Cogent MCP bridge shipped as a single
|
|
4
|
+
self-contained file (`cogent-bridge.mjs`). It exists so `npx @essentialai/cogent-bridge-bundled`
|
|
5
|
+
**cold-starts fast** — `npx` has no dependencies to install, so it just fetches one tarball and
|
|
6
|
+
runs. This matters for the OpenAI **Codex** plugin, whose MCP-server startup window is short and
|
|
7
|
+
where the full `@essentialai/cogent-bridge` package's dependency install can exceed it on a cold
|
|
8
|
+
machine.
|
|
9
|
+
|
|
10
|
+
Functionally identical to `@essentialai/cogent-bridge` (same bridge, same version). The bundle is
|
|
11
|
+
produced by this repo's build (`scripts/build-bundle.mjs`) and copied here in lockstep. Do not edit
|
|
12
|
+
`cogent-bridge.mjs` by hand.
|
|
13
|
+
|
|
14
|
+
Contact: support@essentialai.uk
|