Skip to content

Browse

txi search is the right tool when you have keywords. When you want to scan by metadata (date range, participant, conversation kind), use txi conversations, txi conversation, and txi notes.

List conversations

# All conversations from the last quarter
txi conversations --since 2026-01-01 --until 2026-03-31

# Conversations a particular person attended
txi conversations --participant "Riley Stone"

# Only meetings that have notes attached
txi conversations --kind meeting --with-notes

# Title search
txi conversations --title-contains roadmap

Available filters:

  • --since / --until — ISO date bounds.
  • --participant NAME — filter by a participant.
  • --kind {meeting,slack_thread,slack_dm} — filter by conversation kind.
  • --with-notes / --without-notes — restrict by whether notes are attached.
  • --title-contains TEXT — case-insensitive substring match against titles.
  • --limit N / -n N — max rows. Default 50.

View a single conversation

txi conversation 142

Prints the conversation header, every turn, and any attached notes. Use --no-notes to skip the notes section.

List notes

# All summary notes from a given window
txi notes --kind summary --since 2026-01-01

# Notes attached only to Slack threads
txi notes --conversation-kind slack_thread

Filters:

  • --since / --until — ISO date bounds.
  • --kind {summary,follow_up,manual} — filter by note kind.
  • --conversation-kind — filter by parent conversation kind.
  • --limit N / -n N — max rows. Default 50.