- 1. Open Excel in the browser and open a workbook.
- 2. Go to Home, Add-ins, More Add-ins, Upload My Add-in.
- 3. Upload the XML manifest from this page.
Cloud runtime, native task pane, one agent contract.
The Excel add-in is now part of the product surface. It is not a separate toy client. It syncs the live workbook into the same cloud runtime, supports Focus-style scoped edits, and applies audited changes back into Excel.
The add-in reads the active workbook into the same WorkbookData contract used by the web app.
Current selection can become a hard edit boundary, and the server rejects writes outside that region.
The task pane uses the same `/api/agent` and provider-health routes as the web product.
Returned actions are applied back into Excel, then the workbook is re-synced so the pane stays honest.
Pick where Excel runs.
The installer places the deployed manifest in Excel's sideload folder, quits Excel, then opens Excel again.
A website cannot silently install a desktop Office add-in or launch desktop Excel. macOS and browsers require the user to run a local installer or paste a Terminal command.
Show terminal command
curl -fsSL "https://excel.jpdz.app/excel-addin/install-mac.command" -o /tmp/install-excel-agent.command && chmod +x /tmp/install-excel-agent.command && open /tmp/install-excel-agent.commandAfter running it, open a workbook, click Edit if the file is read-only, then choose Home, Add-ins, Excel Agent. Some Mac builds show it under Developer Add-ins.
For real users across a company, publish this manifest through Microsoft 365 admin center central deployment. Users then see Excel Agent without manual sideloading.