poe-code 3.0.150 → 3.0.152

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.
@@ -11,14 +11,8 @@ prefix:
11
11
  ---
12
12
  Read {{url}} and leave a visible GitHub response to the comment from {{comment.author}}: {{comment.body}}
13
13
 
14
- {{#pr.number}}
15
- - This comment is on pull request #{{pr.number}}.
16
- - If the comment asks for code changes, implement them on the current PR branch, update the existing PR, and comment with the result.
17
- - Do not open a new PR unless updating the existing PR is impossible.
18
- {{/pr.number}}
19
- {{^pr.number}}
20
14
  - If the comment asks for code changes, open or update a PR and comment with the result.
21
- {{/pr.number}}
15
+ - Before starting new work, check for existing open PRs by the agent that relate to this issue. If any exist and need updating based on the new instructions, update them instead of opening a new PR.
22
16
  - If blocked, comment with the blocker and next step.
23
17
 
24
18
  {{skill_github_cli}}
@@ -12,6 +12,9 @@ verify_before_responding: |
12
12
 
13
13
  skill_github_cli: |
14
14
  Use the `gh` CLI for all GitHub operations (issues, PRs, reviews, checks).
15
+ When posting GitHub bodies, comments, or reviews that contain Markdown, code fences, backticks, `$`, or multiple lines, do not inline that text in a double-quoted shell argument.
16
+ Write the content with a quoted heredoc and pass it via `--body-file` so the shell cannot mangle it.
17
+ After posting or editing, verify the rendered result with `gh issue view` / `gh pr view`.
15
18
 
16
19
  pull_request_guidelines: |
17
20
  - One logical change per PR. Feel free to open multiple PRs.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "poe-code",
3
- "version": "3.0.150",
3
+ "version": "3.0.152",
4
4
  "description": "CLI tool to configure Poe API for developer workflows.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",