You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ The app mirrors the Copilot SDK's native customization model. Configure once, us
62
62
|**Skills**| Discovered by SDK | Toggle in Settings → model can invoke |
63
63
|**Prompts**|`~/.copilot/prompts/*.prompt.md`| Type `/name` in chat → autocompletes |
64
64
|**Instructions**|`~/.copilot/copilot-instructions.md`| Auto-discovered, shown in Settings |
65
-
|**MCP Servers**|`~/.copilot/mcp-config.json`| Toggle in Settings → tools available |
65
+
|**MCP Servers**|`~/.copilot/mcp-config.json`| Toggle in Settings → tools available; OAuth-authenticated servers auto-inject tokens from the CLI token store|
66
66
67
67
> All paths also support repo-scoped variants (`.github/agents/`, `.github/prompts/`, `.github/instructions/`, `.github/mcp-config.json`).
68
68
@@ -186,7 +186,7 @@ npm run sync:push -- https://your-app.azurecontainerapps.io
186
186
<details>
187
187
<summary>How sync works, session bundling, and more</summary>
188
188
189
-
The SDK stores each session as `~/.copilot/session-state/{uuid}/` with `workspace.yaml`, `plan.md`, and checkpoint files. When you resume a session from the browser, the SDK restores conversation history automatically. For disk-only sessions (e.g. bundled into Docker), the app falls back to reading checkpoint files directly and injecting them as context.
189
+
The SDK stores each session as `~/.copilot/session-state/{uuid}/` with `workspace.yaml`, `plan.md`, and checkpoint files. When you resume a session from the browser, the SDK restores conversation history automatically — and if the CLI's `session-store.db` is available, full turn-by-turn history is loaded from it for a richer resume experience. For disk-only sessions (e.g. bundled into Docker), the app falls back to reading checkpoint files directly and injecting them as context.
190
190
191
191
**Bundle sessions at build time** (Azure / CI):
192
192
@@ -227,7 +227,7 @@ Device Flow OAuth (same as GitHub CLI). Tokens are server-side only, never sent
227
227
- Rate limiting: 200 req / 15 min per IP (HTTP) + 30 msg / min per WebSocket
0 commit comments