Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/GeorgeDoors888/GB-Power-Market-JJ --skill slonaide명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | SlonAide 录音笔记 |
| description | 智能录音笔记管理助手 - AI 自动转写和总结录音,支持知识库管理和语义搜索 |
| version | 2.0.0 |
| author | SlonAide Team |
| capabilities | ["查询和搜索录音笔记","获取转写文本和 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":
transcriptStatus: 0=未开始, 1=进行中, 2=已完成summaryStatus: 0=未开始, 1=进行中, 2=已完成在 GitHub Issues 中报告问题,包括:
MIT License - 详见 LICENSE 文件
提示: 首次使用前请务必配置 API Key,否则工具无法正常工作。