An Office add-in that brings GitHub Copilot directly into Excel, PowerPoint, Word, and Outlook. It uses the Copilot CLI as the single source of truth for authentication, models, plugins, skills, prompts, and MCP servers. No API keys, no endpoint configuration — just sign in with your GitHub account.
Built with React, Tailwind CSS, and the GitHub Copilot SDK. Architecture based on patniko/github-copilot-office.
Research Project Disclaimer
This repository is an independent research project. It is not affiliated with, endorsed by, sponsored by, or otherwise officially related to Microsoft or GitHub.
Office Task Pane (React)
↓ WebSocket (wss://localhost:3000/api/copilot)
Node.js proxy server (src/server.mjs)
↓ @github/copilot-sdk (manages CLI lifecycle internally)
GitHub Copilot API
The proxy server uses the @github/copilot-sdk to manage the Copilot CLI lifecycle and bridges it to the browser task pane via WebSocket + JSON-RPC. Tool calls flow back from the server to the browser, where host-specific handlers execute them (e.g., Excel.run(), PowerPoint.run(), Word.run(), or Outlook REST APIs).
On startup, the local proxy uses the user's normal Copilot CLI environment to keep the required Office Coding Agent plugins installed and current:
copilot plugin marketplace add sbroenne/office-coding-agent-plugins
copilot plugin install office-excel@office-coding-agent
copilot plugin install office-powerpoint@office-coding-agent
copilot plugin install office-word@office-coding-agent
copilot plugin install office-outlook@office-coding-agentThe app does not maintain a separate plugin registry, sandbox, marketplace browser, or plugin management UI. User-created and third-party plugins should be installed, updated, and removed with copilot plugin commands directly. For plugin authoring and local installs, see GitHub's Copilot CLI plugin docs:
MCP server configuration is read from the Copilot CLI, not from an app-owned or bundled list. The task pane picker and Copilot session creation both use:
copilot mcp list --jsonThat means servers from user, workspace, plugin, and builtin CLI sources are reflected in the add-in. Manage MCP servers in the terminal:
copilot mcp list
copilot mcp get <server-name>
copilot mcp add <server-name> <url-or-command-and-args>
copilot mcp remove <server-name>Remote authenticated MCP servers use SDK-owned OAuth recovery. When sign-in is required, the task pane shows a foreground prompt and the MCP picker offers Sign in, Retry sign in, or Switch account actions with login-hint support.
- GitHub Copilot authentication — sign in once with your GitHub account; no API keys or endpoint config
- VS Code–style chat UI — identical look and feel to GitHub Copilot in VS Code (design tokens, codicons, shimmer thinking indicator, per-phase Working boxes)
- Model picker — switch between supported Copilot models (Claude Sonnet, GPT-4.1, Gemini, etc.)
- Slash skills and prompts — type
/skill-nameor/prompt-nameto invoke installed CLI skills and.prompt.mdprompt files - MCP picker — enable, disable, and sign in to MCP servers from the user's Copilot CLI config
- Streaming responses — real-time token streaming with Copilot-style progress indicators
- 10 Excel tool groups — range, table, chart, sheet, workbook, comment, conditional format, data validation, pivot table, range format — covering ~83 actions
- 24 PowerPoint tools — slides, shapes, text, images, tables, charts, notes, layouts; includes visual QA with
get_slide_imageregion cropping for overflow detection - 35 Word tools — documents, paragraphs, tables, images, headers/footers, styles, comments, sections, fields, content controls
- 22 Outlook tools — emails, calendar, contacts, folders, attachments, categories, search, flags, drafts
- Host-routed tools — the correct toolset is selected automatically based on the current Office host
- Web fetch tool — proxied through the local server to avoid CORS restrictions
- Node.js >= 20
- Microsoft Office (Excel, PowerPoint, Word, or Outlook — desktop or Microsoft 365 web)
- An active GitHub Copilot subscription (individual, business, or enterprise)
- The
@github/copilotCLI authenticated (gh auth loginor equivalent)
👉 See GETTING_STARTED.md for full setup instructions — including authentication, starting the proxy server, registering the add-in, and sideloading into Office.
Quick start (requires Node.js 20+, GitHub CLI, and an active GitHub Copilot subscription):
# 1. Install dependencies
npm install
# 2. Authenticate with GitHub Copilot (once)
gh auth login
# 3. Register the add-in manifest + trust the SSL cert
npm run register:win # Windows
npm run register:mac # macOS
# 4. Start the dev server and sideload into Office
npm run start:dev:desktop # Excel; or :ppt / :word / :outlookThe proxy server runs on https://localhost:3000 and handles both the Vite dev server UI and the Copilot WebSocket proxy. It must be running whenever you use the add-in.
For local shared-folder sideloading and staging manifest workflows, see docs/SIDELOADING.md.
Normal development changes still go through pull requests, but releases are handled by the manual GitHub Actions Release workflow.
The workflow:
- derives the next version from the latest git tag
- builds the production bundle
- creates and pushes the Git tag
- publishes the GitHub Release artifact
Run it from the Actions tab in one step:
- choose the version increment (
patch,minor, ormajor) - optionally provide
custom_version - run the workflow
| Script | Description |
|---|---|
npm run dev |
Start Copilot proxy + Vite dev server (port 3000) |
npm run start:dev:desktop |
Start dev server, wait for readiness, then sideload Excel Desktop |
npm run start:dev:desktop:ppt |
Start dev server, wait for readiness, then sideload PowerPoint |
npm run start:dev:desktop:word |
Start dev server, wait for readiness, then sideload Word |
npm run start:dev:desktop:outlook |
Start dev server, wait for readiness, then sideload Outlook |
npm run start:prod-server |
Start production HTTPS server from dist/ |
npm run start:tray |
Build + run Electron system tray app |
npm run start:tray:desktop |
Start tray app (if needed) then sideload Excel desktop (legacy alias) |
npm run start:tray:excel |
Start tray app (if needed) then sideload Excel desktop |
npm run start:tray:ppt |
Start tray app (if needed) then sideload PowerPoint desktop |
npm run start:tray:word |
Start tray app (if needed) then sideload Word desktop |
npm run stop:tray:desktop |
Stop desktop sideload/debug session and server port 3000 |
npm run build:installer |
Build desktop installer artifacts via electron-builder |
npm run build:installer:win |
Build Windows installer (NSIS) |
npm run build:installer:dir |
Build unpacked desktop app directory |
npm run build |
Production build to dist/ |
npm run build:dev |
Development build to dist/ |
npm run start:desktop |
Sideload into Excel Desktop (legacy alias) |
npm run start:desktop:excel |
Sideload into Excel Desktop |
npm run start:desktop:ppt |
Sideload into PowerPoint Desktop |
npm run start:desktop:word |
Sideload into Word Desktop |
npm run start:desktop:outlook |
Sideload into Outlook Desktop |
npm run stop |
Stop debugging / unload the add-in |
npm run extensions:samples |
Generate sample extension ZIP files |
npm run sideload:share:setup |
Create local shared-folder catalog on Windows |
npm run sideload:share:trust |
Register local share as trusted Office catalog |
npm run sideload:share:publish |
Copy staging manifest into local shared folder |
npm run sideload:share:cleanup |
Remove local share and trusted-catalog setup |
npm run register:win |
Trust cert and register manifest for Word/PPT/Excel (Windows) |
npm run unregister:win |
Remove registered manifest entry (Windows) |
npm run register:mac |
Trust cert and register manifest for Word/PPT/Excel (macOS) |
npm run unregister:mac |
Remove manifest from Word/PPT/Excel WEF folders (macOS) |
npm run lint |
Run ESLint |
npm run lint:fix |
Auto-fix ESLint issues |
npm run format |
Format code with Prettier |
npm run typecheck |
Type-check without emitting |
npm test |
Run the Vitest unit project |
npm run test:integration |
Run integration test suite |
npm run test:ui |
Run Playwright UI tests |
npm run test:watch |
Run tests in watch mode |
npm run test:coverage |
Run tests with coverage |
npm run test:e2e |
Run E2E tests in Excel Desktop |
npm run test:e2e:ppt |
Run E2E tests in PowerPoint Desktop |
npm run test:e2e:word |
Run E2E tests in Word Desktop |
npm run test:e2e:outlook |
Run E2E tests in Outlook Desktop |
npm run test:e2e:all |
Run all four E2E suites in sequence |
npm run validate |
Validate manifests/manifest.dev.xml |
npm run validate:outlook |
Validate manifests/manifest.outlook.dev.xml |
This project uses three active test layers:
- Integration (
tests/integration/, Vitest) — component wiring, stores, host/tool routing, and live Copilot websocket flows - UI (
tests-ui/, Playwright) — browser taskpane behavior and regression coverage - E2E (
tests-e2e*, Mocha) — real Office host validation in Excel, PowerPoint, Word, and Outlook desktop
Unit tests are intentionally not used for new work in this repository.
# Default Vitest project
npm test
# Integration tests
npm run test:integration
# Watch mode
npm run test:watch
# With coverage
npm run test:coverage
# Browser UI tests
npm run test:ui
# E2E tests (require Office desktop app)
npm run test:e2e
npm run test:e2e:ppt
npm run test:e2e:word
npm run test:e2e:outlook
# Validate the Office add-in manifest
npm run validateUse npm run test:integration for the main integration suite.
The project includes end-to-end tests across all four Office hosts: ~233 Excel tests, ~15 PowerPoint tests, ~14 Word tests, and ~8 Outlook tests (requiring Exchange sideloading approval).
- Mocha runner (
tests-e2e/runner.test.ts) starts a local test server on port 4201. - A separate test add-in is built and served on
https://localhost:3001. - The test add-in is sideloaded into Excel Desktop using
office-addin-debugging. - Inside Excel,
test-taskpane.tsruns the Excel command tests and sends results back to the test server. - The Mocha runner receives the results and asserts on them.
| Category | Tests |
|---|---|
| Range Tools | 59 |
| Table Tools | 19 |
| Chart Tools | 19 |
| Sheet Tools | 25 |
| Workbook Tools | 18 |
| Comment Tools | 8 |
| Conditional Format | 27 |
| Data Validation | 21 |
| Pivot Table | 28 |
| Settings Persistence | 4 |
| AI Round-Trip | 4 |
npm run test:e2eThis command:
- Uses
ts-nodewith thetests-e2e/tsconfig.jsonproject - Starts the test server, builds the test add-in, sideloads into Excel
- Waits for all test results, then tears down (closes Excel, stops server)
Note: E2E tests require Excel Desktop installed on the machine. They use a separate manifest (
tests-e2e/test-manifest.xml) with its own GUID so it can coexist with the dev add-in.
┌─────────────────────┐ results ┌─────────────────────┐
│ Mocha Runner │◄───(port 4201)──│ Test Taskpane │
│ (Node.js) │ │ (inside Excel) │
│ │ sideload │ │
│ - starts server │────────────────►│ - writes ranges │
│ - builds add-in │ │ - creates sheets │
│ - asserts results │ │ - manages tables │
│ │ │ - creates charts │
└─────────────────────┘ └─────────────────────┘
port 4201 port 3001
(test server) (Vite dev server)
- Add test logic in
tests-e2e/src/test-taskpane.tsusing thepass()/fail()/assert()helpers. - Add a corresponding Mocha
it()block intests-e2e/runner.test.tsthat reads the result viae2eContext.getResult('your_test_name'). - Run
npm run test:e2eto verify.
The add-in routes messages through a local proxy server — the browser task pane cannot call the GitHub Copilot API directly due to browser security restrictions.
useOfficeChat(host)
↓ createWebSocketClient(wss://localhost:3000/api/copilot)
BrowserCopilotSession.query({ prompt, tools })
↓ SessionEvent stream
assistant.message_delta / tool.* / session.idle
↓
ThreadMessage[] → useExternalStoreRuntime
↓ wss://localhost:3000/api/copilot
src/server.mjs (Express HTTPS, port 3000)
src/copilotProxy.mjs → @github/copilot-sdk → GitHub Copilot API
The Office host prompt uses a split architecture:
src/services/ai/BASE_PROMPT.md— universal base prompt (progress narration, presenting choices)src/services/ai/prompts/*_APP_PROMPT.md— host-level app prompts- Instructions =
buildSystemPrompt(host) + memory context
Agent definitions are not parsed or injected by the add-in. The Office agents are delivered by the required Copilot CLI plugins (office-excel, office-powerpoint, office-word, office-outlook) that the proxy installs and updates at startup. The task pane Agent picker only selects CLI-owned agents through SDK session agent RPC.
Copilot CLI plugins are installed into the user's normal CLI config and consumed by the CLI/SDK, not by an app-owned plugin or agent management layer. The task pane can discover installed CLI plugin skills and .prompt.md prompt files so users can reference them as /skill-name or /prompt-name, matching Copilot slash invocation. Installation, updates, and removal stay in the CLI.
Office Coding Agent ensures these required marketplace plugins at startup:
# Registered automatically when missing
copilot plugin marketplace add sbroenne/office-coding-agent-plugins
# Installed automatically when missing
copilot plugin install office-excel@office-coding-agent
copilot plugin install office-powerpoint@office-coding-agent
copilot plugin install office-word@office-coding-agent
copilot plugin install office-outlook@office-coding-agent
# Updated automatically on startup
copilot plugin update office-excel@office-coding-agentFor user-created plugins, use the Copilot CLI directly:
copilot plugin list
copilot plugin install <source-or-name@marketplace>
copilot plugin update <plugin-name@marketplace-name>
copilot plugin uninstall <plugin-name>See GitHub's current docs for plugin structure, local plugin creation, and marketplace publishing:
MCP servers are also CLI-owned. The add-in does not ship or merge a separate MCP registry. The local proxy serves /api/mcp-servers from copilot mcp list --json, and useOfficeChat uses the same data for SDK session creation. To change what appears in the MCP picker, change the CLI config:
copilot mcp list
copilot mcp get <server-name>
copilot mcp add <server-name> <url-or-command-and-args>
copilot mcp remove <server-name>Remote HTTP/SSE servers that require authentication can be recovered from the task pane via SDK-owned OAuth prompts. The picker shows sign-in state and account-switching actions when available.
Agents are CLI-owned. The add-in no longer ships src/agents/*/AGENT.md and no longer passes browser-owned customAgents into session.create. The task pane Agent picker lists/selects CLI-owned agents through the SDK session agent RPC; the Office agents are installed with the required Office Coding Agent CLI plugins.
useOfficeChat— creates aWebSocketCopilotClient, opens aBrowserCopilotSession, mapsSessionEventstream toThreadMessage[]foruseExternalStoreRuntimeBrowserCopilotSession.query()— async generator yieldingSessionEventobjects (assistant.message_delta, tool.execution_start, session.idle, etc.)getToolsForHost(host)— returnsTool[](Copilot SDK format) for the current Office host (Excel: ~83 tools, PowerPoint: 24, Word: 35, Outlook: 22)
State is minimal: useSettingsStore (Zustand) persists model, skill, and MCP enablement; chat and MCP runtime auth/status state are ephemeral.
The task pane is organized into three areas:
- ChatHeader — Session History picker, Copilot CLI plugin help link, Permissions button, and New Conversation action
- ChatPanel — thread/message stream, inline thinking indicator, composer, slash completions, and input toolbar with ModelPicker and MCP picker
- App — root shell that handles Office host detection, theme sync, and connection/session/permission banners
Authentication is handled entirely by the GitHub Copilot CLI (@github/copilot package). Run gh auth login once and the CLI handles OAuth token management. No API keys or Azure AD configuration is needed.
- React 19 — UI framework
- Radix UI + Tailwind CSS v4 — task pane UI components and styling (VS Code design tokens via
--vscode-*CSS custom properties) - GitHub Copilot SDK (
@github/copilot-sdk) — session management, streaming events, tool registration - WebSocket + JSON-RPC (
vscode-jsonrpc,ws) — browser-to-proxy transport - Express + HTTPS — local proxy server with Vite dev middleware
- Zustand 5 — lightweight state management with
OfficeRuntime.storagepersistence - Vite 7 — bundling with HMR
- TypeScript 5 — type safety
- Vitest — integration testing
- Playwright — browser UI testing for task pane flows
- Mocha — E2E testing inside Excel Desktop (~233 tests)
- Testing Library — React component testing (
@testing-library/react,user-event) - ESLint + Prettier — code quality
This project has gone through two major architectural phases:
The initial version of Office Coding Agent was built on the Vercel AI SDK with Azure AI Foundry as the model backend. It used @ai-sdk/azure and @ai-sdk/react along with @assistant-ui/react-ai-sdk for the chat UI. Users had to configure API endpoints, keys, and model deployments manually through a setup wizard.
Inspired by patniko/github-copilot-office — a project by Patrick Nikoletich, Steve Sanderson, and contributors — the entire AI backend was replaced with the @github/copilot-sdk in PR #25. This migration:
- Replaced the Vercel AI SDK and Azure AI Foundry backend with the GitHub Copilot SDK
- Added a Node.js WebSocket proxy server (bridging the browser task pane to the Copilot CLI)
- Removed the setup wizard, API key configuration, and multi-provider endpoint management
- Simplified authentication to a single GitHub account sign-in via
gh auth login
The proxy server architecture (server.mjs → copilotProxy.mjs → @github/copilot-sdk) and WebSocket-based browser transport were directly adopted from the patterns established in patniko/github-copilot-office.
- patniko/github-copilot-office — The proxy server architecture, Copilot SDK integration pattern, and WebSocket transport design used in this project were adopted from this repository by Patrick Nikoletich and Steve Sanderson. Their work provided the foundation for the Phase 2 migration.
- @trsdn (Torsten) and @urosstojkic — Contributed the Word document orchestrator (planner→worker pattern), 22 Outlook tools, expanded PowerPoint tooling (24 tools), WorkIQ MCP stdio integration, host-specific welcome prompts, improved auto-scroll, and new skills (Outlook email/calendar/drafting, Word formatting/tables/document-builder, PowerPoint content/layout/animation/presentation). Originally submitted as PR #33 and merged in PR #45.
- Vercel AI SDK — Original AI runtime used in Phase 1.
This project is developed with a Squad AI team running on the Copilot CLI. Squad orchestrates collaborative development through named agents, each with specialized responsibilities. The team composition and agent configuration are stored in .squad/ — team members include: Harmony (Lead), Ellis (PM), Dylan (Frontend), Irving (Backend), Mark (Tester), Parker (QA), Scribe, and Ralph. Contributors can review .squad/team.md to understand the current team structure and responsibilities.
MIT