@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.
Files changed (3) hide show
  1. package/README.md +14 -0
  2. package/cogent-bridge.mjs +36287 -0
  3. package/package.json +26 -0
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@essentialai/cogent-bridge-bundled",
3
+ "version": "3.19.2",
4
+ "description": "Zero-dependency, pre-bundled Cogent MCP bridge — a single self-contained file for fast cold `npx` startup (used by the Codex plugin, whose MCP startup window is short). Functionally identical to @essentialai/cogent-bridge; carries no npm dependencies so `npx` skips dependency install.",
5
+ "type": "module",
6
+ "bin": {
7
+ "cogent-bridge": "cogent-bridge.mjs"
8
+ },
9
+ "files": [
10
+ "cogent-bridge.mjs",
11
+ "README.md"
12
+ ],
13
+ "engines": {
14
+ "node": ">=18"
15
+ },
16
+ "keywords": ["cogent", "mcp", "bridge", "codex", "bundled", "npx"],
17
+ "author": {
18
+ "name": "Essential AI Solutions Ltd.",
19
+ "email": "support@essentialai.uk",
20
+ "url": "https://essentialai.uk"
21
+ },
22
+ "homepage": "https://cogent.tools",
23
+ "repository": "https://gitlab.com/eais1/cogent",
24
+ "bugs": { "email": "support@essentialai.uk" },
25
+ "license": "ISC"
26
+ }