brunobuddy commited on
Commit
a7a34d1
·
verified ·
1 Parent(s): 176c851

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +130 -10
README.md CHANGED
@@ -1,10 +1,130 @@
1
- ---
2
- title: README
3
- emoji: 🌖
4
- colorFrom: blue
5
- colorTo: gray
6
- sdk: static
7
- pinned: false
8
- ---
9
-
10
- Edit this `README.md` markdown file to author your organization card.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p align="center">
2
+ <picture>
3
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/mnfst/manifest/HEAD/.github/assets/logo-white.svg" />
4
+ <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/mnfst/manifest/HEAD/.github/assets/logo-dark.svg" />
5
+ <img src="https://raw.githubusercontent.com/mnfst/manifest/HEAD/.github/assets/logo-dark.svg" alt="Manifest" height="53" title="Manifest"/>
6
+ </picture>
7
+ </p>
8
+ <p align="center">
9
+ Take control of your OpenClaw costs
10
+ </p>
11
+
12
+ ![manifest-gh](https://github.com/user-attachments/assets/7dd74fc2-f7d6-4558-a95a-014ed754a125)
13
+
14
+ <p align="center">
15
+ <span><img src="https://img.shields.io/badge/status-beta-yellow" alt="beta" /></span>
16
+ &nbsp;
17
+ <a href="https://github.com/mnfst/manifest/stargazers"><img src="https://img.shields.io/github/stars/mnfst/manifest?style=flat" alt="GitHub stars" /></a>
18
+ &nbsp;
19
+ <a href="https://www.npmjs.com/package/manifest"><img src="https://img.shields.io/npm/v/manifest?color=cb3837&label=npm" alt="npm version" /></a>
20
+ &nbsp;
21
+ <a href="https://www.npmjs.com/package/manifest"><img src="https://img.shields.io/npm/dw/manifest?color=cb3837" alt="npm downloads" /></a>
22
+ &nbsp;
23
+ <a href="https://hub.docker.com/r/manifestdotbuild/manifest"><img src="https://img.shields.io/docker/pulls/manifestdotbuild/manifest?color=2496ED&label=docker%20pulls" alt="Docker pulls" /></a>
24
+ &nbsp;
25
+ <a href="https://github.com/mnfst/manifest/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/mnfst/manifest/ci.yml?branch=main&label=CI" alt="CI status" /></a>
26
+ &nbsp;
27
+ <a href="https://app.codecov.io/gh/mnfst/manifest"><img src="https://img.shields.io/codecov/c/github/mnfst/manifest?label=coverage" alt="Codecov" /></a>
28
+ &nbsp;
29
+ <a href="LICENSE"><img src="https://img.shields.io/github/license/mnfst/manifest?color=blue" alt="license" /></a>
30
+ &nbsp;
31
+ <a href="https://discord.gg/FepAked3W7"><img src="https://img.shields.io/badge/Discord-Join-5865F2?logo=discord&logoColor=white" alt="Discord" /></a>
32
+ </p>
33
+
34
+ <p align="center">
35
+ <a href="https://trendshift.io/repositories/12890" target="_blank"><img src="https://trendshift.io/api/badge/repositories/12890" alt="mnfst%2Fmanifest | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
36
+ </p>
37
+
38
+ ## What is Manifest?
39
+
40
+ Manifest is a smart model router for OpenClaw. It sits between your agent and your LLM providers, scores each request, and routes it to the cheapest model that can handle it. Simple questions go to fast, cheap models. Hard problems go to expensive ones. You save money without thinking about it.
41
+
42
+ - Route requests to the right model: Cut costs up to 70%
43
+ - Automatic fallbacks: If a model fails, the next one picks up
44
+ - Set limits: Don't exceed your budget
45
+
46
+ ## Quick start
47
+
48
+ ### Cloud version
49
+
50
+ Go to [app.manifest.build](https://app.manifest.build) and follow the guide.
51
+
52
+ ### Local version
53
+
54
+ ```bash
55
+ openclaw plugins install manifest
56
+ openclaw gateway restart
57
+ ```
58
+
59
+ Dashboard opens at **http://127.0.0.1:2099**. The plugin starts an embedded server, runs the dashboard locally, and registers itself as a provider automatically. No account or API key needed.
60
+
61
+ ### Docker
62
+
63
+ Run the full Manifest stack (app + PostgreSQL) with a single command:
64
+
65
+ ```bash
66
+ curl -O https://raw.githubusercontent.com/mnfst/manifest/main/docker/docker-compose.yml
67
+ docker compose up -d
68
+ ```
69
+
70
+ Open **http://localhost:3001** and log in with `admin@manifest.build` / `manifest`.
71
+
72
+ See the [Docker Hub page](https://hub.docker.com/r/manifestdotbuild/manifest) for more options (custom ports, standalone Docker run, environment variables).
73
+
74
+ ### Cloud vs local
75
+
76
+ Pick cloud version for quick setup and multi-device access. Pick local version for keeping all your data on your machine or for using local models like Ollama. Pick Docker for self-hosting on your own infrastructure.
77
+
78
+ Not sure which one to choose? Start with cloud.
79
+
80
+ ## How it works
81
+
82
+ Every request to `manifest/auto` goes through a 23-dimension scoring algorithm (runs in under 2ms). The scorer picks a tier (simple, standard, complex, or reasoning) and routes to the best model in that tier from your connected providers.
83
+
84
+ All routing data (tokens, costs, model, duration) is recorded automatically. You see it in the dashboard. No extra setup.
85
+
86
+ ## Manifest vs OpenRouter
87
+
88
+ | | Manifest | OpenRouter |
89
+ | ------------ | -------------------------------------------- | --------------------------------------------------- |
90
+ | Architecture | Local. Your requests, your providers | Cloud proxy. All traffic goes through their servers |
91
+ | Cost | Free | 5% fee on every API call |
92
+ | Source code | MIT, fully open | Proprietary |
93
+ | Data privacy | Metadata only (cloud) or fully local | Prompts and responses pass through a third party |
94
+ | Transparency | Open scoring. You see why a model was chosen | No visibility into routing decisions |
95
+
96
+ ## Supported providers
97
+
98
+ Works with 300+ models across these providers:
99
+
100
+ | Provider | Models |
101
+ | ------------------------------------------------------------------------------ | -------------------------------------------------------------------- |
102
+ | [OpenAI](https://platform.openai.com/) | `gpt-5.3`, `gpt-4.1`, `o3`, `o4-mini` + 54 more |
103
+ | [Anthropic](https://www.anthropic.com/) | `claude-opus-4-6`, `claude-sonnet-4.5`, `claude-haiku-4.5` + 14 more |
104
+ | [Google Gemini](https://ai.google.dev/) | `gemini-2.5-pro`, `gemini-2.5-flash`, `gemini-3-pro` + 19 more |
105
+ | [DeepSeek](https://www.deepseek.com/) | `deepseek-chat`, `deepseek-reasoner` + 11 more |
106
+ | [xAI](https://x.ai/) | `grok-4`, `grok-3`, `grok-3-mini` + 8 more |
107
+ | [Mistral AI](https://mistral.ai/) | `mistral-large`, `codestral`, `devstral` + 26 more |
108
+ | [Qwen (Alibaba)](https://www.alibabacloud.com/en/solutions/generative-ai/qwen) | `qwen3-235b`, `qwen3-coder`, `qwq-32b` + 42 more |
109
+ | [MiniMax](https://www.minimax.io/) | `minimax-m2.5`, `minimax-m1`, `minimax-m2` + 5 more |
110
+ | [Kimi (Moonshot)](https://kimi.ai/) | `kimi-k2`, `kimi-k2.5` + 3 more |
111
+ | [Amazon Nova](https://aws.amazon.com/ai/nova/) | `nova-pro`, `nova-lite`, `nova-micro` + 5 more |
112
+ | [Z.ai (Zhipu)](https://z.ai/) | `glm-5`, `glm-4.7`, `glm-4.5` + 5 more |
113
+ | [OpenRouter](https://openrouter.ai/) | 300+ models from all providers |
114
+ | [Ollama](https://ollama.com/) | Run any model locally (Llama, Gemma, Mistral, ...) |
115
+ | Custom providers | Any provider with an OpenAI-compatible API endpoint |
116
+
117
+ ## Contributing
118
+
119
+ Manifest is open source under the [MIT license](LICENSE). See [CONTRIBUTING.md](CONTRIBUTING.md) for dev setup, architecture, and workflow. Join the conversation on [Discord](https://discord.gg/FepAked3W7).
120
+
121
+ ## Quick links
122
+
123
+ - [GitHub](https://github.com/mnfst/manifest)
124
+ - [Docs](https://manifest.build/docs)
125
+ - [Discord](https://discord.com/invite/FepAked3W7)
126
+ - [Discussions](https://github.com/mnfst/manifest/discussions)
127
+
128
+ ## License
129
+
130
+ [MIT](LICENSE)