Replies: 2 comments 1 reply
|
chatgpt 5.6 has no problem when I say things like
whether I'm running the thread in t3code or codex. I remember I had to help it a bit a few months ago with those kinds of requests, but I don't anymore. I don't know what changed (it's not codex memories, I just enabled them recently, and there's nothing about finding t3code threads in my global AGENTS.md) but it Just Works. Claude is less adept at it out of the box, and tends to just make something up instead of admitting it doesn't know how to do it. Here's an example of how to prompt it: Look up T3 Code thread `<T3CODE_THREAD_ID>` in T3’s local conversation database at `~/.t3/userdata/state.sqlite`.
Read the thread’s messages from `projection_thread_messages`, including archived threads, in chronological order. Search for discussion of `<XXXX>`.
Tell me:
1. What we ultimately decided.
2. The reasoning and constraints behind it.
3. Any unresolved questions or later reversals.
4. The most relevant message dates or short excerpts supporting your answer.
Distinguish an accepted decision from suggestions, plans, and alternatives. If the thread does not establish a clear decision, say so rather than inferring one. Do not modify the database.I don't use Claude a lot; I'm sure if you did a few requests like that it'd store some memories and you'd be able to prompt it as tersely a codex. |
|
Closing as a duplicate of #6701, which already tracks referencing another thread so an agent can use its conversation as context. |
Uh oh!
There was an error while loading. Please reload this page.
Before submitting
Area
apps/desktop
Problem or use case
Context
I use T3 Code to run agents that sometimes execute with custom skills or configuration. When an agent does something unexpected — for example, a custom skill steers the AI the wrong way during a test run — I want to have another AI review that conversation to figure out what went wrong and propose a fix to the skill.
The problem
Today there is no way to point one conversation at another:
What I'm trying to do
Run an analysis thread that references an earlier conversation.
Ask the new agent questions about that conversation, such as:
Keep the referenced thread read-only; the analysis happens in the new conversation.
Why it's hard today
There is no built-in way to attach a thread as context, so this workflow is slow, lossy, and error-prone.
Proposed solution
Add a way to reference an existing thread from within another conversation:
@reference-style mention in the composer that resolves to a saved thread.A pragmatic v1: attach the transcript as structured context on
thread.turn.start(extendingChatAttachmentor adding areferencedThreadfield), letting the provider see it as additional context for that turn.Why this matters
Smallest useful scope
A first pass only needs to:
No cross-thread linking UI, no live updates from the referenced thread, no graph/visualization, and no multi-thread references.
Alternatives considered
No response
Risks or tradeoffs
No response
Examples or references
No response
Contribution
All reactions