Dashboard › cli › Distillation
ca0dd9b1-efbe-4950-b809-9265e49f1647["lore_tm_v1_d5z8gS-qQ_DbIeecMelBq_cv3pi8gc83tmeHGg4FYSI","lore_tm_v1_CpfRd3zouw1-5QxE_2BXliLujb7WHPykcA2wD8kOp20","lore_tm_v1_lNMiX26YQyFyedDVve8dzi64iDhGaDZHtdXjskWnAj0","lore_tm_v1_X8RTTyRb6HNI5EroOYOxyzUB1tDV4xS3n4XFwaKuNjU","lore_tm_v1_kC6fy6x8ycQMaErCxHSvHbmV469h04HhMYo5rA6N1EY","lore_tm_v1_nSw67j1vpqJLXO4xVLLk-Fl84HWvN_ZpTfwvRMbENok","lore_tm_v1_iwmhpt46qvRZAk0GQXCF8oDXdEsl17EiHrTDPWgybXU","lore_tm_v1_N1f-dRusxkydlVVU8IkUehp09QZCQfJoHAwkwkZ6rFM","lore_tm_v1_HwGTLLGFVNOJpLrzFx_ds-YfVPDv-kCFKeGHwHskHT4","lore_tm_v1_THVVpwO_067-qa9VsCO9vnBkBuONn-AkjLZGaisPD7A"]
packages/cli/plugins/sentry-cli/skills/sentry-cli/references/agent-conversation.md appeared with status H.sentry alert issues list <org/project> → sentry alert issues list [<org/project>]; sentry alert issues create <target> → sentry alert issues create [<target>]; sentry alert metrics list <target> → sentry alert metrics list [<target>]; sentry project list <org/project> → sentry project list [<org/project>]; sentry project view <org/project> → sentry project view [<org/project>]; and sentry release deploy <org/version> <environment> <name> → sentry release deploy <org/version> <environment> [<name>].pnpm cli help agent-conversation list printed canonical usage sentry agent-conversation list [<org>]; .env.local was absent and execution continued without it.agent-conversation list exposed flags in this order: -n, --limit <value> default "25" and range 1–1000; -q, --query <value>; -t, --period <value> default "7d" with examples "7d", "2026-08-01..2026-09-01", and ">=2026-08-01"; -f, --fresh; -c, --cursor <value>; --json; and --fields <value>.pnpm cli help agent-conversation list --json returned positional metadata positional: "[<org>]" and one structured positional { placeholder: "org", brief: "Organization slug", optional: true }.agent-conversation list included aliases { t: "period", n: "limit", q: "query", f: "fresh", c: "cursor", v: "verbose" }; hidden flags were log-level, verbose, org, and project, while json and fields remained visible.agent-conversation list: 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, in order: 1. conversationId (string, required); 2. title (string | null, optional); 3. flow (array, required); 4. errors (number, required); 5. llmCalls (number, required); 6. toolCalls (number, required); 7. totalTokens (number, required); 8. totalCost (number, required); 9. startTimestamp (number, required); 10. endTimestamp (number, required); 11. traceCount (number, required); 12. traceIds (array, required); 13. firstInput (string | null, required); 14. lastOutput (string | null, required); 15. user (object | null, optional); 16. toolNames (array, required); 17. toolErrors (number, required). The reported array actually contained 17 entries despite the surrounding help text’s field enumeration.packages/cli/test/lib/issue-collapse.property.test.ts contains the property test always collapses filtered and unhandled regardless of optional flags at line 18 and a separate property length equals 2 + number of optional flags enabled at line 111.packages/cli/test/lib/sdk-positionals.test.ts verifies tuple forwarding semantics: all three release-deploy values become ["1.0.0", "production", "Deploy #42"]; omitted trailing optional positionals become ["1.0.0", "production"]; missing middle positionals preserve later slots as ["1.0.0", "", "Deploy #42"]; two snapshot paths remain ["./base", "./head"]; compound "org/version" remains one token ["my-org/1.0.0"]; and commands without positionals receive [].packages/cli/test/lib/introspect.test.ts expects an optional tuple signature of <required> [<optional>], no positional signature as "", and a public positional syntax override of <name>:<kind>....packages/cli/test/lib/help.test.ts checks that printCustomHelp() is nonempty, contains tagline The command-line interface for Sentry, includes sentry, route-map command auth, tuple-positional direct command init, and docs URL cli.sentry.dev; it also verifies the banner appears only when stdout is a TTY and unauthenticated output includes sentry auth.packages/cli/test/lib/help.test.ts requires an Environment Variables: section containing SENTRY_AUTH_TOKEN, SENTRY_FORCE_ENV_TOKEN, SENTRY_ORG, SENTRY_PROJECT, SENTRY_DSN, SENTRY_HOST, SENTRY_LOG_LEVEL, and NO_COLOR; it requires a preceding Flags: section containing --json, --fresh, -f, --verbose, -v, --help, and --version.getPositionalString() implementation in packages/cli/src/lib/introspect.ts:195-215 returns "" without params; tuple parameters become required <placeholder> or optional [<placeholder>], joined by spaces, with fallback arg${i}; array params become <placeholder...> with fallback args.extractPositionals() implementation in packages/cli/src/lib/introspect.ts:227-253 emits tuple metadata with fallback placeholder arg${i}, empty-string brief fallback, and optional: false fallback; an array emits one entry with placeholder ${placeholder ?? "args"}..., empty-string brief fallback, and optional: true.extractFlags() in packages/cli/src/lib/introspect.ts:261-277 retains every raw flag and normalizes brief, kind, default, optional, variadic, and hidden; absent optional defaults to true only for boolean flags, while absent variadic and hidden default to false.buildCommandInfo() in packages/cli/src/lib/introspect.ts:286-310 chooses cmd.__primaryUsage over getPositionalString(cmd.parameters.positional), independently emits structured data through extractPositionals(), uses extractFlags() without visibility filtering, retains aliases, converts cmd.__examples to # ${description}\n${command}, and includes extracted JSON schema fields only when nonempty.packages/cli/src/lib/introspect.ts define non-standard command metadata __jsonSchema, __primaryUsage, and __examples; CommandInfo contains path, brief, optional fullDescription, flags, canonical positional, structured positionals, aliases, examples, and optional jsonFields.