This guide walks you from a fresh checkout to a working Agix sidebar in Excel Desktop. By the end you will have the task pane open, an API key saved, and the AI responding to a question about a cell range you select. The whole process takes about five minutes.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/manusapis/Agix/llms.txt
Use this file to discover all available pages before exploring further.
Install prerequisites
Agix requires Node.js 18 or later. Verify your version before continuing:You also need a copy of Excel 2016 or later (Desktop or Excel on the web) to sideload the add-in. Excel is available through Microsoft 365 on Windows and Mac.
Install dependencies
Install all Node packages with npm:This pulls in Office.js, React 18, Vite, and TypeScript — roughly 400 MB of
node_modules on a first install.Start the development server
Start the Vite dev server, which serves the add-in over HTTPS on port 3000:You should see output similar to:Leave this terminal running. Excel loads the task pane from this local server.
Sideload manifest.xml in Excel
Tell Excel about the add-in by uploading the manifest file:The manifest points to
- Open Excel (Desktop).
- Go to Insert → My Add-ins.
- Click Manage My Add-ins → Upload My Add-in.
- Browse to
manifest.xmlin the project root and select it. - Click Upload.
https://localhost:3000, which is why the dev server must be running first.Open the Agix task pane
In the Home ribbon, click Open Agix inside the Agix AI group. The sidebar slides in on the right side of the workbook.You will see:
- A Provider dropdown (defaults to OpenAI)
- A chat textarea for your prompt
- A Send button and a Use selection button
Enter your API key
Agix does not bundle any API keys. You need to supply a key from your chosen provider before sending your first message.
- In the sidebar, locate the Provider dropdown and select the provider you want to use (OpenAI, Claude, or OpenRouter).
- Enter your API key in the API key field.
- The key is saved automatically to your user settings and persists across sessions.
- OpenAI Platform for GPT-4o
- Anthropic Console for Claude
- OpenRouter for 100+ models via one key
Select a range and send your first prompt
- Click on any range of cells in your worksheet that contains data — for example a column of sales figures.
- In the Agix sidebar, click Use selection. The active range address loads into the prompt field.
- Edit the prompt to ask a real question, such as:
- Click Send. Agix forwards the range reference and your question to the AI provider, then streams the response into the chat panel below.
Other useful commands
Once the project is set up, you can run type checking and linting from the project root at any time:What’s next
AI Providers
Switch from the default GPT-4o mini to Claude, OpenRouter, or a custom endpoint — and learn how API keys are stored securely.
Chat features
Learn how to use the chat panel to generate formulas, analyze ranges, ask follow-up questions, and write results back to cells.