mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
fac3158c2a
## Summary Add a server-owned `recencyAt` timestamp and `recency_at` thread-list sort key for product recency ordering while preserving the existing meaning of `updatedAt` as the latest persisted thread mutation. This is the server-side alternative to #27697. Rather than narrowing `updatedAt`, clients can sort the sidebar by `recency_at` and continue treating `updatedAt` as mutation time. Paired Codex Apps PR: [openai/openai#1024599](https://github.com/openai/openai/pull/1024599) ## Contract - `recencyAt` initializes when a thread is created. - A turn start advances `recencyAt` monotonically. - Commentary, agent output, tool results, token/accounting updates, turn completion, archive, unarchive, resume, and generic metadata writes do not advance it. - `updatedAt` retains its existing behavior and continues to advance for persisted thread mutations. - Current servers populate `recencyAt`; the response field is optional in generated TypeScript so clients connected to older servers can fall back to `updatedAt`. - Filesystem-only fallback uses existing updated/mtime ordering when SQLite is unavailable. ## Persistence and compatibility Migration 0038 adds second- and millisecond-precision recency columns, backfills them from the existing updated timestamp, creates list indexes, and includes an insert trigger so older binaries writing to a migrated database seed recency without causing later mutations to advance it. Generic metadata upserts preserve existing recency values. Turn-start updates use a dedicated monotonic touch, and process-local allocation keeps millisecond cursor values unique. State DB list, search, read, filtered-list repair, rollout fallback propagation, and app-server conversions all carry the new field. ## API `Thread` responses include: ```ts recencyAt?: number ``` `thread/list` and `thread/search` accept: ```json { "sortKey": "recency_at" } ``` Generated TypeScript and JSON schemas are included. ## Validation - `just test -p codex-state` — 146 passed - `just test -p codex-rollout` — 69 passed - `just test -p codex-thread-store` — 81 passed - `just test -p codex-app-server-protocol` — 231 passed - Focused app-server list ordering, response mapping, archive/unarchive, and resume lifecycle tests passed - Scoped `just fix` for state, rollout, thread-store, app-server-protocol, and app-server - `just fmt` - `git diff --check` - Independent correctness, simplicity, elegance, security, and test-quality reviews; actionable ordering, lifecycle, query-projection, and timestamp-uniqueness findings were addressed
29 lines
962 B
SQL
29 lines
962 B
SQL
ALTER TABLE threads ADD COLUMN recency_at INTEGER NOT NULL DEFAULT 0;
|
|
ALTER TABLE threads ADD COLUMN recency_at_ms INTEGER NOT NULL DEFAULT 0;
|
|
|
|
UPDATE threads
|
|
SET recency_at = updated_at,
|
|
recency_at_ms = updated_at_ms;
|
|
|
|
-- Older binaries can open databases migrated by newer binaries. Seed recency
|
|
-- when one of those binaries inserts a thread without the new columns.
|
|
CREATE TRIGGER threads_recency_at_after_insert
|
|
AFTER INSERT ON threads
|
|
WHEN NEW.recency_at_ms = 0
|
|
BEGIN
|
|
UPDATE threads
|
|
SET recency_at = NEW.updated_at,
|
|
recency_at_ms = COALESCE(NEW.updated_at_ms, NEW.updated_at * 1000)
|
|
WHERE id = NEW.id;
|
|
END;
|
|
|
|
CREATE INDEX idx_threads_recency_at_ms
|
|
ON threads(recency_at_ms DESC, id DESC);
|
|
|
|
CREATE INDEX idx_threads_archived_cwd_recency_at_ms
|
|
ON threads(archived, cwd, recency_at_ms DESC, id DESC);
|
|
|
|
CREATE INDEX idx_threads_visible_recency_at_ms
|
|
ON threads(archived, recency_at_ms DESC, id DESC)
|
|
WHERE preview <> '';
|