This one-page guide walks you through installing VS Code, Node.js,
Python, the AI Assist extension, configuring your LLM provider, and
setting up UI MCP servers.
1
Prerequisites
Install VS Code, Git, and SSH keys so your machine meets every
requirement.
2
Decision
Choose between the automated installer or the manual setup
approach.
3
Execution
Follow the step-by-step install to configure extensions,
providers, and MCP servers.
4
Success
Validate the setup, run smoke checks, and confirm you are ready to
use AI Assist.
Phase 1 · The Prerequisites (Ground Work)
Install VS Code, Git, and Configure SSH Keys
Complete the three mini-steps below to set up your development
environment. Once finished, you'll have VS Code installed, Git
configured, and SSH keys ready for secure access to Deloitte
repositories.
Go to
Official Website
and click the blue Windows download
button.
Open File Explorer → Downloads, then
double-click the file that starts with
VSCodeUserSetup.
If Windows SmartScreen appears, click
More info →
Run anyway.
Accept the license agreement and keep the default
installation folder.
On the Select Additional Tasks screen, check
both “Add ‘Open with Code’” options and “Add to PATH”
so VS Code is available in the right-click menu and
terminal.
Click Install. When finished, leave
“Launch Visual Studio Code” checked and click
Finish.
Go to
Official Website
and click the blue “Mac” download button.
Open Finder (Cmd + Space → type “Downloads”), locate
the downloaded app.
Drag “Visual Studio Code” into the Applications
folder.
Launch VS Code (Cmd + Space → type “Visual” → open
“Visual Studio Code”).
Result: Your Visual Studio Code should open
and look like the default welcome screen.
What is Git? Git is a tool that helps
you track changes to your code and collaborate with
others. GitHub is where your team stores and shares
code.
Download Git: Go to
git-scm.com/download/win
and click the link named
Git for Windows/x64 Setup.
Run the installer: Find the
downloaded file in your Downloads folder, right-click
it, and choose Run as administrator. Click
"Yes" when asked.
Pick VS Code as your editor: When you
see a screen asking about an editor, select
Visual Studio Code from the list,
then click Next.
Choose the middle PATH option: Look
for a screen that says "Adjusting your PATH
environment." Select the
middle option (should mention
"command line and 3rd-party software"), then click
Next.
Finish installation: Click
Next through the remaining screens,
then click Install. When done, click
Finish.
Quick Check: Let's verify Git is
working!
Open Command Prompt: Press the
Windows key, type "cmd", and press
Enter.
Check Git version: Type this and
press Enter:
💡 Click Copy, then paste in your terminal
git --version
You should see something like "git version 2.47.0". ✓
Success!
Tell Git Who You Are:
Set your name and email: In the same
Command Prompt window, copy these commands one at a
time and press Enter after each.
Replace "username_deloitte" with your Deloitte
username and "username@deloitte.com" with your
Deloitte email:
What is Git? Git is a tool that helps
you track changes to your code and collaborate with
others. GitHub is where your team stores and shares
code.
Get admin access: Open the
"Privileges" app on your Mac (in Applications folder).
Click to grant yourself admin rights. Enter your Mac
login password when asked.
Check if Git is already installed:
Press Cmd + Space on your keyboard,
type "Terminal", and press Enter. A window will open.
Type this command and press Enter:
💡 Click Copy, then paste in your terminal
git --version
If you see a version number, Git is already
installed—please proceed to the
Tell Git Who You Are section below.
If not, continue to the next step.
Install Git (if needed): If Git
wasn't installed, macOS will show a popup asking if
you want to install "Command Line Developer Tools".
Click Install and wait for it to
complete (this may take a few minutes). Enter your Mac
password if asked.
Optional - Get the latest version:
The previous step installs a basic version of Git. For
the latest features, you can install Homebrew (a
software manager) and then Git. In Terminal, copy and
paste this command, then press Enter:
Follow the on-screen instructions. Then install Git by
typing:
💡 Click Copy, then paste in your terminal
brew install git
Verify Git is installed: Close
Terminal and open it again (press Cmd + Space, type
"Terminal", press Enter). Type this command and press
Enter:
💡 Click Copy, then paste in your terminal
git --version
You should see something like "git version 2.47.0". If
you do, Git is ready!
Tell Git Who You Are:
Set your name and email: In Terminal,
copy these commands one at a time and press Enter
after each.
Replace "username_deloitte" with your Deloitte
username and "username@deloitte.com" with your
email:
Verify once:
Run git config --global --list to confirm your
name, email, helper, and default branch before cloning
Deloitte repositories. Git Credential Manager or the macOS
keychain will prompt for SSO the first time you push over
HTTPS.
SSH Key Setup
Connect to GitHub (One-Time Setup):
This creates a secure connection between your computer
and GitHub so you can download code. Follow every
sub-step exactly.
Windows (Git Bash)
1
Create Your Security Key
Open Git Bash: Press the
Windows key, type "Git Bash", and
press Enter.
Generate the key: Copy this command
and paste it into Git Bash.
Replace "username@deloitte.com" with your email:
💡 Click Copy, then paste in your terminal
ssh-keygen -t ed25519 -C "username@deloitte.com"
Press Enter 3 times: When it asks
where to save the key, press Enter.
When it asks for a passphrase, press
Enter twice to skip.
2
Activate the Key
First command: Copy and paste this,
then press Enter:
💡 Click Copy, then paste in your terminal
eval "$(ssh-agent -s)"
Second command: Copy and paste this,
then press Enter:
💡 Click Copy, then paste in your terminal
ssh-add ~/.ssh/id_ed25519
3
Copy Your Key
Copy to clipboard: Run this command:
💡 Click Copy, then paste in your terminal
cat ~/.ssh/id_ed25519.pub | clip
Your key is now copied (you won't see anything, but
trust us!).
4
Add Key to GitHub
Go to GitHub: Open
github.com
in your browser and log in.
Open Settings: Click your profile
picture (top right) → Settings.
Go to SSH keys: Click
SSH and GPG keys on the left.
Add new key: Click the green
New SSH key button.
Fill in details: Give it a title like
"Work Laptop", then click in the "Key" box and press
Ctrl+V to paste.
Save it: Click
Add SSH key.
5
Test Connection
Test it: Back in Git Bash, run:
💡 Click Copy, then paste in your terminal
ssh -T git@github.com
If asked "Are you sure you want to continue?", type
"yes" and press Enter.
You should see a success message. 🎉 Done!
Connect to GitHub (One-Time Setup):
This creates a secure connection between your computer
and GitHub so you can download code. Follow every
sub-step exactly.
macOS (Terminal)
1
Create Your Security Key
Make sure Terminal is open: Press
Cmd + Space, type "Terminal", press
Enter.
Generate the key: Copy this command
and paste it into Terminal.
Replace "username@deloitte.com" with your email:
💡 Click Copy, then paste in your terminal
ssh-keygen -t ed25519 -C "username@deloitte.com"
Press Enter 3 times: When it asks
where to save, press Enter. For
passphrase, press Enter twice to
skip.
2
Activate the Key
First command: Copy and paste this,
then press Enter:
💡 Click Copy, then paste in your terminal
eval "$(ssh-agent -s)"
Second command: Copy and paste this,
then press Enter:
💡 Click Copy, then paste in your terminal
ssh-add --apple-use-keychain ~/.ssh/id_ed25519
3
Copy Your Key
Copy to clipboard: Run this command:
💡 Click Copy, then paste in your terminal
pbcopy < ~/.ssh/id_ed25519.pub
Your key is now copied (nothing will show, but it
worked!).
4
Add Key to GitHub
Go to GitHub: Open
github.com
in your browser and log in.
Open Settings: Click your profile
picture (top right) → Settings.
Go to SSH keys: Click
SSH and GPG keys on the left.
Add new key: Click the green
New SSH key button.
Fill in details: Give it a title like
"MacBook Pro", then click in the "Key" box and press
Cmd+V to paste.
Save it: Click
Add SSH key.
5
Test Connection
Test it: Back in Terminal, run:
💡 Click Copy, then paste in your terminal
ssh -T git@github.com
If asked "Are you sure you want to continue?", type
"yes" and press Enter.
You should see a success message. 🎉 Done!
✔
Phase 1 complete. Phase 2 unlocked below.
Phase 2 · The Decision
Choose your installation path
Pick one option. Beginner-friendly users should choose the
installer. The manual checklist is available for advanced users
who want more flexibility during setup. Once you click a card,
only that branch appears in Phase 3.
Select one card above to reveal the matching execution path.
Phase 3 · Execution (Branching)
Follow the path you selected
Each branch restates the full instructions. Buttons remain
disabled until all checkboxes or confirmations are complete.
Auto-scroll moves you to the next unlocked element.
Branch A · Installer Path
Presents the full installer quick start with OS tabs and every
verification detail. Use the "Mark Installer as Complete" button
once you finish every sub-step.
Quick Start Installation
What this does: Installs the AI Assist
extension, required runtimes, and configures MCP (where
applicable).
Get Admin Rights: Open the "Privileges"
app on your Mac. This gives you permission to install
things.
Move the App: Drag the unzipped
installer app into your "Applications" folder.
2
Run the Installer
Allow the App to Run: Open the
"Terminal" app (you can search for it). Copy and paste
the command below and press Enter. You'll need to type
your Mac password (it won't show as you type).
Start the Installer: Now, open the
installer from your Applications folder and follow the
on-screen steps.
3
Configure Installation
Choose What to Install: When you see a
list of "personas," check the boxes for:
Dev Assist (Base)
UI Assist
Design Assist
Choose Runtimes: On the next screen,
make sure both Node.js and
Python are selected.
Finish Installation: Keep clicking
"Next" and then "Install" to complete the setup.
4
Verify Setup
Check VS Code: Open VS Code. You should
see "AI Assist" in your extensions list on the side.
Say Hi to AI Assist: Find the AI Assist
chat panel and send a "Hi" message.
Check the Final Setup: Open the MCP
Configuration page. Make sure all items have a green
light next to them.
Verification
Open VS Code and confirm “AI Assist” is installed and
enabled.
Open AI Assist chat and send:
💡 Click Copy, then paste in AI Assist chat
Hi
Verify Node.js and npm in Terminal:
💡 Click Copy, then paste in your terminal
node -v
npm -v
Verify Python:
💡 Click Copy, then paste in your terminal
python3 --version
Expected versions: Node.js ≥ 18, Python ≥
3
Open MCP configuration and ensure servers are listed and
enabled (green status).
Common issues: Gatekeeper blocks, corporate
security tools, or network/VPN restrictions. If blocked, go
to the Manual Setup checklist.
Branch B · Manual Setup Checklist
Complete each step below to set up Node.js, Python, AI Assist
extension, MCP servers, and VS Code folder configuration.
Expand each accordion, follow the steps, then check "Done" to
enable the Finish button.
Verify installation: look for the AI Assist logo in
the left sidebar.
Open the AI Assist extension.
Login using Deloitte SSO (email + password). Complete
browser authentication → you’ll be redirected back to
VS Code.
Note : The “Configure LLM” and
“Verification” steps of AI Assist will be completed
during the hands-on session. You can review the steps
below for reference.
Configure LLM
Click “Select Model / API Provider” at the bottom of
the chatbot.
Click “Use your own API Key”.
Select the API Provider (LLM).
Paste the API key.
Note: If a prompt appears at the
bottom-left to “Restart VS Code,” click it to complete
installation.
Verification: Send "Hi" to AI Assist
Open the AI Assist chat panel in VS Code.
Type the following message and press Enter:
💡 Click Copy, then paste in AI Assist chat
Hi
You should receive a greeting response within a few
seconds.
If there is no response:
Confirm you are signed in with Deloitte SSO.
Ensure your LLM provider and API key are
configured in AI Assist.
Connect to Deloitte VPN.
Setup the MCP
Note: Perform MCP setup only after AI
Assist installation and verification are completed.
In the AI Assist extension, click the top icon to
configure servers.
Open “Installed” and click “Configure”. A JSON file
will open.
Copy and paste the following JSON into the opened
file:
Show MCP JSON configurationHide MCP JSON configuration
💡 Click Copy, then paste in your Agent Assist
settings