feat: sync codex thread names

This commit is contained in:
AI Bot
2026-06-03 14:06:15 +08:00
parent 0bcdcbfb9d
commit cc31b0d836
11 changed files with 311 additions and 2 deletions

View File

@@ -655,6 +655,22 @@ rl.on("line", (line) => {
return;
}
if (message.method === "thread/name/set") {
send({
id: message.id,
result: {},
});
send({
method: "thread/name/updated",
params: {
threadId: message.params?.threadId,
threadName: message.params?.name,
internalNameMutationSecret: "thread-name-secret-should-not-leak",
},
});
return;
}
if (message.method === "thread/read") {
send({
id: message.id,