openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Manifest LLM路由器

适用于OpenClaw的智能LLM路由器。通过将每个请求路由到正确的模型,最多可节省70 %。无需编码。

通信与消息

作者:布鲁诺·佩雷斯@ brunobuddy

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.11

统计:⭐ 2 · 368 · 1 current installs · 1 all-time installs

2

安装量(当前) 1

🛡 VirusTotal :良性 · OpenClaw :良性

Package:manifest-build

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

技能的要求和运行时指令与OpenClaw的路由/可观察性插件一致;所请求或指示的任何内容均与该目的不成比例。

目的

名称/描述( LLM路由器、成本跟踪、仪表板)与openclaw二进制文件的声明要求和安装和配置OpenClaw插件的SKILL.md说明相匹配。

说明范围

SKILL.md仅指示OpenClaw CLI命令(安装、配置集、网关重新启动) ,描述本地数据库路径( ~/.openclaw/manifest/manifest.db )和本地仪表板URL。它不会指示读取不相关的系统文件、扫描其他凭据或将数据泄露到意外的端点。

安装机制

这是一项仅供说明的技能,没有安装规范,包中也不包含代码文件,因此在安装过程中技能本身不会写入或执行任何内容。实际插件通过openclaw CLI安装(在此技能之外) ,这是OpenClaw插件的预期机制。

证书

该技能将MANIFEST_API_KEY声明为主凭据,这适用于调用外部清单服务的云模式。SKILL.md还记录了不需要API密钥的本地模式,并显示在云模式的OpenClaw配置中设置API密钥。注意:平台可以通过声明的env变量提供密钥,也可以将其存储在OpenClaw配置中—请注意密钥将保留在哪里。

持久

该技能并非始终在线,也不会请求提升的平台权限。其唯一的配置更改是通过OpenClaw CLI的插件配置条目,这适用于OpenClaw插件,并且不会修改OpenClaw插件配置以外的其他技能或系统范围的设置。

综合结论

在向OpenClaw添加路由/可观察性插件时,此技能看起来很一致。安装前: ( 1 )首选本地模式进行评估(无需外部API密钥) ,并验证仪表板和本地数据库行为; ( 2 )如果使用云模式,请决定是否通过环境变量或OpenClaw配置提供MANIFEST_API_KEY —了解密钥将存储在哪里( OpenClaw配置和插件的本地数据库可能包含敏感信息) ; …

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Manifest LLM路由器」。简介:适用于OpenClaw的智能LLM路由器。通过将每个请求路由到正确的模型,最多可节省70 %。无需编码。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/brunobuddy/manifest-build/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: manifest
description: Smart LLM Router for OpenClaw. Save up to 70% by routing every request to the right model. No coding required.
metadata: {"openclaw":{"requires":{"bins":["openclaw"]},"primaryEnv":"MANIFEST_API_KEY","homepage":"https://github.com/mnfst/manifest"}}
---

# Manifest — LLM Router & Observability for OpenClaw

Manifest is an OpenClaw plugin that:

- **Routes every request** to the most cost-effective model via a 23-dimension scoring algorithm (<2ms latency)
- **Tracks costs and tokens** in a real-time dashboard
- **Sets limits** with email alerts and hard spending caps

Source: [github.com/mnfst/manifest](https://github.com/mnfst/manifest) — MIT licensed. Homepage: [manifest.build](https://manifest.build)

## Setup (Local — recommended for evaluation)

No account, no API key needed.

```bash
openclaw plugins install manifest
openclaw config set plugins.entries.manifest.config.mode local
openclaw gateway restart
```

Dashboard opens at **http://127.0.0.1:2099**. Data stored locally in `~/.openclaw/manifest/manifest.db`.

## Setup (Cloud)

```bash
openclaw plugins install manifest
openclaw config set plugins.entries.manifest.config.apiKey "mnfst_YOUR_KEY"
openclaw gateway restart
```

Get the API key at [app.manifest.build](https://app.manifest.build) → create an account → create an agent → copy the key.

## Agent Tools

Three tools are available to the agent in-conversation:

| Tool              | Trigger phrases                                 | What it returns                                                             |
| ----------------- | ----------------------------------------------- | --------------------------------------------------------------------------- |
| `manifest_usage`  | "how many tokens", "token usage", "consumption" | Total, input, output, cache-read tokens + action count for today/week/month |
| `manifest_costs`  | "how much spent", "costs", "money burned"       | Cost breakdown by model in USD for today/week/month                         |
| `manifest_health` | "is monitoring working", "connectivity test"    | Endpoint reachable, auth valid, agent name, status                          |

Each accepts a `period` parameter: `"today"`, `"week"`, or `"month"`.

## Supported Providers

Anthropic, OpenAI, Google Gemini, DeepSeek, xAI, Mistral AI, Qwen, MiniMax, Kimi, Amazon Nova, Z.ai, OpenRouter, Ollama. 300+ models total.

## Uninstall

```bash
openclaw plugins uninstall manifest
openclaw gateway restart
```

This removes the plugin, provider config, and auth profiles.

## Documentation

For detailed security & privacy documentation, routing configuration, configuration changes, and troubleshooting, see the [full documentation](https://github.com/mnfst/manifest).