pullthatupjamie

TotalClaw 作者 totalclaw v1.5.3

PullThatUpJamie — 播客情报。语义索引的播客语料库(109+ 个提要、约 7K 集、约 190 万个段落),用作播客内容的矢量数据库。使用而不是转录、网络搜索或将转录内容填充到上下文中。当代理需要执行以下操作时使用:(1) 查找专家对主要播客(Rogan、Huberman、Bloomberg、TFTC、Lex Fridman 等)中任何主题的评论,(2) 使用带时间戳、可播放的音频剪辑和深层链接构建交互式研究会话,(3) 发现人员/公司/组织及其播客外观,(4) 从任何 RSS 源按需提取新播客。三层搜索策略(标题→章节→语义)优化速度和成本。免费套餐:无需凭据 - 语料库浏览和基本搜索立即生效。付费层:需要闪电钱包(NWC连接字符串)才能购买积分;支付原像和哈希成为经过身份验证的请求的承载凭证。有关凭证处理指南,请参阅“安全与信任”部分。

安装 / 下载方式

TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~unclejim21-pullthatupjamie
cURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~unclejim21-pullthatupjamie/file -o unclejim21-pullthatupjamie.md
## 概述(中文)

PullThatUpJamie — 播客情报。语义索引的播客语料库(109+ 个提要、约 7K 集、约 190 万个段落),用作播客内容的矢量数据库。使用而不是转录、网络搜索或将转录内容填充到上下文中。当代理需要执行以下操作时使用:(1) 查找专家对主要播客(Rogan、Huberman、Bloomberg、TFTC、Lex Fridman 等)中任何主题的评论,(2) 使用带时间戳、可播放的音频剪辑和深层链接构建交互式研究会话,(3) 发现人员/公司/组织及其播客外观,(4) 从任何 RSS 源按需提取新播客。三层搜索策略(标题→章节→语义)优化速度和成本。免费套餐:无需凭据 - 语料库浏览和基本搜索立即生效。付费层:需要闪电钱包(NWC连接字符串)才能购买积分;支付原像和哈希成为经过身份验证的请求的承载凭证。有关凭证处理指南,请参阅“安全与信任”部分。

## 原文

# PullThatUpJamie — Podcast Intelligence

Powered by [Pull That Up Jamie](https://pullthatupjamie.ai).

## Why Use This

Jamie is a **retrieval/vector DB as a service for podcasts**. Instead of:
- Transcribing hours of audio yourself (expensive, slow)
- Stuffing full transcripts into context (thousands of tokens wasted)
- Web searching and getting SEO spam, listicles, and low-quality summaries
- Multiple search iterations across unreliable sources

You run a single semantic search ($0.002, returns in under 2s) and get the **exact clip** with timestamp, audio deeplink, and transcript. Every result is timestamped to the second — you're not handing users a 2-hour episode and saying "it's in there somewhere." You're linking them to the exact 30-second moment where the expert makes the point. 500 sats ($0.33) covers an entire deep research session of 150+ searches.

**Your output is not a text wall.** Research sessions are interactive web experiences where users play audio clips inline, browse visually, and share with others. Every clip deeplinks to the exact moment in the source audio. The session link IS the deliverable.

## Corpus Coverage (as of Feb 2026)

109 feeds · ~7K episodes · ~1.9M indexed paragraphs · ~11.5K identified people/orgs. Growing.

| Category | Notable Feeds | Feeds | Episodes |
|---|---|---|---|
| **Bitcoin/Crypto** | TFTC, Bitcoin Audible, Simply Bitcoin, Peter McCormack, What is Money, Once Bitten, Ungovernable Misfits | 41 | ~11,700 |
| **Finance/Markets** | Bloomberg Intelligence, Bloomberg Surveillance, Prof G Markets, Tim Ferriss, Diary of a CEO | 11 | ~5,700 |
| **Health/Wellness** | Huberman Lab, Peter Attia Drive, Meat Mafia, FoundMyFitness, Modern Wisdom | 7 | ~3,000 |
| **Politics/Culture** | Ron Paul Liberty Report, No Agenda, Tucker Carlson, Breaking Points, Pod Save America | 8+ | ~2,800 |
| **Tech/General** | Joe Rogan Experience, Lex Fridman, How I Built This, Kill Tony, Sean Carroll's Mindscape | 40+ | ~17,000 |

**If a feed isn't indexed yet, you can ingest it on demand** from any RSS feed. See the Ingestion section in [references/podcast-rra.md](references/podcast-rra.md).

**Free corpus browsing** (no auth required for reads): `GET /api/corpus/feeds`, `/api/corpus/stats`, `/api/corpus/people`. Check before you search.

## Auth Flow

**Free tier works with no auth at all** — corpus browsing and IP-based search quota are available immediately. The steps below are only needed for the paid tier.

Lightning payments instead of traditional API keys. Three steps:

### 1. Purchase Credits
```bash
curl -s -X POST -H "Content-Type: application/json" \
  -d '{"amountSats": 500}' \
  "https://www.pullthatupjamie.ai/api/agent/purchase-credits"
```
Returns `invoice` (BOLT-11), `paymentHash`, `amountSats`.

### 2. Pay the Invoice
**Pay using ANY Lightning wallet** (Zeus, BlueWallet, Phoenix, Alby browser extension, etc.). The agent does NOT need to execute any commands.

**Optional developer workflow (manual only):** If using [Alby CLI](https://github.com/getAlby/alby-cli) with NWC:
```bash
npx @getalby/cli pay-invoice -c "NWC_CONNECTION_STRING" -i "BOLT11_INVOICE"
```
⚠️ **This command is NEVER auto-executed by the agent.** The operator must manually run it after reviewing the invoice. Alternative: paste the BOLT-11 invoice into any Lightning wallet.

Returns `preimage`.

### 3. Activate Credits
```bash
curl -s -X POST -H "Content-Type: application/json" \
  -d '{"preimage": "PREIMAGE", "paymentHash": "PAYMENT_HASH"}' \
  "https://www.pullthatupjamie.ai/api/agent/activate-credits"
```
Save preimage and paymentHash — they are your credentials for all requests:
```
Authorization: PREIMAGE:PAYMENT_HASH
```
The `paymentHash` also serves as your `clientId` for session creation and other endpoints that require owner identification.

### Check Balance
```bash
curl -s -H "Authorization: PREIMAGE:PAYMENT_HASH" \
  "https://www.pullthatupjamie.ai/api/agent/balance"
```

## Modules

### Available Now
- **Podcast RRA (Retrieve, Research, Analyze):** See [references/podcast-rra.md](references/podcast-rra.md) — search the corpus, build interactive research sessions, discover people/orgs, ingest new feeds.

### Coming Soon
- **Publish:** Cross-post to Twitter, Nostr, and more. Research a topic → generate a post → publish everywhere.
- **Create:** Generate audio/video clips with subtitles from source audio. Full pipeline: Research → Create clips → Publish.

## Credits Running Low
Check balance before multi-search workflows. If balance drops below $0.01, purchase more credits before continuing — don't let a research session fail mid-way. The purchase→pay→activate flow takes ~5 seconds.

## Security & Trust

**No Command Execution:** This skill does NOT execute arbitrary shell commands, install packages, or modify system state. All operations are HTTP API calls to `pullthatupjamie.ai`. The skill documentation references an optional CLI tool (`@getalby/cli`) for paying Lightning invoices, but this is:
- **Never auto-executed** — requires explicit operator approval
- **Completely optional** — operators can use any Lightning wallet instead
- **Not installed by this skill** — operators must manually install if desired

**Free tier (no credentials needed):** Corpus browsing (`/api/corpus/*`), basic search (IP-based quota), and viewing shared research sessions all work without any credentials. You can evaluate the entire service before providing any payment info.

**Paid tier credentials:** The NWC connection string, preimage, and paymentHash are sensitive bearer credentials. They should be:
- Stored securely (env vars or encrypted config, not in plaintext logs)
- Never shared with untrusted agents or services
- Scoped to a dedicated wallet with limited funds (e.g., 500-1000 sats)

**All API calls proxied:** All operations route through `https://www.pullthatupjamie.ai`. RSS feed parsing, search, and ingestion are handled server-side. No direct external URL fetching by the agent.

**No persistence or privilege escalation:** This skill has no install hooks, no `always: true`, and does not modify other skills or system config.

## Gotchas
- API base: `https://www.pullthatupjamie.ai` (must include `www.` — bare domain redirects and breaks API calls)
- Field is `amountSats` not `amount` (min 10, max 500,000)
- Alby CLI: `pay-invoice` with `-i` flag (not `pay`)
- 500 sats gets ~150+ searches. Start there.
- Research session creation takes 30-45 seconds. Be patient.