Dashboard › cli › Distillation
11030c75-4e14-4206-b5cb-ec38e9845eb9["lore_tm_v1_c2oYREculJJO4jYcKXnz-KJdvGRUnpWxMi_C3bk4tGE","lore_tm_v1_1U4w0Dwet3lfPyyRXM3keyuulCl9qU184BiLWPbZkuA"]
packages/cli/test/commands/agent-conversation/list.test.ts added a regression test asserting organization-resolution errors use the canonical optional-org command string sentry agent-conversation list [<org>].packages/cli/test/lib/command.test.ts added a test proving buildCommand() retains structured docs.examples in __examples; the fixture preserves { description: "Select an organization explicitly", command: "sentry thing list my-org" }.extractFlags() always returns one FlagInfo per input entry; property tests also require preservation of every flag name and optional: true by default for boolean flags whose optional field is undefined.getPositionalString() always produces angle-bracket placeholders. Required tuple parameters render as <placeholder>, optional tuple parameters render as [<placeholder>], and missing placeholders fall back to <arg0>, <arg1>, etc.getPositionalString() always includes ellipsis; an explicit command placeholder renders as <command...>, while a missing placeholder falls back to <args...>.resolveCommandPath(routeMap, []) always returns null. Property tests additionally require any resolved command path to begin with sentry .packages/cli/test/lib/introspect.test.ts added a test that buildCommandInfo() prefers structured command examples from cmd.__examples over legacy document examples. Structured examples are converted to strings in the form # <description>\n<command>; the stale legacy example sentry thing list stale-org is excluded.packages/cli/test/script/generate-skill-markdown.test.ts replaced generated-file assertions for agent-conversation docs with command-metadata introspection tests. It verifies listCommand.__primaryUsage is undefined, list.positional is [<org>], structured list examples include # Explicit organization\nsentry agent-conversation list my-org, and view.positional is [<org>/]<conversation-id>.formatCommandExamples(view.examples) is tested to emit **Examples:**, a single bash code fence, and the 3 view examples separated by blank lines, with each description represented as a shell comment immediately above its command.: — no space-separated form. Generated project docs must exclude sentry project create "My New App":, sentry project create my-new-app javascript-nextjs, and sentry project create my-org/my-new-app javascript-nextjs; they must include sentry project create web:javascript api:python-django worker:node and sentry project create my-new-app:javascript-nextjs.extractAllRoutes() never to include entries that are only hidden, and its returned route count to be less than or equal to the total number of visible entries.