Dashboard › cli › Distillation
4bdb118a-5342-42fe-8ad7-e71396f20dc6["lore_tm_v1_5D1_TPC2A_QIouR6-pH_TuJn3cNG2batijFW3Y0FJuk","lore_tm_v1_xhnxiefAGN60p4kPrhi97WZmbFadDjD9h98skyFL1pA","lore_tm_v1_26tbqVh8PmYEh-3ryhh7L-k9kg5Aq-3hMKllLUeJgIM","lore_tm_v1_rythV1xX0hhNJRHpzESwe5VZmm2sNTEnqT9MrCPIO-c","lore_tm_v1_bfHus6BNH8YpQMHV24bMMSe14qc0dHvaZ46t5OgWur4","lore_tm_v1_eqrCO1Rv_zgY2c2D5jxPg3inWCmI9Ukz8FKUgJE73Sg","lore_tm_v1_dPmCgNGgc7tiaP0wp7vVaOFL5JoNGX2E01WHW2_88vo","lore_tm_v1_lebBRT_sEJxxuTWchnz80BfQd0n280VwInf2TNEg2-8","lore_tm_v1_hzQD0jWY7bU5AICanxTs33y5PYWJfkkh8jWGkrgW_V8","lore_tm_v1_cVMCHAffJwHvxG9r1RL-Ao3xEChcWHO3mUVEM0k-gSo","lore_tm_v1_Sxc_QK7XdHzLiacn2TT9heV8PbyP_XvdlWn-EY-n2Ss","lore_tm_v1_Ok8r-qkdny278-Xkje0cij5sAV2L6AILnV__OAADiI4"]
packages/cli/test/lib/command.test.ts contains buildCommand tests confirming: valid commands and commands with empty parameters build successfully; the first docs.customUsage entry is retained as __primaryUsage for introspection; structured docs.examples are retained as __examples; and numberParser is re-exported from Stricli as a function.customUsage: ["<name>:<kind>..."] and expects (command as unknown as { __primaryUsage?: string }).__primaryUsage to equal <name>:<kind>....Select an organization explicitly and command sentry thing list my-org, expecting the same object in __examples.packages/cli/test/script/generate-skill-markdown.test.ts has a match for the generated heading **Examples:** at line 57.packages/cli/src/lib/formatters/output.ts defines formatSchemaForHelp(fields: SchemaFieldInfo[]): string; it returns an empty string for no fields, otherwise emits the heading JSON fields (use --json --fields to select): followed by lines in the form ${field.name} (${field.type}${optStr})${desc}, adding , optional and β ${field.description} where applicable.packages/cli/src/lib/formatters/output.ts defines formatFooter(text) as \n${plainSafeMuted(text)}\n; writeFooter(stdout, text) writes that formatted footer.apps/cli-docs/src/content/docs/commands/release.md includes sentry release deploy <org/version> <environment> [<name>]; <environment> is a deploy environment such as production, and [<name>] is an optional deploy name whose multi-word values should be quoted, e.g. "Deploy #42".apps/cli-docs/src/content/docs/commands/release.md documents -e, --environment <environment>... as a repeatable, comma-separated environment filter.sentry agent-conversation view <org/conversation-id>, treating the combined target as required.pnpm cli -- agent-conversation view --help passed the extra -- through as an argument rather than displaying command help; execution reached authentication and failed with Error: Not authenticated. Run 'sentry auth login' first. and exit code 10. .env.local was absent.agent-conversation view without its positional argument failed with Expected argument for org/conversation-id and exit code 252. .env.local was absent.packages/cli/src/cli.ts calls run(app, argv, buildContext(process, span)) at line 489; a line-268 comment notes that setup is needed before dispatch because raw arguments go straight to run().sentry agent-conversation --help rendered the child usage as sentry agent-conversation view [--fresh] [--json] [--fields value] <org/conversation-id>, incorrectly presenting the organization-prefixed target as wholly required rather than showing the child commandβs custom optional-org syntax.sentry agent-conversation view correctly rendered sentry agent-conversation view [<org>/]<conversation-id> and explained that the org is optional, auto-detected from project context when omitted, and can be prefixed to the conversation ID to target a specific org.agent-conversation view help listed examples in this order: 1. sentry agent-conversation view conv-123 β full transcript with 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.agent-conversation view help listed alias sentry agent-conversation show; flags -f, --fresh (default false), --json (default false), --fields with dot-notation support, -h, --help, and --; and argument help org/conversation-id [<org>/]<conversation-id> - Org (optional) and conversation ID.