Pebble remembers what you talked about last Tuesday, who you mentioned at brunch, and the way you actually take your coffee. Long‑term memory, end‑to‑end encrypted, and yours to delete.
Mention dinner with friends once. Pebble pulls dates, locations, dietary notes, and books it — with everyone CC'd.
The book your therapist recommended. The model number on your router. The wine you liked. Stop searching your own Notes app.
All your half‑written thoughts, voice memos, and stray decisions — stitched into one living document per project.
Where you met, what they're working on, the favor you owe — built from the conversations you already have.
8:00am: what's on your calendar, who you should follow up with, the one thing you said you'd do this week and haven't.
"My back hurt for three days last month after the trip." Pebble noticed, kept the thread, and connects the dots when you ask.
Pebble splits memory between episodes (the literal moments — what you said, where, when) and a concept graph (the people, places, projects, and preferences it inferred). Every reply pulls from both, and tells you which.
A reasoning model paired with a private long‑term memory store. Memory is encrypted with a key only your device holds.
Pebble exposes a scoped Memory API — your apps can read and write to a user's memory only with their explicit consent.
from pebble import Pebble p = Pebble(user_token="ut_…") answer = p.ask( "What was that Italian place for the offsite?", scope=["projects", "contacts"], cite=True, ) # every claim ships with the source memory for c in answer.citations: print(c.kind, c.date, c.snippet)
import Pebble from "@pebble/sdk"; const p = new Pebble({ userToken: process.env.PEB }); const answer = await p.ask({ prompt: "What was that Italian place for the offsite?", scope: ["projects", "contacts"], cite: true, }); answer.citations.forEach(c => console.log(c.kind, c.date, c.snippet));
$ curl https://api.pebble.ai/v1/ask \ -H "Authorization: Bearer $PEBBLE_KEY" \ -d '{ "prompt": "What was that Italian place for the offsite?", "scope": ["projects","contacts"], "cite": true }'
"I stopped copying context into prompts six months ago. Pebble just knows. It's the first AI tool I'd pay double for if they raised the price."
Free for the first week. You'll know whether you want to keep it long before that.