cerebrex 0.9.3 → 0.9.4
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 +12 -2
- package/dist/index.js +259 -249
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,8 +20,8 @@ The complete infrastructure layer for AI agents — in one CLI.
|
|
|
20
20
|
|
|
21
21
|
---
|
|
22
22
|
|
|
23
|
-
> **Status: v0.9.
|
|
24
|
-
> `npm install -g cerebrex`
|
|
23
|
+
> **Status: v0.9.4 — Security hardening (SSRF protection, security headers, file permissions, KAIROS execution engine)**
|
|
24
|
+
> `npm install -g cerebrex` · `docker pull ghcr.io/arealcoolco/cerebrex` · or download a self-contained binary from [GitHub Releases](https://github.com/arealcoolco/CerebreX/releases)
|
|
25
25
|
>
|
|
26
26
|
> **Live:** Registry UI → `https://registry.therealcool.site`
|
|
27
27
|
> **Live:** Trace Explorer → `https://registry.therealcool.site/ui/trace`
|
|
@@ -105,6 +105,16 @@ npm install -g cerebrex
|
|
|
105
105
|
cerebrex --help
|
|
106
106
|
```
|
|
107
107
|
|
|
108
|
+
Or via Docker (no Node.js or npm required):
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
docker pull ghcr.io/arealcoolco/cerebrex
|
|
112
|
+
docker run --rm ghcr.io/arealcoolco/cerebrex --version
|
|
113
|
+
|
|
114
|
+
# Mount a local directory to access spec files, configs, etc.
|
|
115
|
+
docker run --rm -v "$HOME/.cerebrex:/root/.cerebrex" ghcr.io/arealcoolco/cerebrex test run
|
|
116
|
+
```
|
|
117
|
+
|
|
108
118
|
Or build from source (requires [Bun](https://bun.sh)):
|
|
109
119
|
|
|
110
120
|
```bash
|