Never lose track of what you shipped β auto-log every AI coding session.
π Local-first Β· π¦ Zero dependencies Β· π« Zero telemetry
A GitHub Copilot CLI extension that silently records your work as you go β files edited, PRs created, git actions β so when performance review season hits, you have receipts instead of a blank page. (What's a brag sheet?)
π Microsoft engineer? Jump to Connect-optimized framing β
Requires: Node.js 18+, GitHub Copilot CLI (with active Copilot subscription)
Every time you use GitHub Copilot CLI, this extension automatically:
- π Tracks your session β repo, branch, files edited/created, PRs, git actions
- π Captures context β first prompt as task description, session duration
- π Stores locally β structured JSON records in your OS app-data directory
- π Crash-safe β atomic writes, orphan recovery, emergency shutdown saves
Plus three tools the agent can call on your behalf:
| Tool | What it does |
|---|---|
save_to_brag_sheet |
Save a work accomplishment to your impact log |
review_brag_sheet |
Review recent entries for performance discussions |
generate_work_log |
Render all records into a Markdown file |
β οΈ Don't usecopilot plugin install. This is ajoinSession()extension and must live in~/.copilot/extensions/. Tracking github/copilot-cli#3023. Use one of the methods below.
# macOS / Linux
curl -sL https://raw.githubusercontent.com/microsoft/copilot-brag-sheet/main/install.sh | bash
# Windows (PowerShell 5.1+)
irm https://raw.githubusercontent.com/microsoft/copilot-brag-sheet/main/install.ps1 | iexThe interactive setup wizard runs automatically when your terminal supports it.
npm install -g copilot-brag-sheet
copilot-brag-sheet # copies files + runs setup wizardgit clone https://github.com/microsoft/copilot-brag-sheet.git
cd copilot-brag-sheet
./install.sh # macOS/Linux
.\install.ps1 # WindowsAfter install, run /clear (or restart Copilot CLI). On your first message you'll see:
π Work logger active
Re-run setup anytime with copilot-brag-sheet-setup (after npm install) or node ~/.copilot/extensions/copilot-brag-sheet/bin/setup.mjs.
Install failing? Open an issue with the error β Windows + macOS + Linux are CI-tested.
1. Say "brag" when you ship something.
You: brag β refactored auth to managed identity, killed 3 secret-rotation incidents/qtr
Agent: [calls save_to_brag_sheet with summary, category, and impact]
2. Run "generate my work log" before review season.
You: generate my work log
Agent: [calls generate_work_log β writes a categorized markdown file you can paste into your perf doc]
Everything else (file tracking, PR detection, git actions) is automatic. Most users only do step 2 once per quarter.
You: show me my last 2 weeks
Agent: [calls review_brag_sheet]
What a session record looks like (auto-captured JSON)
Every Copilot CLI session automatically produces a JSON record like this:
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"type": "session",
"timestamp": "2025-04-14T14:30:00.000Z",
"endTime": "2025-04-14T15:45:00.000Z",
"repo": "copilot-brag-sheet",
"branch": "main",
"cwd": "/home/user/repos/copilot-brag-sheet",
"filesEdited": ["lib/config.mjs", "test/config.test.mjs"],
"filesCreated": ["docs/backfill-guide.md"],
"prsCreated": [],
"significantActions": ["git commit", "git push"],
"taskDescription": "Add Microsoft preset support to config",
"status": "finalized"
}You don't write these β they're captured automatically in the background.
When you (or the AI) calls save_to_brag_sheet:
You: "brag β shipped the auth service refactor"
Agent: I'll save that to your brag sheet.
Summary: Refactored auth service to use managed identity β eliminated 3 secret
rotation incidents per quarter β reduced on-call burden for the team
Category: infrastructure
Impact: Eliminated recurring secret rotation incidents, improved team velocity
β
Entry saved to brag sheet [infrastructure]: "Refactored auth service..."
The stored entry:
{
"type": "entry",
"summary": "Refactored auth service to use managed identity β eliminated 3 secret rotation incidents per quarter",
"category": "infrastructure",
"impact": "Eliminated recurring secret rotation incidents, improved team velocity",
"repo": "auth-service",
"branch": "main"
}Running generate_work_log produces a Markdown file like this:
# Work Impact Log
## Week of 2025-04-14
### π PRs & Features
- **[copilot-brag-sheet] Built and published v2 with modular architecture** β 107 tests, cross-platform CI
### ποΈ Infrastructure
- **[auth-service] Refactored auth to managed identity** β Eliminated 3 secret rotation incidents/quarter
### π¨ On-Call
- **[api-gateway] Mitigated cascading timeout incident** β Restored service in 12 min, 0 customer impact
## Week of 2025-04-07
### π Bug Fixes
- **[dashboard] Fixed timezone rendering in analytics charts** β Unblocked APAC team reportingYou: "review my work from the last 2 weeks"
Agent: [calls review_brag_sheet with weeks=2]
Here's your recent work:
## Week of 2025-04-14
### π PRs & Features
- **Built and published copilot-brag-sheet v2** β modular architecture, 107 tests
### ποΈ Infrastructure
- **Refactored auth service to managed identity** β eliminated secret rotation incidents
This looks strong for your Connect review. The auth refactor is a great
example of reducing operational burden β want me to help frame it as a
business impact statement?
Microsoft preset in action
With { "preset": "microsoft" } in your config, the AI automatically frames entries for Connect:
You: "brag β I shipped the Grafana dashboard migration"
Agent: I'll frame this for Connect. Here's what I'd save:
Summary: Led Grafana dashboard migration to Azure Managed Grafana β
consolidated 15 dashboards across 3 teams β reduced
monitoring infrastructure costs by 40%
Category: infrastructure
Impact: Reduced operational toil for SRE team, improved cross-team
visibility into service health metrics
This aligns well with your Core Priority around operational excellence.
Want me to save this?
How It Works (internals β most users don't need this)
Session Start βββΊ Track files, PRs, git actions βββΊ Session End
β β β
βΌ βΌ βΌ
Create JSON Update JSON Finalize JSON
(status: active) (incremental) (status: finalized)
active βββΊ finalized (normal session end)
active βββΊ emergency-saved (process killed / crash)
active βββΊ orphaned (recovered by next session)
<data-dir>/
βββ sessions/2025/04/2025-04-14T20-00-00.000Z_<uuid>.json
βββ entries/2025/04/2025-04-14T20-05-00.000Z_<uuid>.json
βββ config.json (optional)
βββ errors.log
Default data directory:
| OS | Path |
|---|---|
| Windows | %LOCALAPPDATA%\copilot-brag-sheet\ |
| macOS | ~/Library/Application Support/copilot-brag-sheet/ |
| Linux | ${XDG_DATA_HOME:-~/.local/share}/copilot-brag-sheet/ |
| Variable | Default | Description |
|---|---|---|
WORK_TRACKER_DIR |
OS app-data dir | Override the data storage directory |
WORK_TRACKER_OUTPUT_PATH |
<data-dir>/work-log.md |
Override the work log output path |
Place a config.json in your data directory to customize:
{
"preset": "microsoft",
"categories": [
{ "id": "deployment", "emoji": "π’", "label": "Deployments" }
],
"output": {
"includeSessionLog": true
},
"git": {
"enabled": true,
"push": false
}
}| Field | Type | Description |
|---|---|---|
categories |
array | Custom categories added to the built-in set |
output.includeSessionLog |
boolean | Include raw session activity table in work log |
output.defaultFormat |
string | Output format for entries (default: "bullets") |
git.enabled |
boolean | Enable local git history for data directory |
git.push |
boolean | Auto-push to a remote git repo |
preset |
string | Preset profile β currently "microsoft" (see below) |
| ID | Emoji | Label |
|---|---|---|
pr |
π | PRs & Features |
bugfix |
π | Bug Fixes |
infrastructure |
ποΈ | Infrastructure |
investigation |
π | Investigation |
collaboration |
π€ | Collaboration |
tooling |
π§ | Tooling & DX |
oncall |
π¨ | On-Call |
design |
π | Design |
documentation |
π | Documentation |
Save a work entry to your impact log.
| Parameter | Type | Required | Description |
|---|---|---|---|
summary |
string | β | Impact-first summary: "Did X for Y β Result Z" |
category |
string | One of the built-in or custom category IDs | |
impact |
string | Who/what benefited and how | |
tags |
string[] | Tags for filtering | |
repo |
string | Repository name (auto-detected if omitted) | |
branch |
string | Branch name (auto-detected if omitted) |
Review recent entries from your work impact log.
| Parameter | Type | Required | Description |
|---|---|---|---|
weeks |
number | Number of recent weeks to show (default: 4) |
Generate a complete work log Markdown file from all records.
| Parameter | Type | Required | Description |
|---|---|---|---|
outputPath |
string | Output file path (defaults to data dir) |
Already been coding for months? Use Copilot CLI to retroactively scan your history and populate your work log:
Scan my git log since January and log the significant work to my brag sheet.
Review my merged GitHub PRs since December and save the impactful ones.
The extension doesn't do the scanning β Copilot CLI is the backfill tool. The extension just stores whatever it produces. See the full Backfill Guide for source-by-source instructions covering Copilot sessions, VS Code Chat, ADO PRs, GitHub PRs, git commits, ICM incidents, and Teams/M365.
If you're at Microsoft, a one-line preset gives you Connect-optimized framing:
{ "preset": "microsoft" }Or just answer "y" during installation β the install script sets it up for you.
What changes:
- The AI frames entries using business impact language ("Did X β Result Y β Evidence Z")
review_brag_sheetoutput is labeled for Connect review- The AI knows about Microsoft internal tools (ADO, ICM, Kusto, Teams)
- Session activity log is included by default
What doesn't change:
- All data stays local β nothing is sent anywhere
- The same tools work the same way
- Non-Microsoft users get the same experience, just without the Connect framing
Point your data directory to a synced folder and your work log follows you across machines:
# OneDrive
export WORK_TRACKER_DIR="$HOME/OneDrive/Documents/work-tracker"
# Dropbox
export WORK_TRACKER_DIR="$HOME/Dropbox/work-tracker"
# iCloud
export WORK_TRACKER_DIR="$HOME/Library/Mobile Documents/com~apple~CloudDocs/work-tracker"Atomic writes (tmp β fsync β rename) prevent corruption from sync conflicts.
Re-run the install script to update to the latest version:
# macOS / Linux
curl -sL https://raw.githubusercontent.com/microsoft/copilot-brag-sheet/main/install.sh | bash
# Windows (PowerShell)
irm https://raw.githubusercontent.com/microsoft/copilot-brag-sheet/main/install.ps1 | iexOr if you cloned the repo:
cd copilot-brag-sheet && git pull && ./install.shYour config and data are never touched β only the extension files are replaced.
# macOS / Linux
rm -rf ~/.copilot/extensions/copilot-brag-sheet
# Windows (PowerShell)
Remove-Item "$env:USERPROFILE\.copilot\extensions\copilot-brag-sheet" -Recurse -ForceYour data stays in the OS app-data directory β delete it manually if you want a full removal.
Does this send my data anywhere?
No. All data is stored locally in your OS app-data directory. Zero telemetry, zero network calls. The extension has zero runtime dependencies. If you enable git push, data goes only to a remote you configure.
Where is my data stored?
| OS | Path |
|---|---|
| Windows | %LOCALAPPDATA%\copilot-brag-sheet\ |
| macOS | ~/Library/Application Support/copilot-brag-sheet/ |
| Linux | ${XDG_DATA_HOME:-~/.local/share}/copilot-brag-sheet/ |
Override with WORK_TRACKER_DIR environment variable.
Why don't I see "Work logger active"?
The message appears on your first message after starting Copilot CLI (not immediately on /clear). Type anything and it should appear. If it doesn't, check that the extension is installed at ~/.copilot/extensions/copilot-brag-sheet/extension.mjs.
Can I use copilot plugin install?
No. copilot plugin install only loads declarative plugins (skills, agents, MCP). This extension uses joinSession() which requires files in ~/.copilot/extensions/. Use the install scripts instead.
How do I move data between machines?
Enable git backup in your config, add a remote repo, and your entries sync automatically. Or point WORK_TRACKER_DIR to a cloud-synced folder (OneDrive, Dropbox, iCloud).
- Node.js 18+
- GitHub Copilot CLI
- Zero runtime dependencies
git clone https://github.com/microsoft/copilot-brag-sheet.git
cd copilot-brag-sheet
npm test # 107 tests, ~1sSee CONTRIBUTING.md for development guidelines.
MIT Β© Microsoft Corporation
