You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
842 B
842 B
| title | status | type | priority | created_at | updated_at | parent |
|---|---|---|---|---|---|---|
| TUI/filter: token count filter fields | completed | feature | normal | 2026-04-01T06:10:58Z | 2026-04-01T06:25:42Z | claudbg-2vwx |
Add token-based filter fields to the filter query language so users can narrow the session list by token usage.\n\nSupported fields and operators:\n- in: — tokens in (input tokens)\n- out: — tokens out (output tokens)\n- tokens: — total tokens (in + out)\n- All three support < and > comparisons (e.g. tokens:>50000, in:<1000)\n\nRequires storing token counts per session in the DB and exposing them via the Filter::matches() path.
Implemented: added in:, out:, and tokens: filter fields. SessionListItem now carries input_tokens/output_tokens populated from DB. SessionRow trait extended. Help modal updated.