返回顶部
s

slonaide

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

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 3.0.0
安全检测
已通过
123
下载量
0
收藏
概述
安装方式
版本历史

slonaide

# SlonAide 录音笔记 管理 SlonAide 录音笔记:查询列表、获取转写文本和 AI 总结。使用 `exec` 工具运行 curl 命令调用 SlonAide API。 ## 认证流程 SlonAide 使用两步认证:先用 API Key 换取 Token,再用 Token 调用业务接口。 ### 获取 Token ```bash curl -s -X POST "https://api.aidenote.cn/api/userapikeyMstr/getToken/$SLONAIDE_API_KEY" \ -H "Content-Type: application/json" ``` 成功返回: ```json { "code": 200, "result": { "token": "eyJhbGciOiJIUzI1NiIs...", "userId": "13000000001xx" } } ``` 提取 `result.token`,后续所有请求携带 Header:`Authorization: Bearer <token>` Token 有效期约 7 天。返回 401 或认证失败时重新获取。 ## 操作 ### 获取录音笔记列表 ```bash curl -s -X POST "https://api.aidenote.cn/api/audiofileMstr/audiofileseleUserAllList" \ -H "Authorization: Bearer <token>" \ -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` 获取完整转写: ```bash curl -s -X POST "https://api.aidenote.cn/api/audiofileMstr/audiofileToText" \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '{ "audiototextFileid": "<audiofileFileid>", "audiototextLanguage": "zh" }' ``` 参数: - `audiototextFileid`:必填,从列表的 `audiofileFileid` 获取 - `audiototextLanguage`:语言,默认 `"zh"` 返回的转写分段包含: - `audiototextContent`:该段文本 - `audiototextParaNum`:段落号 - `audiototextStartSecond` / `audiototextEndSecond`:时间范围(秒) - `audiototextRoleName`:说话人 ## 输出格式 列表展示: ``` 📋 SlonAide 录音笔记(共 N 条) 1. [标题] 时间:[createTime] 时长:[X分X秒] 转写:[✅ 已完成 / ⏳ 未开始] 总结:[✅ 已完成 / ⏳ 未开始] ``` 转写详情:按段落顺序拼接 `audiototextContent`,标注说话人。 ## 错误处理 - Token 获取失败(code != 200):提示检查 API Key - 业务接口返回 401:Token 过期,重新获取 - 网络失败:提示检查网络 - 列表为空:告知暂无录音笔记 ## 配置 用户需在 `~/.openclaw/openclaw.json` 中配置: ```json { "skills": { "entries": { "slonaide": { "enabled": true, "env": { "SLONAIDE_API_KEY": "sk-你的API密钥" } } } } } ``` API Key 获取:访问 https://h5.aidenote.cn/ → 登录 → 我的 → API Key → 生成访问密钥。

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 slonaide-1776022567 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 slonaide-1776022567 技能

通过命令行安装

skillhub install slonaide-1776022567

下载 Zip 包

⬇ 下载 slonaide v3.0.0

文件大小: 3.1 KB | 发布时间: 2026-4-13 12:04

v3.0.0 最新 2026-4-13 12:04
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.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部