Session: you-are-a-senior-kind-rainbow-subagent-a3b12b47 — 2026-04-28

workspace-doctolib · Claude · branch HEAD · claude-opus-4-7 · 2026-04-28 15:53 · 1 msgs · 22 tools · 12 min read · updated 8 days ago

Second-pass review of treatment-plan PR #3086 at /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-22...

tools: Bash, Read
← workspace-doctolib Download .md .txt .json
Tool calls
Bash Bash: 11 calls (50.0%) 11 Read Read: 11 calls (50.0%) 11
Token usage2.0M total
Input37
Cache creation109.4K
Cache read1.8M
Output5.7K
Cache hit ratio94%· healthy

Project: workspace-doctolib · Branch: HEAD · Mode: ` · **Model:**claude-opus-4-7`

Stats: 1 user messages, 22 tool calls, tools used: Bash, Read.

Conversation

Turn 1 — User

Second-pass review of treatment-plan PR #3086 at /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation (branch: fhir-2223_fix-column-widths-truncation).

Our changes span 3 commits (HEAD~3..HEAD). Please run git diff HEAD~3..HEAD --stat to see the full set of changed files. Key files: - packages/tpf-national-health-records-ui/src/types.ts - packages/tpf-national-health-records-ui/src/helpers/ (moved from src/utils/, 6 files) - packages/tpf-national-health-records-ui/package.json (alias: #helpers/ instead of #utils/) - packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/ (3 components + 2 tests) - 8 files with updated #utils/ → #helpers/ imports

This is a second-pass review after addressing previous feedback: - Moved src/utils/ → src/helpers/ (UpFront standard) - Arrow function + generic type guard in getTextContent - Added missing edge-case tests (mixed array, multi-child element, truncate CSS class) - Fixed toHaveStyle({ width: '' }) test assertion

Are there any remaining issues at confidence >= 80? Please be concise.

Turn 1 — Assistant

I'll review the changes on this branch. Let me start by examining the diff and key files.

Tools used:

  • Bash: cd /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation && git diff HEAD~3..HEAD --stat

Tool results:

→ result (ok): .../tpf-national-health-records-ui/package.json | 2 +- .../createNhrDateSelectionFilterConfig.test.tsx | 2 +- .../filters/createNhrDateSelectionFilterConfig.tsx | 2 +- .../components/NhrDocumentList/NhrDocumentList.tsx | 2 +- .../NhrProcedureDateCell/NhrProcedureDateCell.tsx | 2 +- .../NhrShareDateCell/NhrShareDateCell.tsx | 2 +- .../NhrDocumentListTable.stories.tsx | 2 +- .../NhrDocumentListTable.test.tsx | 7 ++++ .../NhrDocumentLis …(truncated, 795 more chars)

Tools used:

  • Read: /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/helpers/reactNodeHelpers.ts

Tool results:

→ result (ok): 1 import { isValidElement } from 'react' 2 import type { ReactNode } from 'react' 3
4 export const getTextContent = (node: ReactNode): string => { 5 if (typeof node === 'string' || typeof node === 'number') return String(node) 6 if (Array.isArray(node)) return node.map(getTextContent).join('') 7 if (isValidElement<{ children?: ReactNode }>(node)) return getTextContent(node.props.children) 8 return '' 9 } 10

Tools used:

  • Read: /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/helpers/reactNodeHelpers.test.ts

Tool results:

→ result (ok): 1 import { createElement } from 'react' 2 import { describe, expect, it } from 'vitest' 3
4 import { getTextContent } from './reactNodeHelpers' 5
6 describe('getTextContent', () => { 7 it('should return a string value unchanged', () => { 8 expect(getTextContent('hello')).toBe('hello') 9 }) 10
11 it('should convert a number to string', () => { 12 expect(getTextContent(42)).toBe('42') 13 }) 14
15 it('should extract text from a React element with a string child', () => { 16
…(truncated, 1256 more chars)

Tools used:

  • Read: /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/types.ts

Tool results:

→ result (ok): 1 import type { DesignSystemIconComponent } from '@doctolib/design-system-icons' 2 import type { NhrDocument, NhrResultStatus } from '@doctolib/tpf-national-health-records' 3 import type { ReactNode } from 'react' 4
5 export type NhrPatientInfo = { 6 fullName: string 7 gender: 'male' | 'female' | 'other' 8 birthDate: string 9 age: number 10 } 11
12 export type ColumnConfig = { 13 key: string 14 header: string 15 sortable: boolean 16 /** Only required when sortable: true. Return …(truncated, 3831 more chars)

Tools used:

  • Read: /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTable.tsx

Tool results:

→ result (ok): 1 import { PAGE_SIZE } from '#helpers/nhrPaginationHelpers' 2 import { Pagination } from '@doctolib/design-system/Pagination' 3 import { Table } from '@doctolib/design-system/Table' 4 import type { NhrDocument } from '@doctolib/tpf-national-health-records' 5
6 import type { ActionConfig, ColumnConfig } from '../../../types' 7 import { NhrDocumentListTableBody } from './NhrDocumentListTableBody/NhrDocumentListTableBody' 8 import { NhrDocumentListTableHead } from './NhrDocumentListTableHead/NhrDo …(truncated, 988 more chars)

Tools used:

  • Read: /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableBody/NhrDocumentListTableBody.tsx

Tool results:

→ result (ok): 1 import { getTextContent } from '#helpers/reactNodeHelpers' 2 import { TableBody } from '@doctolib/design-system/TableBody' 3 import { TableCell } from '@doctolib/design-system/TableCell' 4 import { TableRow } from '@doctolib/design-system/TableRow' 5 import { TableSelectCell } from '@doctolib/design-system/TableSelectCell' 6 import type { NhrDocument } from '@doctolib/tpf-national-health-records' 7
8 import type { ActionConfig, ColumnConfig } from '../../../../types' 9 import { ActionButton } …(truncated, 1393 more chars)

Tools used:

  • Read: /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableHead/NhrDocumentListTableHead.tsx

Tool results:

→ result (ok): 1 import { TableHead } from '@doctolib/design-system/TableHead' 2 import { TableHeadCell } from '@doctolib/design-system/TableHeadCell' 3 import { TableHeadSelectAllCell } from '@doctolib/design-system/TableHeadSelectAllCell' 4 import { TableRow } from '@doctolib/design-system/TableRow' 5
6 import type { ColumnConfig } from '../../../../types' 7
8 export type NhrDocumentListTableHeadProps = { 9 columns: ColumnConfig[] 10 } 11
12 export const NhrDocumentListTableHead = ({ columns }: NhrDocum …(truncated, 372 more chars)

Tools used:

  • Read: /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableHead/NhrDocumentListTableHead.test.tsx

Tool results:

→ result (ok): 1 import { setup } from '@doctolib/test-helpers' 2 import { screen } from '@testing-library/react' 3 import { describe, expect, it } from 'vitest' 4
5 import { mockColumns } from '../../../../test-helpers' 6 import type { ColumnConfig } from '../../../../types' 7 import { NhrDocumentListTableHead } from './NhrDocumentListTableHead' 8
9 describe('NhrDocumentListTableHead', () => { 10 it('should render all column header labels from the column config', () => { 11 setup( 12 <table> 13
…(truncated, 1864 more chars)

Tools used:

  • Read: /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableBody/NhrDocumentListTableBody.test.tsx

Tool results:

→ result (ok): 1 import type { DesignSystemIconComponent } from '@doctolib/design-system-icons' 2 import { setup } from '@doctolib/test-helpers' 3 import { screen, waitFor } from '@testing-library/react' 4 import { describe, expect, it, vi } from 'vitest' 5
6 import { createMoreActionsAction } from '../../../../business/factories/actions/createMoreActionsAction' 7 import { mockColumns, mockRows } from '../../../../test-helpers' 8 import { nhrDocumentFixtureBuilder } from '../../../../test-helpers/fixtures/nhr …(truncated, 7327 more chars)

Tools used:

  • Read: /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/package.json

Tool results:

→ result (ok): 1 { 2 "name": "@doctolib/tpf-national-health-records-ui", 3 "version": "16.0.2", 4 "repository": { 5 "type": "git", 6 "url": "git+https://github.com/doctolib/treatment-plan.git" 7 }, 8 "keywords": [ 9 "upfront", 10 "modular frontend", 11 "smaller-scope" 12 ], 13 "author": "@doctolib/fire", 14 "license": "Doctolib", 15 "doctolib": { 16 "upfront-type": "smaller-scope" 17 }, 18 "type": "module", 19 "sideEffects": [ 20 "./src/i18n.ts" 21 ], 22
…(truncated, 3868 more chars)

Tools used:

  • Read: /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTable.test.tsx

Tool results:

→ result (ok): 1 import { setup } from '@doctolib/test-helpers' 2 import { screen } from '@testing-library/react' 3 import { describe, expect, it } from 'vitest' 4
5 import { mockColumns, mockRows } from '../../../test-helpers' 6 import { NhrDocumentListTable } from './NhrDocumentListTable' 7
8 const defaultPaginationProps = { 9 currentPage: 1, 10 total: 0, 11 onPageChange: () => {}, 12 } 13
14 describe('NhrDocumentListTable', () => { 15 it('should render a table', () => { 16 setup(<NhrDocumentL …(truncated, 2315 more chars)

Now let me check the helpers directory for any "subdirectories" issue (the rule says helpers should be small with no subdirectories):

Tools used:

  • Bash: cd /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation && ls -la packages/tpf-national-health-records-ui/src/helpers/

Tool results:

→ result (ok): drwxr-xr-x clertonra staff 256 B Tue Apr 28 17:02:33 2026 . drwxr-xr-x clertonra staff 416 B Tue Apr 28 17:02:00 2026 .. .rw-r--r-- clertonra staff 4.3 KB Tue Apr 28 16:08:43 2026 nhrDateHelpers.test.ts .rw-r--r-- clertonra staff 650 B Tue Apr 28 16:08:43 2026 nhrDateHelpers.ts .rw-r--r-- clertonra staff 2.0 KB Tue Apr 28 16:08:43 2026 nhrPaginationHelpers.test.ts .rw-r--r-- clertonra staff 195 B Tue Apr 28 16:08:43 2026 nhrPaginationHelpers.ts .rw-r--r-- clertonra staff 1.6 KB Tue Apr 28 17 …(truncated, 115 more chars)

Tools used:

  • Bash: cd /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation && git diff HEAD~3..HEAD -- packages/tpf-national-health-records-ui/src/components/NhrDocumentLis …(truncated, 81 more chars)

Tool results:

→ result (ok): diff --git a/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableBody/NhrDocumentListTableBody.tsx b/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableBody/NhrDocumentListTableBody.tsx index 21e6dddec..030742257 100644 --- a/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableBody/NhrDocumentListTableB …(truncated, 1289 more chars)

Tools used:

  • Bash: cd /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation && git log HEAD~3..HEAD --oneline

Tool results:

→ result (ok): f6ee5c94e fix(FHIR-2223): address review feedback — helpers dir, extra tests, toHaveStyle 99434f84c fix(FHIR-2223): address review feedback on truncation helpers and tests aad974b49 fix(FHIR-2223): fix proportional column widths with text truncation in NhrDocumentListTable

Tools used:

  • Bash: cd /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation && git diff HEAD~3..HEAD -- packages/tpf-national-health-records-ui/src/components/NhrDocumentLis …(truncated, 187 more chars)

Tool results:

→ result (ok): diff --git a/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTable.stories.tsx b/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTable.stories.tsx index 5e969a50e..36ea7dbd6 100644 --- a/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTable.stories.tsx +++ b/packages/tpf-national-health-records-ui/src/compo …(truncated, 1391 more chars)

Tools used:

  • Bash: cd /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation && grep -rn "from '#utils" packages/tpf-national-health-records-ui/src/ 2>/dev/null; echo "---"; …(truncated, 88 more chars)

Tool results:

→ result (ok): --- packages/tpf-national-health-records-ui/src/business/factories/filters/createNhrDateSelectionFilterConfig.tsx:1:import { formatNhrDateTime } from '#helpers/nhrDateHelpers' packages/tpf-national-health-records-ui/src/business/factories/filters/createNhrDateSelectionFilterConfig.test.tsx:1:import { formatNhrDateTime } from '#helpers/nhrDateHelpers' packages/tpf-national-health-records-ui/src/components/NhrDocumentList/NhrDocumentList.tsx:1:import { getPagedData } from '#helpers/nhrPaginationHe …(truncated, 932 more chars)

Tools used:

  • Bash: cd /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation && find packages/tpf-national-health-records-ui -name "tsconfig*.json" | head -5

Tool results:

→ result (ok): packages/tpf-national-health-records-ui/tsconfig.build.json packages/tpf-national-health-records-ui/tsconfig.json packages/tpf-national-health-records-ui/node_modules/@module-federation/bridge-react-webpack-plugin/tsconfig.node.json packages/tpf-national-health-records-ui/node_modules/@module-federation/bridge-react-webpack-plugin/tsconfig.json packages/tpf-national-health-records-ui/node_modules/@doctolib/upfront-dev/tsconfig.json

Tools used:

  • Read: /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/tsconfig.json

Tool results:

→ result (ok): 1 { 2 "extends": "../../tsconfig-base", 3 "include": [ 4 "../../vitest-shared.config.ts", 5 "../../vitest-setup", 6 "/*", 7 "src/locales//.json", 8 "package.json", 9 "../../.storybook/.ts" 10 ], 11 "compilerOptions": { 12 "types": ["vitest/globals", "@testing-library/jest-dom"] 13 } 14 } 15

Let me check more of the diff for completeness, especially looking at the other test changes and helper imports.

Tools used:

  • Bash: cd /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation && git diff HEAD~3..HEAD -- packages/tpf-national-health-records-ui/package.json

Tool results:

→ result (ok): diff --git a/packages/tpf-national-health-records-ui/package.json b/packages/tpf-national-health-records-ui/package.json index e75bfbe03..315fe3c75 100644 --- a/packages/tpf-national-health-records-ui/package.json +++ b/packages/tpf-national-health-records-ui/package.json @@ -56,7 +56,7 @@ "imports": { "#i18n": "./src/i18n.ts", "#data/": "./src/data/.ts", - "#utils/": "./src/utils/.ts" + "#helpers/": "./src/helpers/.ts" }, "exports": { ".": {

Tools used:

  • Bash: cd /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation && grep -rn "#utils\|/utils/" packages/tpf-national-health-records-ui/ --include="*.ts" --include …(truncated, 73 more chars)

Tool results:

→ result (ok): (Bash completed with no output)

No leftover utils references. Let me check the test-helpers module being referenced from the table tests.

Tools used:

  • Bash: cd /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation && find packages/tpf-national-health-records-ui/src/test-helpers -type f | head -20

Tool results:

→ result (ok): packages/tpf-national-health-records-ui/src/test-helpers/index.ts packages/tpf-national-health-records-ui/src/test-helpers/fixtures/nhrPatientInfoFixtureBuilder.ts packages/tpf-national-health-records-ui/src/test-helpers/fixtures/createFixtureBuilder.test.ts packages/tpf-national-health-records-ui/src/test-helpers/fixtures/nhrPatientInfoFixtureBuilder.test.ts packages/tpf-national-health-records-ui/src/test-helpers/fixtures/nhrDocumentFixtureBuilder.ts packages/tpf-national-health-records-ui/src …(truncated, 382 more chars)

Tools used:

  • Bash: cd /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation && git diff HEAD~3..HEAD -- packages/tpf-national-health-records-ui/src/components/NhrDocumentLis …(truncated, 53 more chars)

Tool results:

→ result (ok): diff --git a/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableHead/NhrDocumentListTableHead.test.tsx b/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableHead/NhrDocumentListTableHead.test.tsx index 8939b589c..d088d81e1 100644 --- a/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableHead/NhrDocument …(truncated, 2572 more chars)

I have enough context for a thorough second-pass review. Let me verify my understanding of the test and code semantics with a final consistency check.

Files reviewed: - /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/helpers/reactNodeHelpers.ts - /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/helpers/reactNodeHelpers.test.ts - /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/types.ts - /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTable.tsx - /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTable.test.tsx - /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableBody/NhrDocumentListTableBody.tsx - /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableBody/NhrDocumentListTableBody.test.tsx - /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableHead/NhrDocumentListTableHead.tsx - /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/src/components/NhrDocumentListModal/NhrDocumentListTable/NhrDocumentListTableHead/NhrDocumentListTableHead.test.tsx - /Users/USER/workspace/doctolib/worktrees/treatment-plan/fhir-2223_fix-column-widths-truncation/packages/tpf-national-health-records-ui/package.json

Second-pass Review Summary

No remaining issues at confidence >= 80. The code meets standards.

Verified resolutions of previous feedback: 1. src/utils/ rename to src/helpers/ — complete. package.json#imports alias updated to #helpers/* -> ./src/helpers/*.ts. No stragglers (grep returns zero #utils or /utils/ references in package source). 2. getTextContent is an arrow function with the generic type guard isValidElement<{ children?: ReactNode }> — eliminates the as assertion and handles boolean/null/undefined fallthrough cleanly. 3. New edge-case tests added: mixed array (line 41), multi-string children (line 45), boolean (line 36), null/undefined (lines 28, 32) in reactNodeHelpers.test.ts. 4. toHaveStyle({ width: '' }) assertion at NhrDocumentListTableHead.test.tsx:61 correctly verifies absence of inline width when col.width is omitted. 5. New truncate-class test (NhrDocumentListTableBody.test.tsx:112-121) and dl-table-layout-fixed smoke test in the parent NhrDocumentListTable.test.tsx:61-66 — both include CSS-selector justification comments matching the testing-patterns rule.

Spot checks that passed: - helpers/ directory remains flat (no subdirectories) — complies with package-structure.md rule. - ColumnConfig.width JSDoc clearly documents the units (CSS percentage) and pass-through to Oxygen's initialWidth. - getTextContent recursion handles Array.isArray before isValidElement (correct ordering — React Fragments rendered as arrays still work). - All new tests use semantic queries (getByRole, getByTitle, getByText); CSS-selector usages have justification comments per testing-patterns.md. - No eslint-disable, no any, no snapshot tests, no arbitrary waits. - Conventional Commits format respected (fix(FHIR-2223): ...).

Code is ready to merge from a code-review standpoint.

Keyboard shortcuts

⌘K / Ctrl+KOpen command palette
/Focus search
g hGo to home
g pGo to projects
g sGo to sessions
j / kNext / prev row (tables)
?Show this help
EscClose dialogs

Structured queries

Mix key:value filters with free text in the palette:

type:sessionOnly session pages
project:llm-wikiFilter by project name (substring)
model:claudeFilter by model name (substring)
date:>2026-03-01Sessions after a date
date:<2026-04-01Sessions before a date
tags:rustPages mentioning a tag/topic
sort:dateSort results by date (newest first)

Example: type:session project:llm-wiki date:>2026-04 sort:date