技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v0.1.0
统计:⭐ 0 · 1.2k · 1 current installs · 1 all-time installs
⭐ 0
安装量(当前) 1
🛡 VirusTotal :良性 · OpenClaw :良性
Package:arya-model-router
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's code, instructions, and data are coherent with a local model-routing helper: it reads/writes only its own files, makes routing decisions locally, and does not request credentials or call external services itself.
目的
The files and runtime instructions match the stated purpose: router.py implements local routing/thresholds/overrides and brief.py creates a compact brief. The rule set lists models and thresholds consistent with a model router. Minor inconsistency: SKILL.md metadata lists required bins (bash, python3) while the registry 'Requirements' section reported none — this is a small metadata mismatch (python3 is logically required to run the scripts).
说明范围
SKILL.md and README instruct running local scripts (router.py, brief.py) and interpreting JSON output. The scripts only read/edit local files (rules.json, state.json) and do no network or model calls themselves. Important operational note: brief.py extracts lines that look like URLs, job IDs, stack traces, etc.; if the downstream integration sends the brief to a remote model (e.g., an OpenAI model recommended by the router), that brief could c…
安装机制
No install spec (instruction-only skill with bundled scripts). No downloads or external installers are used; files are local and static, which is lower risk.
证书
The skill requests no environment variables or credentials and does not access system-wide config. The SKILL.md metadata's 'bins' requirement (bash, python3) is reasonable for running the included scripts. There are no unrelated secrets requested.
持久
The skill writes and updates a local state file (state.json) in its own directory to store mode/feedback/lastDecision — this is scoped to the skill and expected. always is false and the skill does not modify other skills or system-wide agent settings.
综合结论
This skill appears to be what it says: a local router that decides when to escalate to stronger models. Before installing, consider: 1) It writes rules.json and state.json in the skill folder — review and back up those files if you edit them. 2) brief.py will surface URLs, job IDs, errors and similar 'interesting' lines; do not pass sensitive tokens/credentials in context you expect to be briefed and potentially forwarded to an external model.…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Arya Model Router」。简介:Efficiently routes tasks between cheap, default, and pro models using optional …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/staratheris/arya-model-router/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: arya-model-router
description: Token-saver router: elige modelo (cheap/default/pro) y usa sub-agentes para tareas pesadas. Incluye compresión/briefing opcional.
metadata:
openclaw:
emoji: "🧭"
requires:
bins: ["bash", "python3"]
---
# Arya Model Router (Token Saver)
Router de modelos para OpenClaw: decide cuándo usar un modelo barato vs uno más fuerte, reduciendo costo y tokens.
## Objetivos
- Mantener el chat diario barato.
- Escalar a un modelo superior solo cuando la tarea lo amerite.
- Evitar pasar contexto enorme al modelo caro: primero crear un **brief**.
## Enfoque
- El agente principal (main) se mantiene en un modelo económico.
- Para tareas pesadas, el router recomienda (o ejecuta) **sub-agentes** con un modelo superior.
## Niveles (por defecto)
- cheap: `openai/gpt-4o-mini`
- default: `openai/gpt-4.1-mini`
- pro: `openai/gpt-4.1`
## Uso (conceptual)
- "Router: responde esto en modo cheap" (forzado)
- "Router: analiza esto" (auto)
## Archivos
- `router.py`: clasificador + reglas
- `rules.json`: reglas editables
- `README.md`: documentación completa