← Briefing Service

Morning Paper on your reMarkable or Kindle

One of the hourly briefings, typeset as a multi-page paper, delivered to your reading tablet every morning.

Free for the first 10 subscribers (reMarkable and Kindle together) while delivery is being built. No card, no account: an id shown after signup is all you need to check on it or unsubscribe.
After the free slots: a Reader key ($9/month, get one) unlocks delivery and the full API; paste it in the license field.

How it works

reMarkable

  1. Open my.remarkable.com/device/desktop/connect and copy the 8-character one-time code (you will need to be signed in to your reMarkable account).
  2. Pick a briefing below, paste the code, and submit. Today's paper is pushed right away so you can see it land.
  3. Every morning at 7:00 ET a new paper arrives in a Morning Paper folder on the device, named like Morning Paper – AI Briefing – 2026-09-11.

The code is exchanged once for a device token, which is what lets us upload to your tablet. The token is stored server-side and used for nothing but these uploads; deleting your subscription deletes it. We cannot read anything on your reMarkable that we did not put there.

Kindle

  1. Add paper@wholemind.tech to your Approved Personal Document E-mail List at amazon.com/sendtokindle (Manage → Personal Document Settings → Approved Personal Document E-mail List → Add a new approved e-mail address). Amazon drops mail from any other sender.
  2. On the same page, copy your Send to Kindle e-mail address (it looks like name_123@kindle.com), pick a briefing below, paste the address, and submit.
  3. Every morning at 7:00 ET the paper is emailed from paper@wholemind.tech as a PDF attachment named like Morning Paper – AI Briefing – 2026-09-11.pdf; it shows up in your Kindle library. Today's paper is emailed right away when you sign up.

Your @kindle.com address is stored server-side and used for nothing but these emails; deleting your subscription deletes it.

Sign up

reMarkable
Custom paper (Reader key required)

Replaces the stock briefing with a paper ranked each morning from your own sources: paste up to 12 RSS/Atom feed URLs and, if you like, tell the editor who it is for. Each morning's render counts as one of the key's 10 renders a day; if a render fails, the stock briefing you picked above is sent instead. Leave the feeds empty for the stock paper.

Personal sheet (optional)

A page of your own in front of the paper every morning: the date, the weather for your ZIP, today's calendar, a checklist, and a Notes block with ruled lines to write on. Leave it all blank for the paper alone. All fields are optional; the weather and calendar are skipped quietly when they cannot be fetched.

Preview the sheet (opens today's sheet as a PDF with what you typed; add it to a subscription later with PATCH, see below)



Check, change the sheet or custom paper, or unsubscribe

curl https://briefing-service.wholemind.workers.dev/v1/paper/subscriptions/<id>
curl -X PATCH https://briefing-service.wholemind.workers.dev/v1/paper/subscriptions/<id> -H 'content-type: application/json' \
  -d '{"sheet": {"title": "Morning", "zip": "10028", "ics_url": "https://…/basic.ics", "today": ["Call the bank", "Ship v0.2"], "notes": "…"}}'
curl -X PATCH https://briefing-service.wholemind.workers.dev/v1/paper/subscriptions/<id> -H 'content-type: application/json' -d '{"sheet": null}'   # remove the sheet
curl -X PATCH https://briefing-service.wholemind.workers.dev/v1/paper/subscriptions/<id> -H 'content-type: application/json' \
  -d '{"custom": {"name": "Hardware Brief", "feeds": ["https://feeds.arstechnica.com/arstechnica/technology-lab"], "persona": "Editor for a hardware engineer", "item_count": 7}}'   # Reader key subscriptions only
curl -X PATCH https://briefing-service.wholemind.workers.dev/v1/paper/subscriptions/<id> -H 'content-type: application/json' -d '{"custom": null}'   # back to the stock paper
curl -X DELETE https://briefing-service.wholemind.workers.dev/v1/paper/subscriptions/<id>

The id is the only credential for these, so keep it to yourself.

The PDF itself is free to download any time: https://briefing-service.wholemind.workers.dev/v1/briefings/ai/paper.pdf (also finance, sports, soccer, us, world, labs). Questions: hello@wholemind.tech.