智能录音笔记管理助手 - AI 自动转写和总结录音,支持知识库管理和语义搜索
openclaw skills install slonaide
或通过 ClawHub:
npx clawhub install slonaide
sk-xxxxxxxx...)openclaw config set slonaide.apiKey "sk-你的API密钥"
# 在 OpenClaw 会话中使用
slonaide_test_connection
slonaide_get_list
参数:
page: 页码(默认: 1)pageSize: 每页数量(1-50,默认: 10)keyword: 搜索关键词(可选)示例:
# 获取第一页,每页10条
slonaide_get_list
# 搜索包含"会议"的笔记
slonaide_get_list keyword="会议"
# 获取第二页,每页20条
slonaide_get_list page=2 pageSize=20
slonaide_get_detail fileId="笔记ID"
参数:
fileId: 录音笔记文件ID(必填)示例:
slonaide_get_detail fileId="787760209850437"
slonaide_get_summary
参数:
count: 要获取的记录数量(1-10,默认: 3)示例:
# 获取最新3条笔记摘要
slonaide_get_summary
# 获取最新5条笔记摘要
slonaide_get_summary count=5
slonaide_test_connection
测试 API 连接和配置状态。
~/.openclaw/openclaw.json
{
"plugins": {
"entries": {
"slonaide": {
"enabled": true,
"config": {
"apiKey": "sk-你的API密钥",
"baseUrl": "https://api.aidenote.cn"
}
}
}
}
}
apiKey: SlonAide API Key(必填)baseUrl: API 基础地址(默认: https://api.aidenote.cn)解决方案:
openclaw config set slonaide.apiKey "你的API密钥"
可能原因:
解决方案:
可能原因:
解决方案:
# 测试连接
slonaide_test_connection
# 如果测试失败,重新配置
openclaw config set slonaide.apiKey "新API密钥"
启用详细日志:
openclaw config set slonaide.debug true
# 查看最新笔记
slonaide_get_summary count=5
# 查看某条笔记详情
slonaide_get_detail fileId="笔记ID"
# 搜索会议相关笔记
slonaide_get_list keyword="会议"
# 获取未转写的会议记录
slonaide_get_list keyword="会议" pageSize=20
# 查看异常记录
slonaide_get_list keyword="异常"
# 获取技术问题记录
slonaide_get_list keyword="系统" keyword="错误"
重大改进:
https://api.aidenote.cnPOST /api/UserapikeyMstr/GetToken/{apiKey}POST /api/audiofileMstr/audiofileseleUserAllListGET /api/audiofileMstr/GetAudioFileDetail/{fileId}{
"code": 200,
"message": "成功",
"result": {
"total": 111,
"records": [
{
"id": "文件ID",
"audiofileTitle": "标题",
"audiofileFileName": "文件名",
"createTime": "时间戳",
"audiofileTimeLength": "时长(毫秒)",
"transcriptStatus": 2,
"summaryStatus": 2,
"transcriptText": "转写文本",
"aiSummary": "AI总结",
"tags": ["标签1", "标签2"]
}
]
}
}
transcriptStatus: 0=未开始, 1=进行中, 2=已完成summaryStatus: 0=未开始, 1=进行中, 2=已完成在 GitHub Issues 中报告问题,包括:
MIT License - 详见 LICENSE 文件
提示: 首次使用前请务必配置 API Key,否则工具无法正常工作。