manifest 5.10.0 → 5.10.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 +9 -22
- package/dist/index.js +6 -6
- package/dist/openclaw.plugin.json +0 -27
- package/openclaw.plugin.json +0 -27
- package/package.json +1 -1
- package/public/assets/{index-C3Vk-816.js → index-Bv67f5D9.js} +6 -6
- package/public/index.html +8 -3
- package/public/og-image.png +0 -0
package/README.md
CHANGED
|
@@ -63,41 +63,28 @@ User: "How much have I spent today?"
|
|
|
63
63
|
## Data privacy
|
|
64
64
|
|
|
65
65
|
- **Local mode**: Everything stays on your machine. sql.js database, no network calls.
|
|
66
|
-
- **Cloud mode**: Only OpenTelemetry metadata (model, tokens, latency) is sent.
|
|
66
|
+
- **Cloud mode**: Only OpenTelemetry metadata (model, tokens, latency) is sent. Message content is never collected.
|
|
67
67
|
|
|
68
68
|
## Configuration
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
Local mode works out of the box with zero configuration. All settings are optional.
|
|
71
71
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
|
75
|
-
|
|
76
|
-
| `
|
|
77
|
-
| `
|
|
78
|
-
| `
|
|
79
|
-
| `captureContent` | boolean | `true` | Include message content in spans (always on in local mode) |
|
|
80
|
-
| `metricsIntervalMs` | number | `10000` | Metrics export interval |
|
|
72
|
+
| Setting | Type | Default | Description |
|
|
73
|
+
|---------|------|---------|-------------|
|
|
74
|
+
| `mode` | string | `local` | `local` runs an embedded server on your machine. `cloud` sends telemetry to app.manifest.build. `dev` connects to a local backend without API key management. |
|
|
75
|
+
| `apiKey` | string | env `MANIFEST_API_KEY` | Agent API key (must start with `mnfst_`). Required for cloud mode, auto-generated in local mode. |
|
|
76
|
+
| `endpoint` | string | `https://app.manifest.build/otlp` | OTLP endpoint URL. Only relevant for cloud and dev modes. |
|
|
77
|
+
| `port` | number | `2099` | Port for the embedded dashboard server (local mode only). |
|
|
78
|
+
| `host` | string | `127.0.0.1` | Bind address for the embedded server (local mode only). |
|
|
81
79
|
|
|
82
80
|
### Cloud mode
|
|
83
81
|
|
|
84
|
-
Send telemetry to the hosted platform at [app.manifest.build](https://app.manifest.build):
|
|
85
|
-
|
|
86
82
|
```bash
|
|
87
83
|
openclaw config set plugins.entries.manifest.config.mode cloud
|
|
88
84
|
openclaw config set plugins.entries.manifest.config.apiKey "mnfst_YOUR_KEY"
|
|
89
85
|
openclaw gateway restart
|
|
90
86
|
```
|
|
91
87
|
|
|
92
|
-
| Option | Type | Default | Description |
|
|
93
|
-
|--------|------|---------|-------------|
|
|
94
|
-
| `mode` | string | `local` | `local` or `cloud` |
|
|
95
|
-
| `apiKey` | string | env `MANIFEST_API_KEY` | Agent API key (`mnfst_*`). Required for cloud mode. |
|
|
96
|
-
| `endpoint` | string | `https://app.manifest.build/otlp` | OTLP endpoint URL |
|
|
97
|
-
| `serviceName` | string | `openclaw-gateway` | OpenTelemetry service name |
|
|
98
|
-
| `captureContent` | boolean | `false` | Include message content in spans |
|
|
99
|
-
| `metricsIntervalMs` | number | `30000` | Metrics export interval (min 5000ms) |
|
|
100
|
-
|
|
101
88
|
### Self-hosted
|
|
102
89
|
|
|
103
90
|
Point to your own Manifest instance:
|