技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 137 · 1 current installs · 1 all-time installs
⭐ 0
安装量(当前) 1
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:agleameal/miaomiao-ai
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill appears to be a client for the Link‑AI / “秒秒” service and generally matches its stated purpose, but there are mismatches between the documentation, SKILL.md, and the runtime code about which environment variables are required and what names/branding to use — this inconsistency is unexplained and could lead to misconfiguration or unintended credential exposure.
目的
The code (miaomiao_client.py) implements a client that POSTs to an LLM-like API (api.link-ai.tech) and provides the multi-capability features listed in SKILL.md/README (chat, weather, images, search, etc.). That functionality is coherent with the skill's name and description. However, branding and environment-var names are inconsistent across files (LINKAI_* vs MIAOMIAO_*), and the registry metadata lists no required env vars even though the c…
说明范围
SKILL.md/README instructs creating a .env and setting LINKAI_APP_CODE and LINKAI_API_KEY (or in SKILL.md it only mentions LINKAI_API_KEY), while the actual SDK expects MIAOMIAO_APP_CODE and MIAOMIAO_API_KEY (and will raise if app_code or api_key are missing). This mismatch means the runtime instructions do not reliably reflect what the code will read; the instructions themselves do not attempt to access unrelated system files, but their inaccu…
安装机制
There is no install spec in the registry (instruction-only skill with bundled Python files). The README asks the user to pip install python-dotenv, which is reasonable. No downloads from untrusted URLs or archive extraction are present.
证书
The registry metadata claims no required environment variables, but the runtime SDK requires an API key (MIAOMIAO_API_KEY) and an app code (MIAOMIAO_APP_CODE, defaulting to 'ZQmQHAXf'). Documentation alternately references LINKAI_* names. This inconsistency is disproportionate to the stated metadata and could lead to accidental use of the wrong credential names or accidental exposure of real credentials. The client sends an Authorization: Bear…
持久
The skill is not always-enabled; it is user-invocable and allows autonomous invocation (platform default). It does not request any system-wide config paths or attempt to persist or modify other skills. No elevated persistence is requested.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「秒秒AI助理」。简介:调用秒秒AI多能力智能体,支持聊天、天气、新闻、快递、图像生成、搜索、总结、图表、地图、车票查询等功能。Invoke when user needs AI a…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/agleameal/miaomiao-ai/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: "秒秒AI助理"
description: "调用秒秒AI多能力智能体,支持聊天、天气、新闻、快递、图像生成、搜索、总结、图表、地图、车票查询等功能。Invoke when user needs AI assistant with multiple practical functions or mentions related keywords."
---
# 秒秒AI助理 多能力智能体技能
## 功能说明
本技能提供丰富的AI能力集合,通过意图识别自动触发对应功能:
- 智能聊天对话
- 天气查询
- 新闻早报
- 快递查询
- 图像生成
- 网页搜索
- 内容总结
- 可视化图表生成
- 地图查询
- 12306车票查询
## 配置要求
1. 在项目根目录创建`.env`文件
2. 配置以下环境变量:
- `LINKAI_API_KEY`: 你的Link-AI API密钥
## 使用方法
当用户需要以下服务时自动调用本技能:
- 普通聊天对话
- 查询天气
- 获取新闻资讯
- 查询快递进度
- 生成图片
- 搜索网页内容
- 总结长文本/文档
- 生成数据图表
- 查询地点/路线
- 查询火车票信息
## 调用示例
```python
import os
import http.client
import json
from dotenv import load_dotenv
load_dotenv()
conn = http.client.HTTPSConnection("api.link-ai.tech")
payload = json.dumps({
"app_code": os.getenv("LINKAI_APP_CODE"),
"messages": [
{
"role": "user",
"content": "查询北京今天天气"
}
]
})
headers = {
'Authorization': f'Bearer {os.getenv("LINKAI_API_KEY")}',
'Content-Type': 'application/json'
}
conn.request("POST", "/v1/chat/completions", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
```