Goal: everything QUILL can do with GitHub and local git, in one sitting — browsing and saving files, working issues and pull requests, administering a repository, and resolving a merge conflict without ever opening a browser or a terminal.
Three layers, and you can use any of them independently:
The first time you touch any GitHub feature, QUILL shows a one-time consent dialog explaining it will connect to api.github.com. Accept it, then:
repo scope,
and copy it — you only see it once.Public repositories are browsable without a token, at a lower rate limit. Everything that writes to GitHub needs a token; if you try a write command without one, QUILL offers to sign you in right there instead of just refusing.
owner/repo (try
octocat/Hello-World if you don't have one handy) and press
Enter.If you already have the URL, File > Open from Remote >
GitHub File URL... skips the browser entirely — paste a
github.com/owner/repo/blob/branch/path link and QUILL
fetches it directly.
File > Open from Remote > GitHub Items... opens a list-over-detail browser for one repository's issues, pull requests, branches, commits, tags, releases, and workflow runs.
owner/repo and press Load. (If
your current document lives inside a git checkout whose origin points at
GitHub, the field is already filled in.)field: value).Search (Ctrl+F) takes full GitHub search syntax
scoped to the loaded repo: try label:bug is:open.
Pinned... keeps a short list of repos you jump back to
often; Ctrl+D favorites the selected row from any repo,
and Favorites... lists everything you've bookmarked
across all of them.
Select a PR row and press Diff.... QUILL fetches both sides of every changed file and runs them through the same compare engine as Compare Documents, so you hear a real difference walk — "Difference 2 of 5, text changed at line 41" — instead of a raw patch.
Select a long issue or PR and press Summarize. QUILL's AI condenses the whole discussion into what it's about, where it stands, and what's still open. Uses your existing AI setup; if you haven't configured one, pressing Summarize offers to walk you through it.
Everything so far works read-only. Signed in, two more buttons appear.
Batch... applies close, reopen, or add-label to every checked row at once (hold Shift or Ctrl to check several). A confirmation names the exact action and the exact item numbers before anything changes.
Actions... is context-sensitive to what you're looking at:
Try it: load a repo you maintain, select New Issue..., give it a title, and watch it appear in the list after you confirm.
Everything above works on repositories that already exist. Tools > GitHub creates and configures them.
All eight commands are in the Command Palette and ship default keyboard shortcuts through the QUILL Key (press your QUILL Key, then the listed letter): Create = Shift+K, Fork = Shift+F, Rename = Shift+E, Visibility = Shift+V, Default Branch = Shift+B, Branch Protection = Shift+L, Delete Branch = Shift+X, Commit Multiple Files = Shift+U.
Five more commands round out Tools > GitHub:
Switch gears entirely — Tools > Local Git needs no GitHub account and touches no network. It works on the working copy of any git repository on your machine, and it exists because two of git's most common tasks — resolving a merge conflict and reordering commits with an interactive rebase — are notoriously hard with a screen reader everywhere else.
Try this with a real (or throwaway test) repository:
Create a real conflict (or find one) and run Resolve
Conflicts.... Instead of
<<<<<<</=======/>>>>>>>
markers, you get: "Conflict 1 of 3 in file.py: your version
says X, their version says Y," with your version /
their version / both / edit
manually as your choice. Work through every conflict in every
affected file; QUILL writes the resolved content back and stages it. The
same walker opens automatically if a rebase (next) or a Sync
Folder with GitHub stops on a conflict — you never have to go
find a different tool mid-task.
Interactive Rebase... asks which commit to rebase onto, then shows every commit since then as a real list — not a text buffer you're expected to hand-edit. Pick an action per row (pick, squash, reword, drop) from a dropdown, and reorder with Move Up / Move Down. Press Start Rebase. If a step conflicts, the conflict walker above opens automatically; resolve it and the rebase continues on its own. Abort Rebase restores your branch exactly as it was if you change your mind.
None of the ten Local Git commands have a default keyboard shortcut — every letter on the QUILL Key leader is already claimed elsewhere — but all ten are in the Command Palette and the Tools > Local Git menu, and you can assign your own shortcuts in Preferences > Keyboard Shortcuts.
One more command, adjacent to everything above: Tools > Sync Folder with GitHub... commits, pulls, and pushes an entire folder over its own git remote — a writing project, a notes folder, anything, not just files opened through the commands above. See Start an Accessible Vault for the same engine in its original home (Sync Vault); this is the general-purpose version, generalized to work on any folder you point it at.
Browse and save individual files without an account; sign in once for everything else. The Items viewer's Batch... and Actions... menus cover day-to-day issue/PR work; Tools > GitHub covers repository lifecycle and the rest of the API; Tools > Local Git covers the parts that were never about GitHub at all — and are, as far as we can tell, the first genuinely accessible interactive rebase and merge-conflict experience anywhere.