manifest 5.16.1 → 5.17.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.
package/README.md CHANGED
@@ -1,13 +1,26 @@
1
1
  # Manifest
2
2
 
3
- Cut your AI agent costs by up to 70%. Manifest is an open-source [OpenClaw](https://github.com/open-claw/open-claw) plugin that combines **intelligent LLM routing** with **real-time cost observability** — one install, zero configuration.
3
+ Cut your AI agent costs by up to 70%. Manifest is an open-source [OpenClaw](https://github.com/open-claw/open-claw) plugin that combines **intelligent LLM routing** with **real-time cost observability**.
4
4
 
5
5
  Instead of sending every request to the most expensive model, Manifest scores each query in under 2ms and routes it to the most cost-effective model that can handle it. Simple lookups go to fast, cheap models. Complex reasoning goes to frontier models. You see exactly where every dollar goes in a local dashboard.
6
6
 
7
7
  ## Quick start
8
8
 
9
+ ### Cloud (default)
10
+
11
+ ```bash
12
+ openclaw plugins install manifest
13
+ openclaw config set plugins.entries.manifest.config.apiKey "mnfst_YOUR_KEY"
14
+ openclaw gateway restart
15
+ ```
16
+
17
+ Sign up at [app.manifest.build](https://app.manifest.build) to get your API key.
18
+
19
+ ### Local (zero config)
20
+
9
21
  ```bash
10
22
  openclaw plugins install manifest
23
+ openclaw config set plugins.entries.manifest.config.mode local
11
24
  openclaw gateway restart
12
25
  ```
13
26
 
@@ -26,7 +39,7 @@ The entire scoring step adds < 2ms of latency. If the resolve call fails, the re
26
39
 
27
40
  ### Enable routing
28
41
 
29
- Routing activates automatically in local mode. Point your OpenClaw config to use the `manifest` provider with model `auto`:
42
+ Routing activates automatically when the plugin is enabled. Point your OpenClaw config to use the `manifest` provider with model `auto`:
30
43
 
31
44
  ```yaml
32
45
  # openclaw.config.yaml
@@ -67,21 +80,20 @@ User: "How much have I spent today?"
67
80
 
68
81
  ## Configuration
69
82
 
70
- Local mode works out of the box with zero configuration. All settings are optional.
83
+ Cloud mode is the default. For local mode (zero config), set `mode` to `local`.
71
84
 
72
85
  | Setting | Type | Default | Description |
73
86
  |---------|------|---------|-------------|
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. |
87
+ | `mode` | string | `cloud` | `cloud` sends telemetry to app.manifest.build (default). `local` runs an embedded server on your machine. `dev` connects to a local backend without API key management. |
75
88
  | `apiKey` | string | env `MANIFEST_API_KEY` | Agent API key (must start with `mnfst_`). Required for cloud mode, auto-generated in local mode. |
76
89
  | `endpoint` | string | `https://app.manifest.build/otlp` | OTLP endpoint URL. Only relevant for cloud and dev modes. |
77
90
  | `port` | number | `2099` | Port for the embedded dashboard server (local mode only). |
78
91
  | `host` | string | `127.0.0.1` | Bind address for the embedded server (local mode only). |
79
92
 
80
- ### Cloud mode
93
+ ### Local mode
81
94
 
82
95
  ```bash
83
- openclaw config set plugins.entries.manifest.config.mode cloud
84
- openclaw config set plugins.entries.manifest.config.apiKey "mnfst_YOUR_KEY"
96
+ openclaw config set plugins.entries.manifest.config.mode local
85
97
  openclaw gateway restart
86
98
  ```
87
99