Skip to content

Chronicle cost tips: parity with CLI /chronicle cost-tips#327175

Draft
cwebster-99 wants to merge 2 commits into
mainfrom
cwebster-99-chronicle-cost-tips-parity
Draft

Chronicle cost tips: parity with CLI /chronicle cost-tips#327175
cwebster-99 wants to merge 2 commits into
mainfrom
cwebster-99-chronicle-cost-tips-parity

Conversation

@cwebster-99

Copy link
Copy Markdown
Member

Adapts the highest-value recommendation-quality improvements recently made to the Copilot CLI /chronicle cost-tips into the VS Code chronicle skill. Preserves existing VS Code Chat scoping, cloud/local backend gating, slash-command behavior, security constraints, and telemetry attribution. Does not touch the sessionStoreSql API and does not introduce a deterministic profile API in this change — that's a separate follow-up.

What changes

extensions/copilot/assets/prompts/skills/chronicle/SKILL.md — replaces the freeform "Step 3: Provide tips" section under ### Cost Tips with a fixed report contract:

  1. ## Top cost drivers — required, must appear before any recommendations. 3-5 material patterns, most-impactful first, each with rough numbers and an evidence class:

    • exact — grounded in cloud events fields usage_input_tokens / usage_output_tokens / usage_model on assistant.usage rows.
    • proxy — inferred from local turns, checkpoints, session_files, tool_requests, or message lengths only. No real token numbers.
    • mixed — labeled per-driver when a report combines both.

    Explicit token or cost claims require exact evidence. Proxies stay described as proxies — turn counts, checkpoint gaps, and message lengths never get translated to tokens or dollars.

  2. ## Recommendationsat most 3, ordered by expected impact. Each recommendation:

    • Ties back explicitly to a named driver above (no recommendation without a matching material driver).
    • Is directly actionable in VS Code Chat: model picker, /compact (or a fresh chat when compaction isn't available), narrower task framing / smaller working sets, subagent delegation, reusable .github/copilot-instructions.md / .github/skills/ / .github/agents/ entries — only when a repeated pattern justifies it.
    • Ends with two separate lines: Expected impact: (quantify only when evidence is exact) and Confidence: (high / medium / low).
    • Does not copy Copilot CLI–only commands or Coding-Agent–only workflows.
  3. ## Data caveats — required disclosure so the user can weigh the report: backend/source (cloud DuckDB / local SQLite / mixed), time window, in-scope agent_name values + session count, and fallback/precision limits (e.g. "no per-event token data on local", "cloud store empty in window", "percentages omitted — grand total not computable").

Additional guardrails baked into the prompt

  • Percentages are only allowed against a real period grand total (sum of in-scope usage_input_tokens + usage_output_tokens). Never against a truncated top-N sum. If the grand total can't be computed, the percentage is dropped and called out in caveats.
  • Context-growth findings ("input tokens keep climbing turn-over-turn") gated at >=50% late-vs-early input-token growth, inclusive. Smaller growth is explicitly called noise and must not be listed.
  • Attachments are treated as neutral work artifacts. Attachment presence alone is not waste — only concrete evidence of the same attachment / file being repeatedly ingested when it did not need to be counts as a driver.

Sparse / insufficient data

Hardened so the model doesn't invent findings when the store is thin:

  • Still fills out ## Data caveats.
  • Skips ## Top cost drivers or leaves it as "No material drivers observed in this window."
  • Offers no more than 2-3 clearly labeled General habit — not observed in your data: items, anchored to VS Code chat features (model picker for routine work, /compact or fresh chat on long sessions, reusable instructions when a workflow starts to repeat). No arbitrary hard thresholds.
  • For local-only users, still closes with the chat.sessionSync.enabled upsell.
  • Explicit "Never fabricate specific sessions, files, models, token counts, or percentages" clause.

Preserved behavior

  • Default VS Code Chat scoping ('VS Code Chat' on cloud, 'GitHub Copilot Chat' on local, with the mix-check offer to widen to Copilot CLI / Copilot Coding Agent / subagents on request).
  • Cloud vs local backend gating (local SQLite has no events table; token-level analysis requires cloud sync).
  • chat.sessionSync.enabled upsell for local users.
  • Slash-command routing (/chronicle cost-tips) and existing Step 1 (Investigate) / Step 2 (Map to features) guidance.
  • sessionStoreSql tool API is untouched. No deterministic profile helper in this change — deferred by design.

Tests

extensions/copilot/src/extension/tools/node/test/sessionStoreSqlTool.spec.ts — the existing 'chronicle SKILL.md Cost Tips section carries required anchors' test is extended with anchors for the new contract markers so the shape stays pinned without overfitting the whole prose:

  • Section anchors: ## Top cost drivers, ## Recommendations, ## Data caveats
  • Recommendation shape: at most 3, Expected impact:, Confidence:
  • Evidence classes: **exact**, **proxy**, **mixed**
  • Guardrails: period grand total, >=50%, neutral work artifacts, General habit — not observed in your data:, Never fabricate

Validation

  • Manual full-file scan against the extended assertion list — all 24 required anchors present in the updated SKILL.md.
  • Could not execute the vitest suite or the repo precommit hygiene hook in the authoring environment: the private npm feed (packagefeedproxy.microsoft.io) is unreachable from this machine so root node_modules cannot be populated (event-stream missing when node build/hygiene.ts runs). Structurally the diff is hygiene-safe by construction — build/filters.ts excludes extensions/copilot/** from indentationFilter and excludes **/*.md from copyrightFilter, and neither file's copyright header, tab indentation, or existing code style was modified. CI on this PR should be the real signal.

Follow-ups (not in this PR)

  • Apply the same evidence-class / expected-impact / confidence discipline to the ### Tips (non-cost) workflow in the chronicle skill.
  • Introduce a deterministic profile helper on sessionStoreSql (top drivers, grand-total computation, sparse-data flag) that the prompt can consume instead of asking the model to hand-roll aggregates every time.
  • If the CLI adds further guardrails after this snapshot (e.g., stricter model-mix definitions, explicit anti-patterns for archiving-style tips), fold them in as a subsequent commit.

Restructure the Cost Tips workflow in the chronicle skill so the report
is grounded in observed evidence rather than a generic checklist:

- Require a visible `## Top cost drivers` section before any
  recommendations, listing 3-5 material patterns most-impactful first.
- Classify each driver's evidence as exact (cloud usage fields),
  proxy (local turns/checkpoints/files/message lengths), or mixed.
  Only exact evidence may back a specific token or cost claim.
- Cap `## Recommendations` at 3, each tied to a named driver, each
  directly actionable in VS Code Chat (model picker, /compact, fresh
  chat, narrower framing, subagent delegation, reusable instructions
  or custom skills/agents only when the pattern justifies it). No
  CLI- or Coding-Agent-only commands.
- Split `Expected impact` from `Confidence` (high/medium/low).
- Add a required `## Data caveats` disclosure covering
  backend/source, time window, in-scope agent_name values and session
  count, and fallback/precision limits.
- Gate context-growth findings at an inclusive >=50% late-vs-early
  input-token increase; treat smaller growth as noise.
- Treat attachments as neutral work artifacts unless there is concrete
  evidence of avoidable repeated ingestion.
- Only include percentages when computable against a real period
  grand total (never against a truncated top-N sum); otherwise drop.
- Sparse-data behavior: still fill out Data caveats, skip Top cost
  drivers or mark it empty, and offer no more than 2-3 clearly
  labeled general habits ("General habit - not observed in your
  data:"). Do not invent hard thresholds.

Extend sessionStoreSqlTool.spec.ts anchors for the new prompt
contract so the key requirements stay pinned without overfitting the
full prose.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Copilot-Session: fb34298e-e0b6-4e13-bd5e-17621261dfdd
Copilot AI review requested due to automatic review settings July 23, 2026 18:09

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a structured, evidence-based cost-tips report contract to the Chronicle skill.

Changes:

  • Defines cost-driver, recommendation, and caveat sections.
  • Adds evidence classifications and anti-fabrication guardrails.
  • Extends tests with required prompt anchors.
Show a summary per file
File Description
extensions/copilot/assets/prompts/skills/chronicle/SKILL.md Defines the new cost-tips report contract.
extensions/copilot/src/extension/tools/node/test/sessionStoreSqlTool.spec.ts Verifies required contract markers remain present.

Review details

  • Files reviewed: 2/2 changed files
  • Comments generated: 4
  • Review effort level: Medium


*1. `## Top cost drivers` — MUST appear before any recommendations.*

List the top 3-5 material patterns you actually observed, most impactful first. For each driver:

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in 2ae0bff — dropped the "3-5" minimum. Section now says "up to 5, fewer is fine (do not pad the list with non-material findings just to reach a count)".

- Classify the evidence as one of **exact**, **proxy**, or **mixed** and label it inline:
- **exact** — grounded in cloud `events` fields `usage_input_tokens`, `usage_output_tokens`, `usage_model` (from `assistant.usage` rows).
- **proxy** — inferred from local turns, checkpoints, session_files, tool_requests, or message lengths only. No real token numbers.
- **mixed** — a report combining exact and proxy drivers. Label each driver individually.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in 2ae0bff — redefined mixed per-driver (a single driver backed by both exact usage rows and reinforcing proxy signals for the same pattern), and explicitly noted that a report containing one exact driver and one proxy driver is not itself "mixed" — each driver is labeled individually.


- Only include percentages when you can compute them against a real **period grand total** (e.g. sum of `usage_input_tokens + usage_output_tokens` across every in-scope VS Code Chat `assistant.usage` event in the window). Never compute a share against a truncated top-N sum. If the grand total cannot be established, drop the percentage rather than guessing.
- A context-growth driver ("input tokens keep climbing turn-over-turn") is only material when the late-window vs early-window input tokens grow by **>=50%** (inclusive). Anything smaller is noise; do not call it out.
- Treat attachments (`attachments` rows, file references, images) as neutral work artifacts. Do not label attachment presence itself as waste. Only flag them when you have concrete evidence of the same attachment / same file being repeatedly ingested across turns or sessions when it did not need to be.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch — fixed in 2ae0bff. Removed the attachments reference entirely and reworded in terms of tables that actually exist: "repeated session_files rows for the same path within one session, or repeated large user_message / user_content payloads containing the same content across turns".

Comment on lines +232 to +233
- Skip `## Top cost drivers` or leave it as "No material drivers observed in this window."
- In place of grounded recommendations, offer **no more than 2-3** clearly labeled **general habits** (prefix each with "General habit — not observed in your data:"). Keep them anchored to VS Code chat features: model picker for routine work, `/compact` or a fresh chat on long sessions, reusable instructions when a workflow starts to repeat. Do not use arbitrary hard thresholds (turn counts, token counts) that the data cannot support.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in 2ae0bff — sparse path now honors the fixed contract: ## Top cost drivers header stays and is filled with the literal placeholder "No material drivers observed in this window."; the general habits are explicitly identified as "the only recommendations allowed to appear without a matching driver, and only under this sparse-data path" so the sparse-data exception is one non-contradictory instruction set.

Tighten self-consistency of the Cost Tips contract based on review:

- Drop the "3-5 drivers" minimum. Cap at 5 with an explicit "fewer
  is fine — do not pad" so the Top cost drivers section cannot force
  the model to invent findings when only 1-2 material patterns exist.
- Redefine `mixed` per-driver (a single driver backed by both exact
  usage rows and reinforcing proxy signals for the same pattern),
  not report-wide. Clarify that a report containing one exact driver
  and one proxy driver is not itself "mixed" — each driver is
  labeled individually.
- Remove the `attachments` table reference from the neutrality
  clause. The session-store schema exposes only sessions, turns,
  session_files, session_refs, checkpoints, events, and tool_requests;
  the CLI-style "attachments rows" phrasing risked driving the model
  to a guaranteed-invalid query. Reword in terms of session_files
  rows and repeated large user_message / user_content payloads.
- Reconcile the sparse-data path with the fixed three-section
  contract. All section headers stay mandatory: Top cost drivers is
  emitted with a literal "No material drivers observed in this
  window." placeholder, and the general habits are explicitly called
  out as the sole exception to the "no recommendation without a
  named driver" rule so the model has one non-contradictory
  instruction set.

Anchors from sessionStoreSqlTool.spec.ts remain satisfied.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Copilot-Session: fb34298e-e0b6-4e13-bd5e-17621261dfdd
@github-actions

Copy link
Copy Markdown
Contributor

Screenshot Changes

Base: 90c3ee4f Current: 91156873

1 insignificant change(s) omitted (≤20 px, Δ≤2). See CI logs for details.

Added (463)

chat/chatToolRiskBadge/GreenInContext/Light

current

chat/chatToolRiskBadge/OrangeInContext/Dark

current

chat/chatToolRiskBadge/OrangeInContext/Light

current

chat/chatToolRiskBadge/RedInContext/Dark

current

chat/chatToolRiskBadge/RedInContext/Light

current

chat/chatToolRiskBadge/GreenElicitationInContext/Dark

current

chat/chatToolRiskBadge/GreenElicitationInContext/Light

current

chat/chatToolRiskBadge/OrangeElicitationInContext/Dark

current

chat/chatToolRiskBadge/OrangeElicitationInContext/Light

current

chat/chatToolRiskBadge/RedElicitationInContext/Dark

current

chat/chatToolRiskBadge/RedElicitationInContext/Light

current

chat/chatToolRiskBadge/BadgeOffInContext/Dark

current

chat/chatToolRiskBadge/BadgeOffInContext/Light

current

chat/chatToolRiskBadge/BadgeOffWithDisclaimerInContext/Dark

current

chat/chatToolRiskBadge/BadgeOffWithDisclaimerInContext/Light

current

chat/chatToolRiskBadge/BadgeOffUnsandboxedInContext/Dark

current

chat/chatToolRiskBadge/BadgeOffUnsandboxedInContext/Light

current

chat/chatToolRiskBadge/BadgeOffUnsandboxedWithDisclaimerInContext/Dark

current

chat/chatToolRiskBadge/BadgeOffUnsandboxedWithDisclaimerInContext/Light

current

chat/chatToolRiskBadge/HoverPreviewNoDetails/Dark

current

chat/chatToolRiskBadge/HoverPreviewNoDetails/Light

current

chat/chatToolRiskBadge/HoverPreviewDisclaimer/Dark

current

chat/chatToolRiskBadge/HoverPreviewDisclaimer/Light

current

chat/chatToolRiskBadge/HoverPreviewUnsandboxed/Dark

current

chat/chatToolRiskBadge/HoverPreviewUnsandboxed/Light

current

chat/chatToolRiskBadge/HoverPreviewUnsandboxedWithDisclaimer/Dark

current

chat/chatToolRiskBadge/HoverPreviewUnsandboxedWithDisclaimer/Light

current

chat/chatTurnPills/part/ChangesOnly_SingleFile/Dark

current

chat/chatTurnPills/part/ChangesOnly_SingleFile/Light

current

chat/chatTurnPills/part/ChangesOnly_MultipleFiles/Dark

current

chat/chatTurnPills/part/ChangesOnly_MultipleFiles/Light

current

chat/chatTurnPills/part/ChangesOnly_Expanded/Dark

current

chat/chatTurnPills/part/ChangesOnly_Expanded/Light

current

chat/chatTurnPills/part/ChangesAndPreview_Markdown/Dark

current

chat/chatTurnPills/part/ChangesAndPreview_Markdown/Light

current

chat/chatTurnPills/part/ChangesAndPreview_Expanded/Dark

current

chat/chatTurnPills/part/ChangesAndPreview_Expanded/Light

current

chat/chatTurnPills/part/ChangesAndPreview_MultiplePreviewable/Dark

current

chat/chatTurnPills/part/ChangesAndPreview_MultiplePreviewable/Light

current

chat/chatTurnPills/part/LegacyPreviewOptionEnablesAll/Dark

current

chat/chatTurnPills/part/LegacyPreviewOptionEnablesAll/Light

current

chat/chatTurnPills/part/NoChanges_Hidden/Dark

current

chat/chatTurnPills/part/NoChanges_Hidden/Light

current

chat/chatTurnPills/inChat/Changes/Dark

current

chat/chatTurnPills/inChat/Changes/Light

current

chat/chatTurnPills/inChat/ChangesAndPreview/Dark

current

chat/chatTurnPills/inChat/ChangesAndPreview/Light

current

chat/widget/chatWidget/SimpleQA/Dark

current

chat/widget/chatWidget/SimpleQA/Light

current

chat/widget/chatWidget/PendingToolApproval/Dark

current

chat/widget/chatWidget/PendingToolApproval/Light

current

chat/widget/chatWidget/CodeBlockInList/Dark

current

chat/widget/chatWidget/CodeBlockInList/Light

current

chat/widget/chatWidget/bugs/issue-309796-missing-backslash/Dark

current

chat/widget/chatWidget/bugs/issue-309796-missing-backslash/Light

current

chat/widget/chatWidget/MultiTurn/Dark

current

chat/widget/chatWidget/MultiTurn/Light

current

chat/widget/chatWidget/LastResponseContentHover/Dark

current

chat/widget/chatWidget/LastResponseContentHover/Light

current

chat/widget/chatWidget/LastResponseReservedSpaceHover/Dark

current

chat/widget/chatWidget/LastResponseReservedSpaceHover/Light

current

chat/widget/chatWidget/ResponseActionKeyboardFocus/Dark

current

chat/widget/chatWidget/ResponseActionKeyboardFocus/Light

current

chat/widget/chatWidget/RequestTimestampKeyboardFocus/Dark

current

chat/widget/chatWidget/RequestTimestampKeyboardFocus/Light

current

chat/promptFilePickers/PromptFiles/Dark

current

chat/promptFilePickers/PromptFiles/Light

current

chat/promptFilePickers/InstructionFilesWithAgentInstructions/Dark

current

chat/promptFilePickers/InstructionFilesWithAgentInstructions/Light

current

chat/aiCustomizations/aiCustomizationListWidget/InstructionsTabWithItems/Dark

current

chat/aiCustomizations/aiCustomizationListWidget/InstructionsTabWithItems/Light

current

chat/aiCustomizations/aiCustomizationListWidget/InstructionsTabEmpty/Dark

current

chat/aiCustomizations/aiCustomizationListWidget/InstructionsTabEmpty/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/WelcomePage/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/WelcomePage/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/LocalHarness/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/LocalHarness/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/AgentHostPromptMigration/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/AgentHostPromptMigration/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/Sessions/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/Sessions/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/SessionsSkillsTab/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/SessionsSkillsTab/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpServersTab/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpServersTab/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpServersTabActiveSession/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpServersTabActiveSession/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/AgentsTab/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/AgentsTab/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/SkillsTab/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/SkillsTab/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/InstructionsTab/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/InstructionsTab/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/HooksTab/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/HooksTab/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/PromptsTab/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/PromptsTab/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/PromptMigration/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/PromptMigration/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginsTab/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginsTab/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpBrowseMode/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpBrowseMode/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginBrowseMode/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginBrowseMode/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpDisabledByUser/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpDisabledByUser/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpDisabledByPolicy/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpDisabledByPolicy/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginsDisabledByUser/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginsDisabledByUser/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginsDisabledByPolicy/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginsDisabledByPolicy/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/PromptsTabScrolled/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/PromptsTabScrolled/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpServersTabScrolled/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpServersTabScrolled/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginsTabScrolled/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginsTabScrolled/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpServersTabNarrow/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpServersTabNarrow/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/AgentsTabNarrow/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/AgentsTabNarrow/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/AgentsItemPreview/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/AgentsItemPreview/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/AgentsItemRaw/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/AgentsItemRaw/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/BuiltinSkillItemPreview/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/BuiltinSkillItemPreview/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/BuiltinSkillItemRaw/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/BuiltinSkillItemRaw/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpServerDetail/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpServerDetail/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpServerDetailNarrow/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/McpServerDetailNarrow/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginDetail/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginDetail/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginDetailNarrow/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/PluginDetailNarrow/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/EmbeddedMcpDetailWorkspace/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/EmbeddedMcpDetailWorkspace/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/EmbeddedMcpDetailUser/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/EmbeddedMcpDetailUser/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/EmbeddedMcpDetailEmpty/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/EmbeddedMcpDetailEmpty/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/EmbeddedPluginDetailInstalled/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/EmbeddedPluginDetailInstalled/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/EmbeddedPluginDetailMarketplace/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/EmbeddedPluginDetailMarketplace/Light

current

chat/aiCustomizations/aiCustomizationManagementEditor/EmbeddedPluginDetailEmpty/Dark

current

chat/aiCustomizations/aiCustomizationManagementEditor/EmbeddedPluginDetailEmpty/Light

current

chat/aiCustomizations/aiCustomizationWelcomePages/WelcomePage/Dark

current

chat/aiCustomizations/aiCustomizationWelcomePages/WelcomePage/Light

current

baseUI/Buttons/Dark

current

baseUI/Buttons/Light

current

baseUI/ButtonBar/Dark

current

baseUI/ButtonBar/Light

current

baseUI/Toggles/Dark

current

baseUI/Toggles/Light

current

baseUI/InputBoxes/Dark

current

baseUI/InputBoxes/Light

current

baseUI/CountBadges/Dark

current

baseUI/CountBadges/Light

current

baseUI/ActionBar/Dark

current

baseUI/ActionBar/Light

current

baseUI/ProgressBars/Dark

current

baseUI/ProgressBars/Light

current

baseUI/HighlightedLabels/Dark

current

baseUI/HighlightedLabels/Light

current

editor/codeActionList/SimpleQuickFixes/Dark

current

editor/codeActionList/SimpleQuickFixes/Light

current

editor/codeEditor/CodeEditor/Dark

current

editor/codeEditor/CodeEditor/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/Default/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/Default/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/Default/DarkHighContrast

current

editor/editorTabBar/editorTabBar/ModernUIOff/ShowTabsSingle/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/ShowTabsSingle/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/ShowTabsNone/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/ShowTabsNone/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedTabsOnSeparateRowAllPinned/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedTabsOnSeparateRowAllPinned/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedTabsOnSeparateRowAllUnpinned/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedTabsOnSeparateRowAllUnpinned/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedTabsOnSeparateRowMixed/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedTabsOnSeparateRowMixed/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedTabsOnSeparateRowMixed/DarkHighContrast

current

editor/editorTabBar/editorTabBar/ModernUIOff/BreadcrumbsFilePathLast/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/BreadcrumbsFilePathLast/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/BreadcrumbsIconsOff/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/BreadcrumbsIconsOff/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/TabSizingShrink/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/TabSizingShrink/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/TabSizingFixed/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/TabSizingFixed/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/TabHeightCompact/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/TabHeightCompact/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/WrapTabs/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/WrapTabs/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/TabActionLocationLeft/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/TabActionLocationLeft/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/TabActionCloseHidden/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/TabActionCloseHidden/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/TabActionUnpinHidden/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/TabActionUnpinHidden/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/ShowTabIndex/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/ShowTabIndex/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/HighlightModifiedTabs/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/HighlightModifiedTabs/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/LabelFormatShort/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/LabelFormatShort/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/LabelFormatMedium/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/LabelFormatMedium/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/LabelFormatLong/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/LabelFormatLong/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/ShowIconsOff/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/ShowIconsOff/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/DecorationsOff/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/DecorationsOff/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedTabSizingCompact/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedTabSizingCompact/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedTabSizingShrink/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedTabSizingShrink/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/TitleScrollbarLarge/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/TitleScrollbarLarge/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/TitleScrollbarVisible/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/TitleScrollbarVisible/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/EditorActionsDefault/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/EditorActionsDefault/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/EditorActionsTitleBar/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/EditorActionsTitleBar/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/EditorActionsHidden/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/EditorActionsHidden/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/AlwaysShowEditorActionsActiveGroup/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/AlwaysShowEditorActionsActiveGroup/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/AlwaysShowEditorActionsInactiveGroup/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/AlwaysShowEditorActionsInactiveGroup/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/ActiveGroup/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/ActiveGroup/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/InactiveGroup/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/InactiveGroup/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/InactiveGroup/DarkHighContrast

current

editor/editorTabBar/editorTabBar/ModernUIOff/MultiSelect/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/MultiSelect/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/MultiSelect/DarkHighContrast

current

editor/editorTabBar/editorTabBar/ModernUIOff/InactiveGroupDirty/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/InactiveGroupDirty/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/LongLabelsShrink/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/LongLabelsShrink/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/StickyCompactNoIcons/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/StickyCompactNoIcons/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/SingleTabDirty/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/SingleTabDirty/Light

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedSeparateRowCompact/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOff/PinnedSeparateRowCompact/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/Default/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/Default/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/Default/DarkHighContrast

current

editor/editorTabBar/editorTabBar/ModernUIOn/ShowTabsSingle/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/ShowTabsSingle/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/ShowTabsNone/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/ShowTabsNone/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedTabsOnSeparateRowAllPinned/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedTabsOnSeparateRowAllPinned/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedTabsOnSeparateRowAllUnpinned/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedTabsOnSeparateRowAllUnpinned/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedTabsOnSeparateRowMixed/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedTabsOnSeparateRowMixed/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedTabsOnSeparateRowMixed/DarkHighContrast

current

editor/editorTabBar/editorTabBar/ModernUIOn/BreadcrumbsFilePathLast/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/BreadcrumbsFilePathLast/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/BreadcrumbsIconsOff/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/BreadcrumbsIconsOff/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/TabSizingShrink/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/TabSizingShrink/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/TabSizingFixed/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/TabSizingFixed/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/TabHeightCompact/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/TabHeightCompact/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/WrapTabs/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/WrapTabs/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/TabActionLocationLeft/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/TabActionLocationLeft/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/TabActionCloseHidden/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/TabActionCloseHidden/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/TabActionUnpinHidden/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/TabActionUnpinHidden/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/ShowTabIndex/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/ShowTabIndex/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/HighlightModifiedTabs/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/HighlightModifiedTabs/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/LabelFormatShort/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/LabelFormatShort/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/LabelFormatMedium/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/LabelFormatMedium/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/LabelFormatLong/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/LabelFormatLong/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/ShowIconsOff/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/ShowIconsOff/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/DecorationsOff/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/DecorationsOff/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedTabSizingCompact/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedTabSizingCompact/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedTabSizingShrink/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedTabSizingShrink/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/TitleScrollbarLarge/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/TitleScrollbarLarge/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/TitleScrollbarVisible/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/TitleScrollbarVisible/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/EditorActionsDefault/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/EditorActionsDefault/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/EditorActionsTitleBar/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/EditorActionsTitleBar/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/EditorActionsHidden/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/EditorActionsHidden/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/AlwaysShowEditorActionsActiveGroup/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/AlwaysShowEditorActionsActiveGroup/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/AlwaysShowEditorActionsInactiveGroup/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/AlwaysShowEditorActionsInactiveGroup/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/ActiveGroup/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/ActiveGroup/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/InactiveGroup/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/InactiveGroup/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/InactiveGroup/DarkHighContrast

current

editor/editorTabBar/editorTabBar/ModernUIOn/MultiSelect/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/MultiSelect/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/MultiSelect/DarkHighContrast

current

editor/editorTabBar/editorTabBar/ModernUIOn/InactiveGroupDirty/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/InactiveGroupDirty/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/LongLabelsShrink/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/LongLabelsShrink/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/StickyCompactNoIcons/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/StickyCompactNoIcons/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/SingleTabDirty/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/SingleTabDirty/Light

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedSeparateRowCompact/Dark

current

editor/editorTabBar/editorTabBar/ModernUIOn/PinnedSeparateRowCompact/Light

current

editor/inlineChatAffordance/InlineChatAffordance/Dark

current

editor/inlineChatAffordance/InlineChatAffordance/Light

current

editor/inlineChatZoneWidget/InlineChatZoneWidget/Dark

current

editor/inlineChatZoneWidget/InlineChatZoneWidget/Light

current

editor/inlineChatZoneWidget/InlineChatZoneWidgetTerminated/Dark

current

editor/inlineChatZoneWidget/InlineChatZoneWidgetTerminated/Light

current

editor/inlineCompletions/other/HintsToolbar/Dark

current

editor/inlineCompletions/other/HintsToolbar/Light

current

editor/inlineCompletions/other/HintsToolbarHovered/Dark

current

editor/inlineCompletions/other/HintsToolbarHovered/Light

current

editor/inlineCompletions/other/JumpToHint/Dark

current

editor/inlineCompletions/other/JumpToHint/Light

current

editor/inlineCompletions/other/NextFileEditSuggestion/Dark

current

editor/inlineCompletions/other/NextFileEditSuggestion/Light

current

editor/inlineCompletions/other/GutterMenu/Dark

current

editor/inlineCompletions/other/GutterMenu/Light

current

editor/inlineCompletions/views/SideBySideViewSmall/Dark

current

editor/inlineCompletions/views/SideBySideViewSmall/Light

current

editor/inlineCompletions/views/SideBySideViewWide/Dark

current

editor/inlineCompletions/views/SideBySideViewWide/Light

current

editor/inlineCompletions/views/WordReplacementView/Dark

current

editor/inlineCompletions/views/WordReplacementView/Light

current

editor/inlineCompletions/views/DeletionView/Dark

current

editor/inlineCompletions/views/DeletionView/Light

current

editor/inlineCompletions/views/LineReplacementView/Dark

current

editor/inlineCompletions/views/LineReplacementView/Light

current

editor/multiDiffEditor/MultiDiffEditor/Dark

current

editor/multiDiffEditor/MultiDiffEditor/Light

current

editor/multiDiffEditor/MultiDiffEditorHideOriginalLineNumbers/Dark

current

editor/multiDiffEditor/MultiDiffEditorHideOriginalLineNumbers/Light

current

editor/multiDiffEditor/MultiDiffEditorIncrementalPending/Dark

current

editor/multiDiffEditor/MultiDiffEditorIncrementalPending/Light

current

editor/multiDiffEditor/MultiDiffEditorIncrementalResolved/Dark

current

editor/multiDiffEditor/MultiDiffEditorIncrementalResolved/Light

current

editor/multiDiffEditor/MultiDiffEditorDocumentSwapBefore/Dark

current

editor/multiDiffEditor/MultiDiffEditorDocumentSwapBefore/Light

current

editor/multiDiffEditor/MultiDiffEditorDocumentSwapAfter/Dark

current

editor/multiDiffEditor/MultiDiffEditorDocumentSwapAfter/Light

current

editor/suggestWidget/MethodCompletions/Dark

current

editor/suggestWidget/MethodCompletions/Light

current

editor/suggestWidget/MethodCompletionsWithDetails/Dark

current

editor/suggestWidget/MethodCompletionsWithDetails/Light

current

editor/suggestWidget/MixedKinds/Dark

current

editor/suggestWidget/MixedKinds/Light

current

peekReference/PeekReferences/Dark

current

peekReference/PeekReferences/Light

current

imageCarousel/imageCarousel/SingleSection/Dark

current

imageCarousel/imageCarousel/SingleSection/Light

current

imageCarousel/imageCarousel/SingleSectionMiddleImage/Dark

current

imageCarousel/imageCarousel/SingleSectionMiddleImage/Light

current

imageCarousel/imageCarousel/MultipleSections/Dark

current

imageCarousel/imageCarousel/MultipleSections/Light

current

imageCarousel/imageCarousel/SingleImage/Dark

current

imageCarousel/imageCarousel/SingleImage/Light

current

onboarding/spotlightOverlay/SpotlightOverlay/Dark

current

onboarding/spotlightOverlay/SpotlightOverlay/Light

current

agentSessionsViewer/CompletedRead/Dark

current

agentSessionsViewer/CompletedRead/Light

current

agentSessionsViewer/CompletedUnread/Dark

current

agentSessionsViewer/CompletedUnread/Light

current

agentSessionsViewer/InProgress/Dark

current

agentSessionsViewer/InProgress/Light

current

agentSessionsViewer/NeedsInput/Dark

current

agentSessionsViewer/NeedsInput/Light

current

agentSessionsViewer/FailedWithDuration/Dark

current

agentSessionsViewer/FailedWithDuration/Light

current

agentSessionsViewer/FailedWithoutDuration/Dark

current

agentSessionsViewer/FailedWithoutDuration/Light

current

agentSessionsViewer/WithDiffChanges/Dark

current

agentSessionsViewer/WithDiffChanges/Light

current

agentSessionsViewer/WithFileChangesList/Dark

current

agentSessionsViewer/WithFileChangesList/Light

current

agentSessionsViewer/WithBadge/Dark

current

agentSessionsViewer/WithBadge/Light

current

agentSessionsViewer/WithMarkdownBadge/Dark

current

agentSessionsViewer/WithMarkdownBadge/Light

current

agentSessionsViewer/WithDescription/Dark

current

agentSessionsViewer/WithDescription/Light

current

agentSessionsViewer/WithMarkdownDescription/Dark

current

agentSessionsViewer/WithMarkdownDescription/Light

current

agentSessionsViewer/WithBadgeAndDiff/Dark

current

agentSessionsViewer/WithBadgeAndDiff/Light

current

agentSessionsViewer/Archived/Dark

current

agentSessionsViewer/Archived/Light

current

agentSessionsViewer/ArchivedUnread/Dark

current

agentSessionsViewer/ArchivedUnread/Light

current

agentSessionsViewer/CloudProvider/Dark

current

agentSessionsViewer/CloudProvider/Light

current

agentSessionsViewer/BackgroundProvider/Dark

current

agentSessionsViewer/BackgroundProvider/Light

current

agentSessionsViewer/ClaudeProvider/Dark

current

agentSessionsViewer/ClaudeProvider/Light

current

agentSessionsViewer/CloudProviderInProgress/Dark

current

agentSessionsViewer/CloudProviderInProgress/Light

current

agentSessionsViewer/InProgressWithDescription/Dark

current

agentSessionsViewer/InProgressWithDescription/Light

current

agentSessionsViewer/SectionToday/Dark

current

agentSessionsViewer/SectionToday/Light

current

agentSessionsViewer/SectionYesterday/Dark

current

agentSessionsViewer/SectionYesterday/Light

current

agentSessionsViewer/SectionLastWeek/Dark

current

agentSessionsViewer/SectionLastWeek/Light

current

agentSessionsViewer/SectionOlder/Dark

current

agentSessionsViewer/SectionOlder/Light

current

agentSessionsViewer/SectionArchived/Dark

current

agentSessionsViewer/SectionArchived/Light

current

agentSessionsViewer/SectionMore/Dark

current

agentSessionsViewer/SectionMore/Light

current

agentSessionsViewer/ApprovalRowJson/Dark

current

agentSessionsViewer/ApprovalRowJson/Light

current

agentSessionsViewer/ApprovalRowBash/Dark

current

agentSessionsViewer/ApprovalRowBash/Light

current

agentSessionsViewer/ApprovalRowPowerShell/Dark

current

agentSessionsViewer/ApprovalRowPowerShell/Light

current

agentSessionsViewer/ApprovalRowLongLabel/Dark

current

agentSessionsViewer/ApprovalRowLongLabel/Light

current

agentSessionsViewer/ApprovalRow1Line/Dark

current

agentSessionsViewer/ApprovalRow1Line/Light

current

agentSessionsViewer/ApprovalRow2Lines/Dark

current

agentSessionsViewer/ApprovalRow2Lines/Light

current

agentSessionsViewer/ApprovalRow3Lines/Dark

current

agentSessionsViewer/ApprovalRow3Lines/Light

current

agentSessionsViewer/ApprovalRow4Lines/Dark

current

agentSessionsViewer/ApprovalRow4Lines/Light

current

agentSessionsViewer/ApprovalRow3LongLines/Dark

current

agentSessionsViewer/ApprovalRow3LongLines/Light

current

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants