Skip to content

Commit 4d79ace

Browse files
authored
Merge pull request #9 from jamesmcroft/feature/prompts/github-bug-report
Add issue management prompts for GitHub bug reporting
2 parents fa3a0be + 7c83e0f commit 4d79ace

File tree

3 files changed

+44
-1
lines changed

3 files changed

+44
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ All prompts live under [`prompts/`](prompts/README.md). The folder categories ar
1515
| Content - Writing | `prompts/content/` | Outlining, SEO metadata, feature images, conclusions |
1616
| Content - Reviewing | `prompts/content/reviewing/` | Language quality checks, topic accuracy, readability feedback |
1717
| Social Media | `prompts/social/` | Conversation-starting posts and image prompts |
18-
| Coding | `prompts/coding/` | Release-note system prompt ready for changelog inputs |
18+
| Coding | `prompts/coding/` | Release notes plus GitHub bug-report templates |
1919
| Knowledge Retrieval | `prompts/knowledge/` | Context-grounded answering for RAG setups |
2020
| Business Communication | `prompts/business/communication/` | Email drafting, stakeholder messaging helpers |
2121
| Career Development | `prompts/career/development/` | Performance reviews, growth plans, and professional coaching |
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Issue Management
3+
description: Prompts that streamline capturing, triaging, and tracking software bugs.
4+
---
5+
6+
# Issue Management
7+
8+
- [GitHub Bug Report](github-bug-report.md) - generate a ready-to-file GitHub issue with consistent title and reproduction sections.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
title: GitHub Bug Report
3+
category: coding
4+
subcategory: issue-management
5+
description: Turn a short problem summary into a formatted GitHub bug ticket using a consistent template.
6+
llm_tools:
7+
- ChatGPT
8+
- Microsoft Copilot
9+
inputs:
10+
- Brief description of the issue
11+
- Detailed reproduction steps
12+
- Expected vs. actual behavior
13+
---
14+
15+
# GitHub Bug Report
16+
17+
Use this prompt when you want the model to draft a clean GitHub issue that matches your bug template. It is especially helpful when you know the reproduction steps and just need consistent formatting before sharing with maintainers.
18+
19+
## Prompt
20+
21+
```text
22+
Generate a GitHub bug report for "<describe issue>".
23+
24+
<Detailed description of how the issue can be reproduced>.
25+
26+
Use the following issue template:
27+
28+
- Title: "[Bug]: ..."
29+
- Steps to reproduce: "Describe accurately how we can reproduce/verify the bug"
30+
- Expected behavior: "A clear and concise description of what you expected to happen"
31+
- Actual behavior: "A clear and concise description of what actually happened"
32+
```
33+
34+
> [!TIP]
35+
> Replace the placeholders with your actual description and reproduction steps. Copilot or ChatGPT will fill in the issue sections, which you can then paste into your repository.

0 commit comments

Comments
 (0)