@willbooster/agent-skills 1.21.6 → 1.21.8
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/README.md +8 -0
- package/package.json +10 -10
- package/skills/complete-pr/SKILL.md +2 -23
- package/skills/complete-pr/references/other-repositories-workflow.md +7 -0
- package/skills/complete-pr/references/willbooster-workflow.md +9 -0
- package/skills/fetch-issue/SKILL.md +1 -1
- package/skills/fetch-pr/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -45,3 +45,11 @@ bunx skills@latest add WillBooster/agent-skills --agent claude-code --agent code
|
|
|
45
45
|
## CLI
|
|
46
46
|
|
|
47
47
|
This repository also ships a Bun-powered CLI package for skill-specific commands.
|
|
48
|
+
|
|
49
|
+
## Recommended Other Skills
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
bunx skills@latest add https://cli.sentry.dev --agent claude-code --agent codex
|
|
53
|
+
bunx skills@latest add railwayapp/railway-skills --agent claude-code --agent codex
|
|
54
|
+
bunx skills@latest add https://github.com/cloudflare/skills --skill wrangler --agent claude-code --agent codex
|
|
55
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@willbooster/agent-skills",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.8",
|
|
4
4
|
"description": "A collection of agent skills for WillBooster Inc.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -45,16 +45,16 @@
|
|
|
45
45
|
"@semantic-release/release-notes-generator": "14.1.0",
|
|
46
46
|
"@tsconfig/bun": "1.0.10",
|
|
47
47
|
"@types/bun": "1.3.12",
|
|
48
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
49
|
-
"@willbooster/oxfmt-config": "1.2.
|
|
50
|
-
"@willbooster/oxlint-config": "1.4.
|
|
51
|
-
"@willbooster/wb": "13.11.
|
|
52
|
-
"build-ts": "17.1.
|
|
48
|
+
"@typescript/native-preview": "7.0.0-dev.20260421.2",
|
|
49
|
+
"@willbooster/oxfmt-config": "1.2.2",
|
|
50
|
+
"@willbooster/oxlint-config": "1.4.6",
|
|
51
|
+
"@willbooster/wb": "13.11.11",
|
|
52
|
+
"build-ts": "17.1.8",
|
|
53
53
|
"conventional-changelog-conventionalcommits": "9.3.1",
|
|
54
|
-
"lefthook": "2.1.
|
|
55
|
-
"oxfmt": "0.
|
|
56
|
-
"oxlint": "1.
|
|
57
|
-
"oxlint-tsgolint": "0.
|
|
54
|
+
"lefthook": "2.1.6",
|
|
55
|
+
"oxfmt": "0.47.0",
|
|
56
|
+
"oxlint": "1.62.0",
|
|
57
|
+
"oxlint-tsgolint": "0.22.1",
|
|
58
58
|
"semantic-release": "25.0.3",
|
|
59
59
|
"sort-package-json": "3.6.1"
|
|
60
60
|
},
|
|
@@ -6,26 +6,5 @@ description: Complete GitHub pull requests by iterating on CI and review feedbac
|
|
|
6
6
|
Use the `fetch-pr` skill to read the PR body and its messages.
|
|
7
7
|
Fetch the latest changes from the remote. If the remote default branch has new commits, merge it into the current branch, resolve any conflicts, and push the changes.
|
|
8
8
|
Next, fetch the current repository owner using the command `gh repo view --json owner --jq '.owner.login'`.
|
|
9
|
-
If the owner is `WillBooster` or `WillBoosterLab`, follow
|
|
10
|
-
|
|
11
|
-
## Workflow for `WillBooster` or `WillBoosterLab` repositories
|
|
12
|
-
|
|
13
|
-
1. Check the CI (GitHub Actions) results using the `check-pr-ci` skill.
|
|
14
|
-
2. If any workflow fails, pull the latest remote changes, resolve the issues, commit, push, and return to step 1. Otherwise, proceed to the next step.
|
|
15
|
-
3. Fetch unresolved review threads using the `manage-pr-review-threads` skill.
|
|
16
|
-
4. Review each unresolved thread to determine if it requires code or documentation changes. Validate each claim against the current codebase first, and reproduce issues or consult official documentation when necessary instead of relying on memory.
|
|
17
|
-
5. Address valid review comments by updating the code. For invalid comments, add explanatory comments to the code detailing why the existing implementation is necessary.
|
|
18
|
-
- If there are valid review comments that are out of scope for the current PR, create new issues for them.
|
|
19
|
-
6. Reply to all review threads using the `manage-pr-review-threads` skill.
|
|
20
|
-
7. If you made changes in step 5, commit and push them, post `/gemini review` on the PR, wait for 5 minutes (`sleep 5m`), and return to step 1.
|
|
21
|
-
8. Update the PR title and body using the `update-pr` skill to reflect all changes.
|
|
22
|
-
|
|
23
|
-
## Workflow for the other repositories
|
|
24
|
-
|
|
25
|
-
1. Check the CI (GitHub Actions) results using the `check-pr-ci` skill.
|
|
26
|
-
2. If any workflow fails, pull the latest remote changes, resolve the issues, commit, push, and return to step 1. Otherwise, proceed to the next step.
|
|
27
|
-
3. Fetch unresolved review threads using the `manage-pr-review-threads` skill.
|
|
28
|
-
4. Review each unresolved thread and decide whether it requires a code or documentation change. Validate each claim against the current codebase first, and reproduce it or check official documentation when needed instead of relying on memory. Ignore only comments that are clearly outdated, incorrect, or intentionally declined with solid reasoning.
|
|
29
|
-
5. If there are valid review comments to address, make only the changes supported by the validation from step 4, commit, push, and then return to step 1.
|
|
30
|
-
- Do not post any message like review replies on non-WillBooster repositories.
|
|
31
|
-
6. Update the PR title and body using the `update-pr` skill to reflect all changes.
|
|
9
|
+
If the owner is `WillBooster` or `WillBoosterLab`, follow `references/willbooster-workflow.md`.
|
|
10
|
+
Otherwise, follow `references/other-repositories-workflow.md`.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
1. Check the CI (GitHub Actions) results using the `check-pr-ci` skill.
|
|
2
|
+
2. If any workflow fails, pull the latest remote changes, resolve the issues, commit, push, and return to step 1. Otherwise, proceed to the next step.
|
|
3
|
+
3. Fetch unresolved review threads using the `manage-pr-review-threads` skill.
|
|
4
|
+
4. Review each unresolved thread and decide whether it requires a code or documentation change. Validate each claim against the current codebase first, and reproduce it or check official documentation when needed instead of relying on memory. Ignore only comments that are clearly outdated, incorrect, or intentionally declined with solid reasoning.
|
|
5
|
+
5. If there are valid review comments to address, make only the changes supported by the validation from step 4, commit, push, and then return to step 1.
|
|
6
|
+
- Do not post any message like review replies on non-WillBooster repositories.
|
|
7
|
+
6. Update the PR title and body using the `update-pr` skill to reflect all changes.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
1. Check the CI (GitHub Actions) results using the `check-pr-ci` skill.
|
|
2
|
+
2. If any workflow fails, pull the latest remote changes, resolve the issues, commit, push, and return to step 1. Otherwise, proceed to the next step.
|
|
3
|
+
3. Fetch unresolved review threads using the `manage-pr-review-threads` skill.
|
|
4
|
+
4. Review each unresolved thread to determine if it requires code or documentation changes. Validate each claim against the current codebase first, and reproduce issues or consult official documentation when necessary instead of relying on memory.
|
|
5
|
+
5. Address valid review comments by updating the code. For invalid comments, add explanatory comments to the code detailing why the existing implementation is necessary.
|
|
6
|
+
- If there are valid review comments that are out of scope for the current PR, create new issues for them.
|
|
7
|
+
6. Reply to all review threads using the `manage-pr-review-threads` skill.
|
|
8
|
+
7. If you made changes in step 5, commit and push them, post `/gemini review` on the PR, wait for 5 minutes (`sleep 5m`), and return to step 1.
|
|
9
|
+
8. Update the PR title and body using the `update-pr` skill to reflect all changes.
|
|
@@ -4,4 +4,4 @@ description: Fetch a GitHub issue body and its messages for the current reposito
|
|
|
4
4
|
allowed-tools: Bash(bun:*), Bash(gh:*)
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
Run the following command to fetch the issue body and its messages: `bunx @willbooster/agent-skills@latest fetch-issue <issue-number-or-url>`
|
|
7
|
+
Run the following command in the local repository to fetch the issue body and its messages: `bunx @willbooster/agent-skills@latest fetch-issue <issue-number-or-url>`
|
package/skills/fetch-pr/SKILL.md
CHANGED
|
@@ -4,4 +4,4 @@ description: Fetch a GitHub pull request body and its messages for the current r
|
|
|
4
4
|
allowed-tools: Bash(bun:*), Bash(gh:*)
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
Run the following command to fetch the pull request body and messages
|
|
7
|
+
Run the following command in the local repository to fetch the pull request body and messages (excluding inline review comments): `bunx @willbooster/agent-skills@latest fetch-pr <pr-number-or-url>`
|