# Send Pocket AI Transcripts to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "heypocket-reader",
    "name": "Pocket AI Transcripts",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tmustier/heypocket-reader",
    "canonicalUrl": "https://clawhub.ai/tmustier/heypocket-reader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/heypocket-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=heypocket-reader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/reader.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "heypocket-reader",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T05:55:12.807Z",
      "expiresAt": "2026-05-14T05:55:12.807Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=heypocket-reader",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=heypocket-reader",
        "contentDisposition": "attachment; filename=\"heypocket-reader-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "heypocket-reader"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/heypocket-reader"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/heypocket-reader",
    "downloadUrl": "https://openagent3.xyz/downloads/heypocket-reader",
    "agentUrl": "https://openagent3.xyz/skills/heypocket-reader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/heypocket-reader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/heypocket-reader/agent.md"
  }
}
```
## Documentation

### Pocket Transcripts

Read transcripts and summaries from Pocket AI devices via reverse-engineered API.

### Quick Reference

FunctionDescriptionget_recordings(days, limit)List recent recordingsget_recording_full(id)Get transcript + summary + action itemsget_transcript(id)Get raw transcript textget_summarization(id)Get markdown summarysearch_recordings(query)Search by text

### 1. Start Chrome with User Profile

~/.factory/skills/browser/start.js --profile
# or
~/.claude/skills/browser/start.js --profile

### 2. Log into Pocket

Navigate to and log in:

~/.factory/skills/browser/nav.js https://app.heypocket.com

### 3. Extract Token

python3 scripts/reader.py extract

Token is saved to ~/.pocket_token.json and expires in 1 hour.

### List Recordings

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}")

### Get Full Transcript and Summary

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}")

### Search Recordings

results = search_recordings("meeting", days=90)
for r in results:
    print(f"{r.title} - {r.description[:100]}")

### API Details

Base URL: https://production.heypocketai.com/api/v1

Auth: Firebase Bearer token from browser IndexedDB

Key Endpoints:

GET /recordings - List with pagination, filters
GET /recordings/{id}?include=all - Full data with transcript/summary

Data Structure:

Transcript: data.transcription.transcription.text
Summary: data.summarizations[id].v2.summary.markdown
Action Items: data.summarizations[id].v2.actionItems.items

### Token Refresh

Firebase tokens expire in 1 hour. When expired:

Ensure Chrome is running with --profile
Confirm logged into app.heypocket.com
Re-run: python3 scripts/reader.py extract

### PocketRecording

id, title, description
duration (seconds), duration_str (human readable)
recorded_at, created_at
has_transcription, has_summarization
num_speakers
latitude, longitude (if location enabled)
tags (list of strings)

### PocketSummarization

summary (markdown formatted)
action_items (list)
transcript (raw text)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tmustier
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T05:55:12.807Z
- Expires at: 2026-05-14T05:55:12.807Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/heypocket-reader)
- [Send to Agent page](https://openagent3.xyz/skills/heypocket-reader/agent)
- [JSON manifest](https://openagent3.xyz/skills/heypocket-reader/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/heypocket-reader/agent.md)
- [Download page](https://openagent3.xyz/downloads/heypocket-reader)