Note
- This feature is in public preview and subject to change.
- The responses shown in this article are examples. Copilot Chat responses are non-deterministic, so you may get different responses from the ones shown here.
Manage your project with GitHub Issues using Copilot. In this tutorial, youāll use Copilotās agentic issue creation features to turn your product idea into epics, features, and tasks. Epics represent large bodies of work, while features and tasks break the work into smaller, actionable pieces. By the end, youāll have a structured backlog ready to share with your team.
Project overview
Itās important to define what you want your product to do. In the planning phase of the software development lifecycle (SDLC), you turn ideas into actionable tasks by breaking down your project into epics, features, and smaller pieces of work. This helps you organize your thoughts, set priorities, and prepare your team for development.
When you use Copilot, you drive this process. Copilot can suggest a structure and fill in details, but the best results come when you have a sense of how you want the work to be organized. Copilot works with your input to help you refine, expand, and document your plan.
In this scenario youāll plan a new shopping website that will allow users to:
- Browse a product catalog with categories and search
- Add items to a shopping cart
- Complete secure checkouts
Your goal is to use Copilot to quickly turn this vision into a structured project plan, creating epics and detailed issues that capture each part of your site.
Set up repository
Set up a repository with GitHub Issues enabled. See Creating a new repository.
By default, issues are enabled for new repositories. If you would like to use an existing repository but donāt see the Issues tab, follow these steps to enable issues:
- From the repository, select Settings.
- Under "Features", check the Issues box.
Generate project issues
With the repository set up, you can use Copilot to turn your project vision into a set of actionable issues.
Start in the Copilot immersive view
-
At the top right of any page on GitHub, click the button next to the search bar.
The full-page, immersive, mode of Copilot Chat is displayed.
-
Using the chat panel, attach the repository for the shopping website. This allows Copilot to access the repository and create issues directly within it.
Create an epic issue
- Enter a detailed project description as your prompt. For example:
Iām planning to create a shopping website in React and Node.js. The site should allow users to browse products by category, search for items, add products to a cart, and complete checkout. Please help me plan the project by creating issues and breaking it down into epics, features, and tasks.
- Submit your prompt. Copilot will generate an issue tree, typically with an epic at the top and sub-issues for each main feature or task
Navigate the issue tree
-
Click the epic to view its details in the workbench. Navigate through the workbench to explore the issue tree.
-
Each issue typically includes a title and description. Additional metadata such as labels or assignees, can be edited directly in the workbench.
-
You can expand or collapse sub-issues to focus on specific parts of the project.
The issue tree provides a clear overview of your project structure, making it easy to navigate between epics, features, and tasks.
-
In this first iteration of the draft, Copilot may generate only high-level issues. You can refine these issues further by breaking them down into smaller tasks or features. Let's refine the issue "Feature: UI Skeleton and Navigation".
Prompt Copilot with:
Can you break down the issue "Feature: UI Skeleton and Navigation" into smaller tasks?
Copilot will generate multiple new sub-issues such as:
- Task: Set up React project structure and initial files
- Task: Create placeholder pages for main routes
- Task: Implement site-wide navigation bar component
- Task: Integrate navigation with routing
- Task: Add basic responsive layout
-
Repeat this process for the remaining feature issues in the epic.
Improve issue descriptions
After you finish generating the issue tree you may notice that Copilotās issue descriptions may be brief or unclear. To make them actionable, refine each issue as needed.
-
Start with the newly generated issue such as "Task: Create placeholder pages for main routes".
Prompt Copilot with:
Can you improve the description for āTask: Create placeholder pages for main routesā? Please provide a detailed technical summary, list the main routes to be included, outline the steps for implementation, and specify what should be delivered for this task.
-
Copilot will generate a new version of the draft issue "Task: Create placeholder pages for main routes."
At the top-left of the issue, click the versioning drop-down and select Version 2 to review the new changes.
-
Review and decide whether to keep Copilotās revised version, edit further, or prompt again for more detail.
-
Repeat this process for other issues in the epic, refining descriptions and breaking down tasks as needed.
-
Once youāre satisfied with the issue descriptions, click Create all to create the issues in your repository.
Unlink issues
If Copilot generates a sub-issue that doesn't belong to the issue tree, you can unlink it from the issue tree.
- In the workbench issue tree, click next to the sub-issue, then click Unlink sub-issue.
- The issue will be unlinked from its parent and will no longer appear under that epic in the tree.
Next steps
Now that youāve generated and refined your project issues, you can assign them to the right team members or even to Copilot itself for further assistance. To learn more about how to assign Copilot or contributors to issues, and how to continue planning and implementing your project with Copilotās agentic features, see Using GitHub Copilot to work on an issue.