GitHub Copilot

GitHub Copilot history: sharing across a team

How does the rest of the team see what I asked the AI?

Why this is hard

AI coding history is private by construction. Every tool writes it to the machine it ran on, under the account that ran it, in a location no colleague will ever open. That is a reasonable default for a cache and a poor one for the only written account of why a change looks the way it does.

What GitHub Copilot specifically does to you here

History is filed per workspace, not per person, so it is fragmented before it ever reaches the question of sharing. One developer across eight repositories already has eight separate histories, and a rename quietly starts a ninth.

See it on your own machine
ls "$HOME/Library/Application Support/Code/User/workspaceStorage" | wc -l

Where GitHub Copilot keeps this in the first place: ~/Library/Application Support/Code/User/workspaceStorage/<hash>/chatSessions/. History is keyed to the workspace path. Rename or move the project and the chat panel comes up empty.

What a working answer looks like

A working answer means one place where a lead can read what the team asked and what came back, without asking anyone to export anything by hand.

Start by measuring what you have. npx promptwake doctor reports what every AI tool on the machine is holding and how much of it sits inside a deletion window — no account, writes nothing, sends nothing anywhere. If the conclusion is that the record should not depend on one laptop, that is what PromptWake captures: prompt, response and the resulting diff, local by default and synced into a shared timeline on the paid tiers.