-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
feat(webapp): dashboard agent — UI #4529
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
kathiekiwi
wants to merge
26
commits into
feat/dashboard-agent-flows
Choose a base branch
from
feat/dashboard-agent-ui
base: feat/dashboard-agent-flows
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
015e34b
feat(webapp): the dashboard agent's UI
kathiekiwi 42ca86c
style(webapp): use the agent's own logo in the Help & Feedback entry
kathiekiwi a4ab30c
fix(webapp): drop Keep digging once the turn has already kept digging
kathiekiwi 7d57c9b
feat(webapp): give Cmd-I and the CLI's help link back to Ask AI
kathiekiwi e375ae1
test(webapp): give the untrustworthy report fixture the reason field …
kathiekiwi ad6827a
fix(webapp): give each copyable task snippet its own SDK import
kathiekiwi b8610d1
fix(webapp): drop a run diagnosis action that has nowhere to go
kathiekiwi dcdc892
fix(webapp): stop Cmd-J opening Chrome's downloads
kathiekiwi e35b239
fix(webapp): keep an empty chat open instead of showing a new one
kathiekiwi 507faeb
docs: say where the docs went now the header button is gone
kathiekiwi fe770c0
perf(webapp): keep report blocks out of the investigation winner pass
kathiekiwi ad86281
fix(webapp): give icon-only tooltip buttons an accessible name
kathiekiwi 06ab219
fix(webapp): stop a zero-limit queue reading as at capacity
kathiekiwi 43f7a2f
fix(webapp): stop the agent's retry duplicating the failed message
kathiekiwi 838e385
docs(webapp): say who Cmd-I actually opens the agent for
kathiekiwi 151e20b
fix(webapp): time the report sparkline's bars from the report, not th…
kathiekiwi fa6536f
fix(webapp): key a repeated view block by its own position
kathiekiwi 7fbb2e1
fix(webapp): send a deep-linked question once
kathiekiwi 7b87e59
fix(webapp): stop the URI resolver working after the panel closes
kathiekiwi f6a22fc
fix(webapp): announce the composer's counter and name the history button
kathiekiwi 7aa8ac3
fix(webapp): keep the hero's heading reachable when it outgrows the p…
kathiekiwi 3c41573
fix(webapp): pin the AI-help redirect to the dashboard's own origin
kathiekiwi 5655e1d
fix(webapp): read the agent's page label from the left of the path
kathiekiwi 50b7801
fix(webapp): step the composer's live region instead of reading every…
kathiekiwi c2f7c6f
fix(webapp): key an investigation's action rows by position, not by kind
kathiekiwi 00a22c6
fix(webapp): treat a transcript re-read that isn't a list as a failed…
kathiekiwi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟡 Keyboard shortcut list advertises an AI shortcut that most users cannot use, and drops the one that works
The keyboard shortcuts panel now lists the AI shortcut as Cmd/Ctrl-J (
TOGGLE_PANEL_SHORTCUT.keyatapps/webapp/app/components/Shortcuts.tsx:67) even though that key only works for the small set of users the dashboard agent is enabled for, and the Cmd/Ctrl-I shortcut that still works for everyone else is no longer listed anywhere.Impact: Users without the new agent see a documented shortcut that does nothing, and no longer see the AI shortcut that does work.
Where the shortcut is registered vs. where it is documented
TOGGLE_PANEL_SHORTCUT(⌘J) is registered only insideDashboardAgentand is disabled whenhasAccessis false (apps/webapp/app/components/dashboard-agent/DashboardAgent.tsx:77-88).hasAccesscomes fromcanAccessDashboardAgentin the environment layout loader, so it is off for most users.ASK_AI_SHORTCUT(⌘I) is still registered app-wide byAskAIRootProvider(apps/webapp/app/components/AskAI.tsx:118-121) whenever Ask AI can open, butShortcuts.tsxno longer lists it.Separately, the new "Chat" group lists "New chat" with
NEW_CHAT_SHORTCUT(apps/webapp/app/components/dashboard-agent/DashboardAgentHeader.tsx:30-34), which is the same ⌘J, so the panel shows two different shortcut names bound to an identical keystroke with no indication that the behaviour is contextual.Prompt for agents
Was this helpful? React with 👍 or 👎 to provide feedback.