Dashboard › cli › Distillation
76cb8552-2e9a-4517-9156-b6f3150deee9["lore_tm_v1_Ebv-DXpqaQdzYfs1FHgJG98RUQljbst_LrSVt6cYWf4","lore_tm_v1_9hpdY1Pdb2iH7ooVOu2rxVX7CcBrmF5GGrDZGqI2Fc0","lore_tm_v1_Jf7Ywd_da_CrXcyUW2zKFem0cpfm5FRocOvV5v7-ZBA","lore_tm_v1_13A5Yopjg8qHppiAdTopeQc5zmWwQp4wOgPBj0Tf1xQ","lore_tm_v1_fyNVmvZypzMNHPoBNiuGkJGbuiPJS24AZAc4jJzGE4Y","lore_tm_v1_LWlPOMz5xn7mEeAqJJo1kI5SFKi_4gX3-z5AfSMnX2Y","lore_tm_v1_AC9OIGPWsMlMzCKWhibFEIrKuqMsummIo_9yF2eSENA","lore_tm_v1_VNEzclAeMsujaxH2ZQCLOSBbsNNDrPYjc1q6cIBWJO4","lore_tm_v1_AxR-8ukxJbp1709UkOyFJRBm01JZNji8V-knFtQrEfQ","lore_tm_v1_SGo574yw_OxaTwwKSTayo0My7JvU_LEFv-rtQlsQLt4","lore_tm_v1_V7it4qTwH3qamZ6VTdWFvLfHmjc7VQOXz-nzi59VazM","lore_tm_v1_GlpWJ8pB7Q6gKXL9Ichxhhm-_fF5rg8XuXSokHVB1cM","lore_tm_v1_LX6vWCjuFu0ceHvmOVuoGupxnldEyAjq5PA3GCTLMSI","lore_tm_v1_3do7-13XquwjN4qLq90q5K-z-9jF0T8zYlG2hqDIxto"]
Date: Sep 8, 2026
apps/cli-docs/public/.well-known/skills/sentry-cli/SKILL.md → ../../../../../../packages/cli/plugins/sentry-cli/skills/sentry-cli/SKILL.md, and apps/cli-docs/public/.well-known/skills/sentry-cli/references → ../../../../../../packages/cli/plugins/sentry-cli/skills/sentry-cli/references.packages/cli/plugins/README.md states that packages/cli/plugins/sentry-cli/skills/sentry-cli/SKILL.md is auto-generated from CLI command definitions, must not be edited manually, is regenerated with pnpm run generate:docs, and is auto-committed by CI when stale.packages/cli/test/script/generate-skill-markdown.test.ts cover: extractCommandPathFromHeading() extracting command paths while ignoring descriptive headings; matchExampleToCommand() preserving optional organization syntax for agent-conversation headings; keeping organization and conversation ID in one positional; associating project-create examples; mapping bare command-group examples to a default subcommand; preferring longer command paths over shorter prefixes; and retaining valid generated project-create examples.sentry project create arguments must always be attached with : and must never use a space-separated form. Valid examples include web:javascript api:python-django worker:node and my-new-app:javascript-nextjs; invalid forms include my-new-app javascript-nextjs and my-org/my-new-app javascript-nextjs.src/commands/agent-conversation/list.ts(101,5): error TS2353: customUsage is not a known property of the current docs type, which only accepts { readonly brief: string; readonly fullDescription?: string | undefined; }.src/index.ts(26,34) and src/index.ts(34,32): error TS2307, because ./sdk.generated.js or its corresponding type declarations could not be found./; [<org>/]<conversation-id> therefore has at most one slash, with text before it representing the organization and text after it representing the conversation ID, while a slashless value is the conversation ID with organization auto-detection.7cf6483be5ee458c66d3ab2c40362b63b0f5ed8f (feat: add sentry conversation command group for inspecting AI agent transcripts (#1020)) introduced sentry conversation list and sentry conversation view [<org>/]<conversation-id>. It chose shared buildListCommand/buildCommand, cursor-stack pagination, resolveOrg, markdown/plain rendering, and --json/--fields machinery for consistency; chose a single gh-style [<org>/]<conversation-id> positional; and used apiRequestToRegion with local Zod schemas because /ai-conversations/ was absent from @sentry/api 0.253.0, with a plan to replace local schemas once generated SDK types became available.7cf6483be5ee458c66d3ab2c40362b63b0f5ed8f intended transcript reconstruction from raw gen_ai.* span attributes to match sentry-mcp’s get-ai-conversation-details, structured JSON envelopes for agent consumption, and narrow-terminal behavior that drops low-priority list columns instead of truncating useful columns.7cf6483be5ee458c66d3ab2c40362b63b0f5ed8f incorrectly showed space-separated view examples such as sentry conversation view my-org conv-123, despite the implementation’s declared single-positional [<org>/]<conversation-id> design; PR #1558 corrects this historical mismatch.2a62159fe.