Read transcripts and summaries from Pocket AI (heypocket.com) recording devices. Use when users want to retrieve, search, or analyze their Pocket recordings, transcripts, summaries, or action items. Triggers on requests involving Pocket device data, conversation transcripts, meeting recordings, or audio note retrieval.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install heypocket-reader或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install heypocket-reader⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/heypocket-reader/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: pocket-transcripts description: Read transcripts and summaries from Pocket AI (heypocket.com) recording devices. Use when users want to retrieve, search, or analyze their Pocket recordings, transcripts, summaries, or action items. Triggers on requests involving Pocket device data, conversation transcripts, meeting recordings, or audio note retrieval. ---
Read transcripts and summaries from Pocket AI devices via reverse-engineered API.
| Function | Description | |----------|-------------| | get_recordings(days, limit) | List recent recordings | | get_recording_full(id) | Get transcript + summary + action items | | get_transcript(id) | Get raw transcript text | | get_summarization(id) | Get markdown summary | | search_recordings(query) | Search by text |
~/.factory/skills/browser/start.js --profile
# or
~/.claude/skills/browser/start.js --profile
Navigate to and log in:
~/.factory/skills/browser/nav.js https://app.heypocket.com
python3 scripts/reader.py extract
Token is saved to ~/.pocket_token.json and expires in 1 hour.
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
recordings = get_recordings(days=30, limit=20)
for r in recordings:
print(f"{r.recorded_at:%Y-%m-%d} | {r.duration_str} | {r.title}")
full = get_recording_full(recording_id)
print(f"Transcript ({len(full['transcript'])} chars):")
print(full['transcript'][:500])
print(f"\nSummary (markdown):")
print(full['summary'])
print(f"\nAction Items: {len(full['action_items'])}")
for item in full['action_items']:
print(f" - {item}")
results = search_recordings("meeting", days=90)
for r in results:
print(f"{r.title} - {r.description[:100]}")
Base URL: https://production.heypocketai.com/api/v1
Auth: Firebase Bearer token from browser IndexedDB
Key Endpoints:
GET /recordings - List with pagination, filtersGET /recordings/{id}?include=all - Full data with transcript/summaryData Structure:
data.transcription.transcription.textdata.summarizations[id].v2.summary.markdowndata.summarizations[id].v2.actionItems.itemsFirebase tokens expire in 1 hour. When expired:
--profilepython3 scripts/reader.py extractid, title, descriptionduration (seconds), duration_str (human readable)recorded_at, created_athas_transcription, has_summarizationnum_speakerslatitude, longitude (if location enabled)tags (list of strings)summary (markdown formatted)action_items (list)transcript (raw text)安装 Pocket AI Transcripts 后,可以对 AI 说这些话来触发它
Help me get started with Pocket AI Transcripts
Explains what Pocket AI Transcripts does, walks through the setup, and runs a quick demo based on your current project
Use Pocket AI Transcripts to read transcripts and summaries from Pocket AI (heypocket
Invokes Pocket AI Transcripts with the right parameters and returns the result directly in the conversation
What can I do with Pocket AI Transcripts in my design & creative workflow?
Lists the top use cases for Pocket AI Transcripts, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/heypocket-reader/ 目录(个人级,所有项目可用),或 .claude/skills/heypocket-reader/(项目级)。重启 AI 客户端后,用 /heypocket-reader 主动调用,或让 AI 根据上下文自动发现并使用。
Pocket AI Transcripts 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Pocket AI Transcripts 可免费安装使用。请查阅仓库了解许可证信息。
Read transcripts and summaries from Pocket AI (heypocket.com) recording devices. Use when users want to retrieve, search, or analyze their Pocket recordings, transcripts, summaries, or action items. Triggers on requests involving Pocket device data, conversation transcripts, meeting recordings, or audio note retrieval.
Automate my design & creative tasks using Pocket AI Transcripts
Identifies repetitive steps in your workflow and sets up Pocket AI Transcripts to handle them automatically
Pocket AI Transcripts 属于「Design & Creative」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。