首页龙虾技能列表 › SlonAide

SlonAide

v3.0.0

Query and manage SlonAide voice recording notes - list recordings, get transcriptions and AI summaries.

0· 130·0 当前·0 累计
by @ajingmiao·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/28
安全扫描
VirusTotal
Pending
查看报告
OpenClaw
安全
high confidence
The skill's requests and instructions are consistent with its stated purpose (managing SlonAide voice recordings) and require only a single service API key and curl to operate.
评估建议
This skill appears coherent: it needs only your SlonAide API key and uses curl to call the service's API. Before installing, confirm you trust https://h5.aidenote.cn and understand that requests (audio metadata, transcriptions, summaries) are sent to that third-party service. Only provide an API key you control; prefer a key with minimal scope if the service supports it. Remove or rotate the key if you stop using the skill. If you need stronger privacy, test with non-sensitive recordings first a...
详细分析 ▾
用途与能力
Name/description (SlonAide recording listing, transcription, summaries) align with required artifacts: curl and a SLONAIDE_API_KEY to call api.aidenote.cn. Nothing requested appears unrelated to managing recordings.
指令范围
SKILL.md instructs the agent to exchange the API key for a token and then call specific SlonAide API endpoints (api.aidenote.cn) using curl. It does not ask the agent to read unrelated files, other environment variables, or send data to third-party endpoints outside the stated service.
安装机制
This is an instruction-only skill with no install spec or downloaded code. No archives or external installers are used, which minimizes on-disk risk.
凭证需求
Only SLONAIDE_API_KEY is required (declared as primaryEnv). That single credential is appropriate for the described API interactions; no unrelated secrets or config paths are requested.
持久化与权限
The skill does not request always:true or other elevated presence. It asks the user to add their API key to the user's OpenClaw config, which is the expected local configuration step for skills.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv3.0.02026/3/25

slonaide v3.0.0 – Major structural update - Migrated to use a simplified, environment-based configuration using the SLONAIDE_API_KEY variable. - All source code, scripts, and plugin files have been removed; only documentation/methods using curl remain. - README and documentation rewritten for clarity and minimalism, focusing on direct API usage via curl. - Usage instructions updated for manual JWT token authentication and OpenClaw environment configuration. - Retains only essential interface and API usage guidance for querying and managing recording notes.

● Pending

安装命令 点击复制

官方npx clawhub@latest install slonaide
镜像加速npx clawhub@latest install slonaide --registry https://cn.clawhub-mirror.com

技能文档

管理 SlonAide 录音笔记:查询列表、获取转写文本和 AI 总结。使用 exec 工具运行 curl 命令调用 SlonAide API。

认证流程

SlonAide 使用两步认证:先用 API Key 换取 Token,再用 Token 调用业务接口。

获取 Token

curl -s -X POST "https://api.aidenote.cn/api/userapikeyMstr/getToken/$SLONAIDE_API_KEY" \
  -H "Content-Type: application/json"

成功返回:

{
  "code": 200,
  "result": {
    "token": "eyJhbGciOiJIUzI1NiIs...",
    "userId": "13000000001xx"
  }
}

提取 result.token,后续所有请求携带 Header:Authorization: Bearer

Token 有效期约 7 天。返回 401 或认证失败时重新获取。

操作

获取录音笔记列表

curl -s -X POST "https://api.aidenote.cn/api/audiofileMstr/audiofileseleUserAllList" \
  -H "Authorization: Bearer " \
  -H "Content-Type: application/json" \
  -d '{
    "order": "descending",
    "orderField": "createTime",
    "page": 1,
    "pageSize": 10
  }'

可选:请求体加 "keyword": "搜索词" 进行关键词搜索。

返回字段说明:

  • result.items:笔记数组
  • result.total:总条数
  • 每条笔记关键字段:
- audiofileFileid:文件 ID(字符串),用于获取转写详情 - audiofileTitle:标题 - audiofileFileName:文件名 - createTime:创建时间(格式 "2026-02-28 20:27:08") - audiofileTimeLength:时长(毫秒) - audiofileTranscription:转写状态(0=未开始, 1=进行中, 2=已完成) - audiofileSummaryStatus:总结状态(0=未开始, 1=进行中, 2=已完成) - audiofileText:转写文本(列表中可能为 null) - audiofileSummary:AI 总结文本 - audiofileTag:标签

获取录音转写详情

用列表中的 audiofileFileid 获取完整转写:

curl -s -X POST "https://api.aidenote.cn/api/audiofileMstr/audiofileToText" \
  -H "Authorization: Bearer " \
  -H "Content-Type: application/json" \
  -d '{
    "audiototextFileid": "",
    "audiototextLanguage": "zh"
  }'

参数:

  • audiototextFileid:必填,从列表的 audiofileFileid 获取
  • audiototextLanguage:语言,默认 "zh"

返回的转写分段包含:

  • audiototextContent:该段文本
  • audiototextParaNum:段落号
  • audiototextStartSecond / audiototextEndSecond:时间范围(秒)
  • audiototextRoleName:说话人

输出格式

列表展示:

📋 SlonAide 录音笔记(共 N 条)

  • [标题]
时间:[createTime] 时长:[X分X秒] 转写:[✅ 已完成 / ⏳ 未开始] 总结:[✅ 已完成 / ⏳ 未开始]

转写详情:按段落顺序拼接 audiototextContent,标注说话人。

错误处理

  • Token 获取失败(code != 200):提示检查 API Key
  • 业务接口返回 401:Token 过期,重新获取
  • 网络失败:提示检查网络
  • 列表为空:告知暂无录音笔记

配置

用户需在 ~/.openclaw/openclaw.json 中配置:

{
  "skills": {
    "entries": {
      "slonaide": {
        "enabled": true,
        "env": {
          "SLONAIDE_API_KEY": "sk-你的API密钥"
        }
      }
    }
  }
}

API Key 获取:访问 https://h5.aidenote.cn/ → 登录 → 我的 → API Key → 生成访问密钥。

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务