Learn to use AI-powered Accelerator agents — from Agents to Hero
View the Project on GitHub devopsabcs-engineering/agentic-accelerator-workshop
| Duration | 30 minutes |
| Level | Beginner |
| Prerequisites | None |
By the end of this lab, you will be able to:
You need three tools on your machine before starting the workshop. If you already have them installed, confirm the minimum versions below.
Node.js v20 or later — download from https://nodejs.org if you do not have it.
Open a terminal and run:
node --version
Confirm the output shows v20.x.x or higher.
Git — download from https://git-scm.com if you do not have it.
git --version
Visual Studio Code — download from https://code.visualstudio.com if you do not have it.
code --version

Open VS Code and install the following four extensions from the Extensions panel (Ctrl+Shift+X):
| Extension | ID |
|---|---|
| GitHub Copilot | github.copilot |
| GitHub Copilot Chat | github.copilot-chat |
| SARIF Viewer | MS-SarifVSCode.sarif-viewer |
| ESLint | dbaeumer.vscode-eslint |
You can also install them from the terminal:
code --install-extension github.copilot
code --install-extension github.copilot-chat
code --install-extension MS-SarifVSCode.sarif-viewer
code --install-extension dbaeumer.vscode-eslint
After installation, confirm all four extensions appear as enabled in the Extensions panel.

agentic-accelerator-workshop under your personal GitHub account.Clone the repository to your local machine:
git clone https://github.com/<your-username>/agentic-accelerator-workshop.git
Open the repository in VS Code:
code agentic-accelerator-workshop
Ctrl+Shift+I on Windows or Cmd+Shift+I on macOS).Type the following message:
Hello, can you see the agents in this workspace?
@security-agent, @a11y-detector)..github/agents/ folder is present in your workspace and the Copilot extensions are enabled.
Before proceeding, verify:
node --version returns v20.x.x or higherProceed to Lab 01 — Explore the Sample App.