Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

weryai-chat维雅聊天

Agent Skill

weryai-chat 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,746

周安装

192

GitHub Stars

公开资料未说明

下载量

1,490
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install weryai-chat

简介

用于 WeryAI 聊天模型的对话交互工具。

  • 兼容 OpenAI 格式的聊天完成 API。
  • 支持多轮对话和模型比较测试功能。weryai-chat 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 需要配置 WeryAI API 访问密钥信息。
  • 适用于智能助手和对话系统开发场景。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
weryai-chat
description
Chat, ask, compare, and inspect WeryAI chat models through the official OpenAI-compatible chat completions API. Use when you need general assistant chat, multi-turn conversation, chat model lookup, model comparison, prompt-response tasks, or direct message-array calls against WeryAI chat models.
metadata
{ "openclaw": { "emoji": "💬", "primaryEnv": "WERYAI_API_KEY", "paid": true, "network_required": true, "requires": { "env": ["WERYAI_API_KEY"], "bins": ["node"], "node": ">=18" } } }

WeryAI Chat

Use the official WeryAI chat-completions API for general assistant chat and model lookup. This skill is intentionally broad but not specialized: it is for general conversation and prompt-response tasks, not blog writing, social copy, or email drafting.

Example Prompts

  • Ask a WeryAI chat model to explain retrieval augmented generation in plain English.
  • Send this messages array to WeryAI chat completions and return the assistant response.
  • List the currently available WeryAI chat models and their pricing.
  • Use GPT_5_4 for this one chat call instead of the default model.

Quick Summary

  • Main jobs: general assistant chat, multi-turn chat, chat model lookup, prompt-response
  • Default model: GEMINI_3_1_PRO
  • Main optional controls: model, messages, maxTokens, temperature, topP
  • Main trust signals: dry-run support, model lookup, OpenAI-compatible messages, explicit non-specialized scope

Prerequisites

  • WERYAI_API_KEY must be set before calling the API.
  • Node.js >=18 is required.
  • Real runs use the WeryAI chat completion API and may consume credits.

When to use this skill

Use this skill when the user wants:

  • a normal assistant-style answer
  • a direct chat-completions call
  • a multi-turn conversation via messages
  • model lookup or model selection before a chat run

Do not use this skill when the user clearly wants:

  • blog writing
  • email drafting
  • ad copy
  • translation or summarization as the main task

Those belong to the existing specialized text/* skills.

OpenAI-compatible message shape

This skill accepts standard chat-completions messages:

[
  { "role": "system", "content": "You are a helpful assistant." },
  { "role": "user", "content": "What is artificial intelligence?" }
]

If you provide messages, they are passed through directly. If you provide only prompt, the runtime builds a simple messages array automatically.

Commands

# List available chat models
node {baseDir}/scripts/models.js

# Simple prompt-response chat
node {baseDir}/scripts/write.js --json '{
  "prompt":"Explain retrieval augmented generation in plain English",
  "temperature":0.7
}'

# Explicit messages array
node {baseDir}/scripts/write.js --json '{
  "model":"GPT_5_4",
  "messages":[
    {"role":"system","content":"You are concise and technical."},
    {"role":"user","content":"Compare RAG and long-context prompting."}
  ]
}'

# Dry-run preview
node {baseDir}/scripts/write.js --json '{
  "prompt":"What is the difference between latency and throughput?"
}' --dry-run

Workflow

  1. If the user wants model choice or pricing context first, run models.js.
  2. Use write.js for direct prompt-response or explicit messages chat.
  3. Prefer --dry-run when validating payload shape without spending credits.
  4. Return the assistant response directly when the call succeeds.

Definition of Done

  • models.js returns the available chat models and pricing metadata.
  • write.js returns at least one assistant completion choice and non-empty text, or a clear API failure.

Re-run Behavior

  • Re-running models.js is read-only and safe.
  • Re-running write.js --dry-run is safe and does not call the API.
  • Re-running write.js creates a fresh chat completion request and may consume additional credits.

References

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

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

平台分布

OpenClaw

85.4%
按下载量换算1,272

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills