地点智能查询
灵活格式搜索地点位置
该技能通过逆向工程API连接Pocket AI录音设备(heypocket.com),支持获取、检索和分析用户的录音文件、文字转录、智能摘要及待办事项。
安装步骤(首次使用):
~/.factory/skills/browser/start.js --profile~/.factory/skills/browser/nav.js https://app.heypocket.compython3 scripts/reader.py extract~/.pocket_token.json,有效期1小时基础调用示例:
from pathlib import Path
import sys
sys.path.insert(0, str(Path.home() / '.claude/skills/pocket-transcripts/scripts'))
from reader import get_recordings, get_recording_full
# 获取最近30天20条录音
recordings = get_recordings(days=30, limit=20)
# 获取单条录音的完整信息
full = get_recording_full(recording_id)
print(full['transcript']) # 原始转录
print(full['summary']) # Markdown摘要
print(full['action_items']) # 行动项列表
令牌刷新:过期后重新执行步骤1-3即可。
见下方输入与输出表格。
| 项目 | 内容 |
|---|---|
| 输入 | Pocket账户登录状态;录音ID或搜索关键词;时间范围(天数);返回数量限制 |
| 输出 | 录音列表(含元数据);文字转录文本;Markdown格式摘要;行动项清单;搜索结果 |
| 适用人群 | Pocket AI设备用户;需要批量处理会议记录者;希望自动化整理语音笔记的用户 |
| 不包含 | 官方API支持;长期稳定令牌机制;录音文件原始音频下载;实时转录流式接口 |
原始链接:https://github.com/openclaw/skills/tree/main/skills/tmustier/heypocket-reader/SKILL.md
来源类型:GitHub仓库