{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/heypocket-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=heypocket-reader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/reader.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/heypocket-reader",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Pocket Transcripts",
        "body": "Read transcripts and summaries from Pocket AI devices via reverse-engineered API."
      },
      {
        "title": "Quick Reference",
        "body": "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"
      },
      {
        "title": "1. Start Chrome with User Profile",
        "body": "~/.factory/skills/browser/start.js --profile\n# or\n~/.claude/skills/browser/start.js --profile"
      },
      {
        "title": "2. Log into Pocket",
        "body": "Navigate to and log in:\n\n~/.factory/skills/browser/nav.js https://app.heypocket.com"
      },
      {
        "title": "3. Extract Token",
        "body": "python3 scripts/reader.py extract\n\nToken is saved to ~/.pocket_token.json and expires in 1 hour."
      },
      {
        "title": "List Recordings",
        "body": "from pathlib import Path\nimport sys\nsys.path.insert(0, str(Path.home() / '.claude/skills/pocket-transcripts/scripts'))\nfrom reader import get_recordings, get_recording_full\n\nrecordings = get_recordings(days=30, limit=20)\nfor r in recordings:\n    print(f\"{r.recorded_at:%Y-%m-%d} | {r.duration_str} | {r.title}\")"
      },
      {
        "title": "Get Full Transcript and Summary",
        "body": "full = get_recording_full(recording_id)\n\nprint(f\"Transcript ({len(full['transcript'])} chars):\")\nprint(full['transcript'][:500])\n\nprint(f\"\\nSummary (markdown):\")\nprint(full['summary'])\n\nprint(f\"\\nAction Items: {len(full['action_items'])}\")\nfor item in full['action_items']:\n    print(f\"  - {item}\")"
      },
      {
        "title": "Search Recordings",
        "body": "results = search_recordings(\"meeting\", days=90)\nfor r in results:\n    print(f\"{r.title} - {r.description[:100]}\")"
      },
      {
        "title": "API Details",
        "body": "Base URL: https://production.heypocketai.com/api/v1\n\nAuth: Firebase Bearer token from browser IndexedDB\n\nKey Endpoints:\n\nGET /recordings - List with pagination, filters\nGET /recordings/{id}?include=all - Full data with transcript/summary\n\nData Structure:\n\nTranscript: data.transcription.transcription.text\nSummary: data.summarizations[id].v2.summary.markdown\nAction Items: data.summarizations[id].v2.actionItems.items"
      },
      {
        "title": "Token Refresh",
        "body": "Firebase tokens expire in 1 hour. When expired:\n\nEnsure Chrome is running with --profile\nConfirm logged into app.heypocket.com\nRe-run: python3 scripts/reader.py extract"
      },
      {
        "title": "PocketRecording",
        "body": "id, title, description\nduration (seconds), duration_str (human readable)\nrecorded_at, created_at\nhas_transcription, has_summarization\nnum_speakers\nlatitude, longitude (if location enabled)\ntags (list of strings)"
      },
      {
        "title": "PocketSummarization",
        "body": "summary (markdown formatted)\naction_items (list)\ntranscript (raw text)"
      }
    ],
    "body": "Pocket Transcripts\n\nRead transcripts and summaries from Pocket AI devices via reverse-engineered API.\n\nQuick Reference\nFunction\tDescription\nget_recordings(days, limit)\tList recent recordings\nget_recording_full(id)\tGet transcript + summary + action items\nget_transcript(id)\tGet raw transcript text\nget_summarization(id)\tGet markdown summary\nsearch_recordings(query)\tSearch by text\nSetup (One-Time)\n1. Start Chrome with User Profile\n~/.factory/skills/browser/start.js --profile\n# or\n~/.claude/skills/browser/start.js --profile\n\n2. Log into Pocket\n\nNavigate to and log in:\n\n~/.factory/skills/browser/nav.js https://app.heypocket.com\n\n3. Extract Token\npython3 scripts/reader.py extract\n\n\nToken is saved to ~/.pocket_token.json and expires in 1 hour.\n\nUsage\nList Recordings\nfrom pathlib import Path\nimport sys\nsys.path.insert(0, str(Path.home() / '.claude/skills/pocket-transcripts/scripts'))\nfrom reader import get_recordings, get_recording_full\n\nrecordings = get_recordings(days=30, limit=20)\nfor r in recordings:\n    print(f\"{r.recorded_at:%Y-%m-%d} | {r.duration_str} | {r.title}\")\n\nGet Full Transcript and Summary\nfull = get_recording_full(recording_id)\n\nprint(f\"Transcript ({len(full['transcript'])} chars):\")\nprint(full['transcript'][:500])\n\nprint(f\"\\nSummary (markdown):\")\nprint(full['summary'])\n\nprint(f\"\\nAction Items: {len(full['action_items'])}\")\nfor item in full['action_items']:\n    print(f\"  - {item}\")\n\nSearch Recordings\nresults = search_recordings(\"meeting\", days=90)\nfor r in results:\n    print(f\"{r.title} - {r.description[:100]}\")\n\nAPI Details\n\nBase URL: https://production.heypocketai.com/api/v1\n\nAuth: Firebase Bearer token from browser IndexedDB\n\nKey Endpoints:\n\nGET /recordings - List with pagination, filters\nGET /recordings/{id}?include=all - Full data with transcript/summary\n\nData Structure:\n\nTranscript: data.transcription.transcription.text\nSummary: data.summarizations[id].v2.summary.markdown\nAction Items: data.summarizations[id].v2.actionItems.items\nToken Refresh\n\nFirebase tokens expire in 1 hour. When expired:\n\nEnsure Chrome is running with --profile\nConfirm logged into app.heypocket.com\nRe-run: python3 scripts/reader.py extract\nData Model\nPocketRecording\nid, title, description\nduration (seconds), duration_str (human readable)\nrecorded_at, created_at\nhas_transcription, has_summarization\nnum_speakers\nlatitude, longitude (if location enabled)\ntags (list of strings)\nPocketSummarization\nsummary (markdown formatted)\naction_items (list)\ntranscript (raw text)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tmustier/heypocket-reader",
    "publisherUrl": "https://clawhub.ai/tmustier/heypocket-reader",
    "owner": "tmustier",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}