Note
GitHub Copilot Extensions은(는) beta 버전이며 변경될 수 있습니다.
About demo agents
If you're not ready to build your own Copilot agent from scratch, you can clone and use a demo agent to experiment with GitHub Copilot Extensions. You can use the demo agent as a basis for your own agent, or you can use it to familiarize yourself with the Copilot Extensions development and deployment process.
GitHub provides a few different demo agents that you can use. You can find them in the copilot-extensions organization.
This article provides instructions for running the Blackbeard demo agent on your local machine, but should be similar for other demo agents.
-
Clone the repository. Run the following command in your terminal (Mac or Linux) or Git Bash (Windows):
Shell git clone https://github.com/copilot-extensions/blackbeard-extension.git
git clone https://github.com/copilot-extensions/blackbeard-extension.git
-
Open the agent repository locally by running the following command in your terminal (Mac or Linux) or Git Bash (Windows):
Shell cd blackbeard-extension
cd blackbeard-extension
-
To install the necessary dependencies, run the following command in your terminal (Mac or Linux) or Git Bash (Windows):
Shell npm install
npm install
-
To start your server, run the following command in your terminal (Mac or Linux) or Git Bash (Windows):
Shell npm start
npm start
Note
Keep the terminal window open while you are using your agent.