Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

model-watcher模型观察者

Agent Skill

model-watcher 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,824

周安装

199

GitHub Stars

公开资料未说明

下载量

1,576
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:model-watcher(模型观察者)
来源仓库:https://github.com/hoopan007/model-watcher
安装命令:
openclaw skills install model-watcher
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install model-watcher

简介

用于发现、存储和检查来自多个来源的 AI 模型目录条目。

  • 适合需要同步模型数据库、更新元数据或筛选候选模型的场景。
  • 通过 clawhub 安装,需确认 SQLite 存储路径和写入权限。
  • 建议结合原始 README 核验同步机制和字段映射规则。
  • 使用前请评估是否会触发网络请求或数据库操作,避免数据冲突。

SKILL.md

name
model-watcher
description
Discover, store, and inspect AI model catalog entries from one or more sources. Use when the user wants to sync a model catalog into SQLite, see newly discovered models, list models first seen recently or in a given month, inspect one model, or view simple catalog stats.

Model Watcher

Maintain a local catalog of discovered AI models and query that catalog with a small CLI.

This skill covers discovery, storage, and inspection of model entries. It does not define scheduling or notification behavior.

Quick Usage

python3 skills/model-watcher/scripts/model_watcher.py scan
python3 skills/model-watcher/scripts/model_watcher.py brief-new
python3 skills/model-watcher/scripts/model_watcher.py recent --days 7
python3 skills/model-watcher/scripts/model_watcher.py monthly --month 2026-03
python3 skills/model-watcher/scripts/model_watcher.py stats
python3 skills/model-watcher/scripts/model_watcher.py show --model-id provider/model-name

Default database path:

skills/model-watcher/data/model-watcher.db

Override with --db /path/to/file.db when needed.

Commands

scan

Sync source data into the local SQLite database.

Expected result:

  • fetch latest catalog data from the configured source implementation
  • normalize key fields
  • upsert model records
  • record new, updated, and missing events
  • print one run summary

Example:

python3 skills/model-watcher/scripts/model_watcher.py scan

Example output:

run_id: a32cd157-c617-4682-8ae6-5765439e6fd9
source: openrouter
models_total: 344
new: 0 | updated: 0 | missing: 0

brief-new

Show models from the latest run that recorded new events.

Use this when a compact list of newly discovered models is needed.

Example:

python3 skills/model-watcher/scripts/model_watcher.py brief-new --limit 3

Example output:

OpenRouter new models from run a32cd157-c617-4682-8ae6-5765439e6fd9: 3
- x-ai/grok-4.20-multi-agent-beta — xAI: Grok 4.20 Multi-Agent Beta
  first seen: 2026-03-13 05:43:20 UTC
  provider: x-ai | context: 2000000 | modality: text+image->text
  pricing: in 0.000002, out 0.000006, extras 2

recent

List models whose first_seen_at is within the last N days.

Example:

python3 skills/model-watcher/scripts/model_watcher.py recent --days 7

Example output:

OpenRouter models first seen in last 7 day(s): 12
- provider/model-a — Model A
  first seen: 2026-03-12 08:00:00 UTC
  provider: provider | context: 128000 | modality: text->text
  pricing: in 0.000001, out 0.000002

monthly

List models whose first_seen_at falls within a given month.

Example:

python3 skills/model-watcher/scripts/model_watcher.py monthly --month 2026-03

Example output:

OpenRouter models first seen in 2026-03: 18
- provider/model-b — Model B
  first seen: 2026-03-10 03:20:00 UTC
  provider: provider | context: 256000 | modality: text+image->text
  pricing: in 0.000003, out 0.000009

stats

Show simple catalog totals and top provider counts.

Example:

python3 skills/model-watcher/scripts/model_watcher.py stats

Example output:

OpenRouter active models: 344
Added in last 7 days: 12
Added in 2026-03: 18
Top providers:
- openai: 60
- qwen: 50
- google: 27

show

Show one stored model entry.

Example:

python3 skills/model-watcher/scripts/model_watcher.py show --model-id openai/gpt-4o-mini

Example output:

model_id: openai/gpt-4o-mini
name: OpenAI: GPT-4o Mini
provider: openai
created_at: 2026-03-01 00:00:00 UTC
first_seen_at: 2026-03-13 05:43:20 UTC
last_seen_at: 2026-03-13 05:43:20 UTC
context_length: 128000
modality: text+image->text
pricing: in 0.00000015, out 0.0000006
description:
Compact multimodal model optimized for low cost and fast response.

Data Model

The database schema is documented in references/schema.md.

Keep the schema extensible for multiple future sources. Keep source-specific collection logic in scripts, not in this file.

Notes

  • Prefer compact, factual output.
  • Prefer stable ids and first_seen_at for reporting.
  • Treat new as the primary discovery signal.
  • Do not put scheduling, cron, or user-facing notification policy into this skill.

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

98.38%
按下载量换算1,550

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills