← Back to Skills Marketplace
437
Downloads
0
Stars
0
Active Installs
9
Versions
Install in OpenClaw
/install vetmew-consultation
Description
专业宠物(猫、狗及异宠)医疗问诊。基于 VetMew 3.0 API 提供症状分析与诊断建议。
Usage Guidance
This skill appears to be a legitimate VetMew API client, but before installing you should: 1) Only provide the VETMEW_AUTH_TOKEN (API_KEY:API_SECRET) if you trust the vetmew domains (platformx.vetmew.com and oss-vetmew.vetmew.com). 2) Note SKILL.md instructs reading ~/.openclaw/openclaw.json for a stored key, but the shipped code does not implement that — avoid giving the agent blanket read access to your home config unless necessary. 3) The code references client.onboard_credentials(), but no such method exists in client.py — expect the interactive onboarding flow to be non-functional. 4) Review and confirm the network endpoints are the official VetMew endpoints and that storing conversation IDs in your agent/platform variables meets your privacy policy. If any of these points are unclear, request the skill author to (a) remove or clarify the openclaw.json retrieval step, (b) either implement or remove the onboarding call, and (c) document exactly what is persisted and where.
Capability Analysis
Type: OpenClaw Skill
Name: vetmew-consultation
Version: 1.0.8
The skill bundle is a legitimate implementation of a pet medical consultation client for the VetMew platform. It uses standard HMAC-SHA256 signing for API authentication and provides clear instructions in SKILL.md for the AI agent to manage session states across multiple scripts (consultation.py, exotic_consultation.py, and free_chat.py). The code interacts only with the stated service endpoints (platformx.vetmew.com and oss-vetmew.vetmew.com) and contains no evidence of data exfiltration, malicious execution, or harmful prompt injection.
Capability Assessment
Purpose & Capability
Name/description, required binary (python3), required env var (VETMEW_AUTH_TOKEN), included scripts, and network endpoints all align with a VetMew consultation client. The dependencies (requests, python-dotenv) are proportionate to the task.
Instruction Scope
SKILL.md instructs the agent to retrieve credentials by reading ~/.openclaw/openclaw.json (specific field) and to persist session IDs into platform variables. The code, however, only reads VETMEW_AUTH_TOKEN (and .env via python-dotenv) and does not implement reading openclaw.json or separate VETMEW_API_KEY/VETMEW_API_SECRET. Directing an agent to read home-directory platform config is sensitive and should be justified; the mismatch between instructions and implementation is concerning.
Install Mechanism
No remote downloads; metadata and SKILL.md indicate pip install -r requirements.txt (requests, python-dotenv). This is a standard, traceable install path and matches the code usage.
Credentials
Only a single primary credential (VETMEW_AUTH_TOKEN) is required, which is appropriate for an API client. SKILL.md mentions alternative retrieval methods (openclaw.json and concatenating separate env vars) that are not implemented in the client — this discrepancy should be clarified. The code does not request unrelated credentials.
Persistence & Privilege
The skill asks the agent/platform to persist conversation IDs into platform session slots (VETMEW_MEDICAL_SESSION, VETMEW_EXOTIC_SESSION, VETMEW_CHAT_SESSION). always is false and the skill does not attempt to modify other skills or system-wide settings. Persisting per-skill session IDs is reasonable, but you should confirm the platform storage APIs used will not expose other secrets.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install vetmew-consultation - After installation, invoke the skill by name or use
/vetmew-consultation - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.8
Version 1.0.8
- 更新了环境变量凭据获取逻辑说明,支持多种自动/手动检索方式。
- 精简与重组文档结构,提升 Setup 和 Session 状态同步的实操指引。
- 明确 Session 槽位隔离要求,规范会话 ID 提取及异常处理流程。
- 移除了冗余的依赖和兼容性声明,只保留核心输入、用法及护栏。
- 适配 OpenClaw/Agent 平台场景,简化新用户上手流程。
v1.0.7
vetmew-consultation 1.0.7
- 更新环境变量校验逻辑:如缺失 VETMEW_AUTH_TOKEN,则直接给出申请链接并退出,避免交互式配置和本地 .env 生成流程。
- 移除 SKILL.md 中关于本地手动凭据配置的附录,简化文档,强调自动化环境变量注入模式。
- 依赖/使用说明微调,明确必须注入环境变量,增强易用性与安全合规。
v1.0.6
- Improved documentation for automated deployment: setup instructions now emphasize environment variable configuration for OpenClaw and agent frameworks.
- Added an appendix with step-by-step manual credential setup for local CLI environments.
- Clarified usage guidance and requirements for both automated and manual setups.
- Minor text streamlining and structural optimization for easier reading.
v1.0.5
- Changed authentication to use a unified VETMEW_AUTH_TOKEN environment variable, formatted as API_KEY:API_SECRET.
- Removed separate API_KEY and API_SECRET environment variables; scripts and setup now rely only on VETMEW_AUTH_TOKEN.
- Updated documentation and setup instructions to reflect new credential handling.
- Adjusted OpenClaw compatibility requirements accordingly.
v1.0.4
- Added OpenClaw compatibility, including installation instructions and environment variable requirements in metadata.
- Updated version, homepage, and emoji metadata fields.
- Emphasized priority of environment variable injection for credentials in automated/Agent environments.
- Clarified session slot handling and ID同步 in OpenClaw Agent scenarios.
- Improved documentation formatting and usage guidance for both automated and CLI workflows.
v1.0.3
- Added interactive first-run configuration: API 凭据将通过终端交互引导填写并自动生成 .env 文件,不再要求手动创建。
- 提升 API 支持,consultation.py 现新增图片上传参数(--image, --image_url, --image_type),可用于视觉辅助诊断。
- 所有入口脚本将自动检测并初始化缺失的 API 密钥。
- SKILL.md 文档同步更新,补充配置流程、输入参数及图片分析类型说明。
v1.0.2
- 更新 VetMew 开放平台官网地址为新版:https://open.vetmew.com/
- 其余内容保持不变,无功能或参数更新。
v1.0.1
- 新增“Setup & Configuration”章节,详细说明如何获取 VetMew API 凭据并配置环境变量。
- 增加配置 .env 文件的安全提示和模板示例。
- 其余功能、参数及用法保持不变。
v1.0.0
VetMew 宠物问诊 Skill v1.0.0
- 提供专业猫、狗及异宠(如龙猫、豚鼠等)多轮医疗问诊,基于 VetMew 3.0 API。
- 支持详细参数收集与品种、物种校验,并自动槽位隔离会话数据。
- 实现深度思考模式及流式诊断输出,适配多种使用场景(医疗问诊、知识问答、异宠问诊)。
- 强化输入信息规范与安全认证(HMAC-SHA256)。
- 增设品种映射、物种匹配与会话隔离冲突等数据护栏。
- 输出信息具医疗免责说明,保障用户知情权。
Metadata
Frequently Asked Questions
What is 专业宠物(猫、狗及异宠)多轮医疗问诊?
专业宠物(猫、狗及异宠)医疗问诊。基于 VetMew 3.0 API 提供症状分析与诊断建议。 It is an AI Agent Skill for Claude Code / OpenClaw, with 437 downloads so far.
How do I install 专业宠物(猫、狗及异宠)多轮医疗问诊?
Run "/install vetmew-consultation" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 专业宠物(猫、狗及异宠)多轮医疗问诊 free?
Yes, 专业宠物(猫、狗及异宠)多轮医疗问诊 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does 专业宠物(猫、狗及异宠)多轮医疗问诊 support?
专业宠物(猫、狗及异宠)多轮医疗问诊 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created 专业宠物(猫、狗及异宠)多轮医疗问诊?
It is built and maintained by zerojh (@zerojh); the current version is v1.0.8.
More Skills