docs: the ⌘K palette description matches what it actually offers (BEA-84) (#132)

README.md:499 promised "share/history/upload actions" in the command
palette. Upload has never existed there (browser upload is deliberately
absent, Browser.tsx:175), download went unmentioned, and share/download
are file-scoped — so a reader on a folder route goes hunting for controls
that are correctly hidden. The doc comment at Palette.tsx:8 carried the
same wrong list, so fixing only the README would leave the next reader of
the component with the same picture.

Prose and a comment only; no code path changes. `npm run build` produces
a byte-identical internal/webapp/static (source comments are stripped
from the bundle), so no assets to commit.

Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Snow Lee (Sungwon)
2026-08-11 02:12:42 +09:00
committed by GitHub
co-authored by Claude Opus 5
parent 1894646093
commit aa33ba55cc
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -496,8 +496,9 @@ The payoff, once those hooks are in place: "write a report and share it"
becomes the agent generating `wiki/report.html` and replying with a link. becomes the agent generating `wiki/report.html` and replying with a link.
The web UI lists your orgs' projects in the sidebar (⌘K opens a command The web UI lists your orgs' projects in the sidebar (⌘K opens a command
palette: fuzzy file search, project switching, share/history/upload palette: fuzzy file search, project switching, the project's own pages, and
actions); selecting one browses that project's files, and the **History** history — plus share and download of the file you have open); selecting one
browses that project's files, and the **History**
view shows every change — which view shows every change — which
account made it, when, from which device (name and OS — never the connecting account made it, when, from which device (name and OS — never the connecting
IP), with view/download of any past version (content is IP), with view/download of any past version (content is
@@ -5,7 +5,7 @@ import { Dialog, DialogContent, DialogTitle } from "@/components/ui/dialog";
/* ---- command palette (⌘K / Ctrl+K) ---- /* ---- command palette (⌘K / Ctrl+K) ----
One box for everything: fuzzy-jump to any file, switch projects, and run One box for everything: fuzzy-jump to any file, switch projects, and run
quick actions (share, history, upload, download, sign out). */ quick actions (history always, share and download on a file, sign out). */
export interface PaletteItem { export interface PaletteItem {
icon: string; icon: string;