Dashboard › cli › Distillation
8318ca89-9fe7-4d08-a1cd-fadb52a94602["lore_tm_v1_Hfmwp3spdf_8tFvhOQg0_qVOF3bgb9wgVUd0MJz5T2o","lore_tm_v1_EIXRPvWJdkxh_RhIfCCzQYV4a8E70r1DNk3M2scOcKs","lore_tm_v1_r-apmsGlNZgiCipZnggtGK5ryYmKX6F8q7HJNQiaIUQ","lore_tm_v1_Re8h59LW_Vw_OcrHfdMsjiNGWEJ3F54XFzsaH55ae5M","lore_tm_v1_hy8dps4giW62UcEJfwzGoojvp7KvTvUx96srrxv2ZaY","lore_tm_v1_7bnQIHIkgksDsRCxntxIVlNtUl7vxnNyhHXNmA9LHgE","lore_tm_v1_A9t0-c8G-DLGSWA3q7URADlDgYfyXi3oxkFHj8boD38","lore_tm_v1_2DjGtV8H0PEAPKcptQT5-qlui4TsSU0KJG2aK7nYlCU"]
packages/cli/src/lib/command.ts are always stripped, so the command never sees them.packages/cli/src/lib/api/conversations.ts contains exactly 1 getConversationSpans match, exported at line 119.getConversationSpans() in packages/cli/src/lib/api/conversations.ts lines 119–177 accepts orgSlug, conversationId, and optional statsPeriod, project, and perPage; it returns { spans: AgentConversationSpan[]; truncated: boolean; title: string | null }.getConversationSpans() defaults per_page to 1000 and statsPeriod to "30d", conditionally adds project, resolves the organization region, and requests /organizations/${orgSlug}/agents/conversations/${encodeURIComponent(conversationId)}/ using AgentConversationDetailsSchema.getConversationSpans() paginates for at most MAX_PAGINATION_PAGES, adds params.cursor after each parsed Link header, preserves the title from only the first page, and appends every page’s data.spans.getConversationSpans() reports truncated = !!cursor after the pagination loop; when truncated, it logs Pagination limit reached (${MAX_PAGINATION_PAGES} pages, ${spans.length} spans). Conversation transcript may be incomplete.routes from ../app.js and GLOBAL_FLAGS from ./global-flags.js; it dynamically generates command metadata and exposes common flags and top-level environment variables in help output, including structured JSON metadata intended for AI agents and documentation tooling.CommandInfo, RouteInfo, or { error: string; suggestions?: string[] }, special handling for JSON help, unknown-command recovery, and rewriting raw --help --json arguments into an equivalent help command invocation.ast-grep 0.40.5 search found packages/cli/src/commands/auth/index.ts lines 29–31 defining hideRoute: { default: true }; no other matches were shown.