@ifi/oh-pi-skills 0.4.2 → 0.4.4
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/package.json +1 -1
- package/skills/git-workflow/SKILL.md +12 -0
package/package.json
CHANGED
|
@@ -45,6 +45,18 @@ chore(scope): maintenance tasks
|
|
|
45
45
|
2. Generate PR title and description
|
|
46
46
|
3. Suggest reviewers based on changed files (`git log --format='%an' -- <files>`)
|
|
47
47
|
|
|
48
|
+
### PR link in summaries
|
|
49
|
+
|
|
50
|
+
When a PR has been opened, **always include the full GitHub PR URL** in any summary or status
|
|
51
|
+
update you provide. This makes it easy for the user to click through to the PR directly.
|
|
52
|
+
|
|
53
|
+
Example summary format:
|
|
54
|
+
```
|
|
55
|
+
PR: https://github.com/owner/repo/pull/42
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Use `gh pr view --json url --jq .url` to retrieve the URL if you do not already have it.
|
|
59
|
+
|
|
48
60
|
### Non-interactive safety for agent-run Git/GitHub commands
|
|
49
61
|
|
|
50
62
|
When **the agent** runs `git` or `gh`, avoid opening an interactive editor or prompt.
|