Dashboard › cli › Distillation
af8eb8b2-d03f-467d-b4a9-bd6d354a6e51["lore_tm_v1_53ZikFPEuDDX64MAJyuMnilXG07y_urcP8C2r10q3A4","lore_tm_v1_sb4x4tPxiZMUzRbaWEb18wsG29cNE4mfuXr_WBY04vY","lore_tm_v1_Xih3TPWXPRh0PljQM1N45CQR7OwF7TGyp1WflOJRQL8","lore_tm_v1_2d7RaJ7sMAfvdPucbyP9BXcZlj-OBxXgcSfzQG2SWdQ","lore_tm_v1_93DWFILWN0TmYI1U2RV3yBLr4Euc3bhMALef2Ewc6fA"]
src/bin.ts agent-conversation list --help from /home/byk/Code/getsentry/cli-pr-1558/packages/cli displayed canonical usage sentry agent-conversation list [--limit value] [--query value] [--period value] [--fresh] [--cursor value] [--json] [--fields value] [<org>]; the organization is auto-detected when omitted.agent-conversation list --help displayed 5 examples in order: 1. sentry agent-conversation list # List recent agent conversations, 2. sentry agent-conversation list my-org # Explicit organization, 3. sentry agent-conversation list --limit 50 --period 24h # Show more, last 24 hours, 4. sentry agent-conversation list -q "has:errors" # Filter conversations, 5. sentry agent-conversation list my-org -c next # Paginate through results.agent-conversation list --help documented alias sentry agent-conversation; flags -n [--limit] with range 1-1000 and default 25, -q [--query], -t [--period] with examples "7d", "2026-08-01..2026-09-01", ">=2026-08-01" and default 7d, -f [--fresh] default false, -c [--cursor] accepting "next", "prev", "first", or a raw cursor, --json default false, --fields with dot notation, -h --help, and --.agent-conversation list --help listed JSON-selectable fields in order: conversationId, title, flow, errors, llmCalls, toolCalls, totalTokens, totalCost, startTimestamp, endTimestamp, traceCount, traceIds, firstInput, lastOutput, user, toolNames, toolErrors; [org] is described as an organization slug.src/bin.ts agent-conversation view --help displayed canonical usage sentry agent-conversation view [<org>/]<conversation-id> and alias sentry agent-conversation show; the org is optional and auto-detected from project context, while an org slug can prefix the conversation ID.agent-conversation view --help displayed 3 examples in order: 1. sentry agent-conversation view conv-123 # View full transcript (organization auto-detected), 2. sentry agent-conversation view my-org/conv-123 # Explicit organization, 3. sentry agent-conversation view my-org/conv-123 --json # JSON output. It documented -f [--fresh] default false, --json default false, --fields with dot notation, -h --help, and --; argument org/conversation-id renders as [<org>/]<conversation-id> - Org (optional) and conversation ID.packages/cli/script/check-fragments.ts validates documentation fragments against the CLI route tree: every non-skipped route plus index.md must have a fragment; every fragment must correspond to a route; fragments must not contain YAML frontmatter or <!-- GENERATED:END -->; required top-level fragments must exist; and fragment content is checked for subcommand coverage, producing warnings normally and errors with --strict.packages/cli/script/check-fragments.ts ensures src/generated/skill-content.ts exists before importing ../src/app.js; if absent, it creates src/generated recursively and writes export const SKILL_FILES: [string, string][] = [];\n. Fragment paths derive from DOCS_FRAGMENTS; command fragments are under ${DOCS_FRAGMENTS}/commands; SKIP_ROUTES contains "help"; and REQUIRED_TOP_LEVEL_FRAGMENTS contains "configuration".packages/cli/script/check-fragments.ts, fragmentMentionsSubcommand() recognizes coverage through: 1. the full command.path anywhere in content, 2. for a default command, a bare sentry <route> matched with a boundary-aware regex, or 3. a level 1–4 Markdown heading containing the leaf subcommand outside fenced code blocks. FENCED_CODE_BLOCK_RE supports backtick and tilde fences, and matching is case-insensitive.packages/cli/script/check-fragments.ts, getMultiCommandRoutes() skips standalone routes only when they have at most 1 command and that command path equals sentry ${route.name}. findDefaultInRouteMap() calls target.getDefaultCommand() and identifies the default subcommand by object-reference equality against target.getAllEntries().6 passed (6) test files and 150 passed (150) tests in 9.65s; reported timings were transform 11.30s, setup 320ms, import 17.83s, tests 5.83s, and environment 1ms.v4.1.10 emitted a deprecation warning that test.poolOptions was removed in Vitest 4 and its former settings are now top-level options, referencing https://vitest.dev/guide/migration#pool-rework.--org maps to SENTRY_ORG and --project maps to SENTRY_PROJECT, including observed values my-org, new, new-org, sentry, flag-org for org and my-proj, my-project, cli, new-proj, flag-proj for project.