技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v0.1.0
统计:⭐ 0 · 1.2k · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:staratheris-arya-model-router
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's code and instructions are coherent with a local model-routing/briefing helper: it runs locally, reads/writes only its own files, and does not request credentials or external network access.
目的
The name/README/SKILL.md describe a local model router and the included Python scripts implement that behavior. Minor inconsistency: the SKILL.md metadata lists required binaries (bash, python3) while the registry summary showed no required binaries — this is a small metadata mismatch but does not change functionality.
说明范围
Runtime instructions tell the agent to run router.py and optionally brief.py, to interpret the JSON output and (conceptually) spawn sub-agents. The scripts operate on provided text and local rule/state files only and do not read unrelated system files or environment variables.
安装机制
No install spec is present (lowest installer risk). The skill includes code files that will run locally; there are no downloads, external installers, or archive extraction steps.
证书
No environment variables, credentials, or external tokens are required. The code only reads/writes its own rules.json and state.json in the skill directory.
持久
The skill persists minimal state (state.json) in its own folder to store mode/feedback and last decision. always is false and the skill does not modify other skills or system-wide configurations.
综合结论
This skill appears to be a straightforward local model router: it reads rules.json and state.json and prints a JSON decision; it does not call external services or request secrets. Before installing, consider: 1) confirm the small metadata mismatch (SKILL.md declares bash + python3) and ensure python3 is available; 2) note the skill will write state.json inside the skill folder so feedback commands persist and slightly auto-tune thresholds ove…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Arya Model Router」。简介:Router that selects between cheap, default, and pro GPT models to save tokens, …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/staratheris/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