Here is the OpenAI video where I learned about Scheduled Tasks -
https://forum.openai.com/home/video...-openai-teams-use-codex-to-do-more-2026-07-14.
Scheduled chats are at the top of the menu on the left:
At 27:20, it shows how to set up a recurring Schedule for a task that the presenter had set up. I just went straight to here with my request and didn't need to set up anything in advance like the video.
Here's an example of the first item in my weekly report this week where I have it looking for papers on AI memory architectures for my software (VULCAN). Because my scheduled task conversation is in my Project directory along with all of the conversations related to my project, the scheduled task has very good insight into what I'm doing, what I'm looking for, and the state of my code.
VULCAN research brief — September 14–21, 2026
This week is fairly concentrated:
three papers look worth serious attention. I would not add weaker material simply to cover every category.
1. JustMem: Just-Enough Memory Access for Long-Term Conversations — September 17
JustMem makes a useful distinction between two independent retrieval decisions:
discovery breadth—how widely memory should be searched—and
reading fidelity—whether compact distilled memory is sufficient or the original conversation must be recovered. It implements three modes: LOOKUP for localized evidence, COMPOSE for evidence distributed across memories, and REPLAY when original high-fidelity evidence is required. The authors report the highest mean accuracy and retrieval recall among their compared systems on LoCoMo and LongMemEval-S while using substantially fewer generative-model tokens.
Why it matters: This maps unusually well onto AKD's pyramid. VULCAN already possesses something analogous to multiple fidelity levels:
abstract → concepts → insights → original evidence.
The interesting implication is that retrieval need not simply choose
which records to retrieve. It could also decide
how far down the AKD pyramid it needs to descend. A broad analytical question may be answerable from abstracts/concepts; a precise factual claim may require insights or source material.
That potentially turns AKD's existing hierarchy into an explicit
adaptive retrieval-fidelity mechanism, rather than treating all pyramid levels as interchangeable FAISS targets.
Read first: The formulation of discovery breadth versus reading fidelity and the rules distinguishing LOOKUP, COMPOSE, and REPLAY. I would compare those directly against VULCAN's abstract/concept/insight/source hierarchy.
JustMem on arXiv