poe-code 3.0.139 → 3.0.141
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +9 -4
- package/dist/index.js.map +2 -2
- package/dist/prompts/github-issue-opened.md +27 -1
- package/package.json +1 -1
|
@@ -5,5 +5,31 @@ label: "GitHub: Issue Handler"
|
|
|
5
5
|
# {{repo}} - owner/repo (e.g. acme/my-app)
|
|
6
6
|
# {{issue.number}} - issue number
|
|
7
7
|
# {{issue.title}} - issue title
|
|
8
|
+
# {{issue.body}} - issue body
|
|
8
9
|
---
|
|
9
|
-
Read
|
|
10
|
+
Read this newly opened GitHub issue and leave exactly one visible GitHub response.
|
|
11
|
+
|
|
12
|
+
Issue URL: {{url}}
|
|
13
|
+
Issue title: {{issue.title}}
|
|
14
|
+
{{#issue.body}}
|
|
15
|
+
Issue body:
|
|
16
|
+
{{issue.body}}
|
|
17
|
+
{{/issue.body}}
|
|
18
|
+
|
|
19
|
+
Before answering:
|
|
20
|
+
|
|
21
|
+
- Inspect the checked-out repository when the question is about current behavior, configuration, commands, or file paths.
|
|
22
|
+
- Do not guess. Verify the answer against the repo before you post it.
|
|
23
|
+
- When relevant, name the exact config key, env var, command, or file path you verified.
|
|
24
|
+
|
|
25
|
+
- If the issue is a question or needs only guidance, post a concise comment that directly answers it.
|
|
26
|
+
- If the issue needs code changes, implement them, open or update a PR, and comment with the result.
|
|
27
|
+
- If you cannot complete the request, comment with the blocker and the next concrete step.
|
|
28
|
+
|
|
29
|
+
Make the visible response clean and easy to scan:
|
|
30
|
+
|
|
31
|
+
- Start with a direct yes/no/decision sentence.
|
|
32
|
+
- Keep it concise.
|
|
33
|
+
- If the repo supports configuration, explain how to configure it instead of only stating the default.
|
|
34
|
+
- Use at most one short list for concrete details when it improves clarity.
|
|
35
|
+
- Leave exactly one issue comment unless you are posting a PR follow-up.
|