@willbooster/agent-skills 1.17.0 → 1.17.2
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/cli.js +2 -2
- package/package.json +1 -1
- package/skills/check-pr-ci/SKILL.md +1 -1
- package/skills/complete-pr/SKILL.md +18 -19
- package/skills/plan-issue-claude/SKILL.md +1 -1
- package/skills/plan-issue-codex/SKILL.md +1 -1
- package/skills/plan-issue-gemini/SKILL.md +1 -1
- package/skills/review-all/SKILL.md +1 -1
- package/skills/review-claude/SKILL.md +1 -1
- package/skills/review-codex/SKILL.md +1 -1
- package/skills/review-fix-all/SKILL.md +2 -2
- package/skills/review-fix-claude/SKILL.md +1 -1
- package/skills/review-fix-codex/SKILL.md +1 -1
- package/skills/review-fix-gemini/SKILL.md +1 -1
- package/skills/review-gemini/SKILL.md +1 -1
- package/skills/screenshot-claude/SKILL.md +1 -1
- package/skills/screenshot-codex/SKILL.md +1 -1
- package/skills/screenshot-gemini/SKILL.md +1 -1
- package/skills/simplify-pr-claude/SKILL.md +1 -1
- package/skills/simplify-pr-codex/SKILL.md +1 -1
- package/skills/simplify-pr-gemini/SKILL.md +1 -1
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@ allowed-tools: Bash(bun:*), Bash(gh:*), Bash(git:*)
|
|
|
6
6
|
|
|
7
7
|
# Check PR CI
|
|
8
8
|
|
|
9
|
-
Run the following command with a 1-hour timeout (
|
|
9
|
+
Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest check-pr-ci`
|
|
10
10
|
|
|
11
11
|
- Exit code `0`: all latest workflows succeeded.
|
|
12
12
|
- Exit code `1`: a latest workflow failed or test-related workflows timed out; read the output for details.
|
|
@@ -3,30 +3,29 @@ name: complete-pr
|
|
|
3
3
|
description: Complete GitHub pull requests by iterating on CI and review feedback until the PR is ready.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
Read the PR body and its messages using the `fetch-pr` skill.
|
|
7
|
+
Then, merge the latest remote `main` branch into the current branch fixing any conflicts.
|
|
8
|
+
After that, fetch the current repository owner with `gh repo view --json owner --jq '.owner.login'`.
|
|
9
|
+
If the owner is `WillBooster` or `WillBoosterLab`, follow the first workflow below. Otherwise, follow the second workflow below.
|
|
9
10
|
|
|
10
11
|
## Workflow for `WillBooster` or `WillBoosterLab` repositories
|
|
11
12
|
|
|
12
|
-
1.
|
|
13
|
-
2.
|
|
14
|
-
3.
|
|
15
|
-
4.
|
|
16
|
-
5.
|
|
17
|
-
6. Address valid review comments by updating the code. For invalid comments, add explanatory comments to the code detailing why the existing implementation is necessary.
|
|
13
|
+
1. Check the CI (GitHub Actions) results using the `check-pr-ci` skill.
|
|
14
|
+
2. If any workflow has failed, fix the CI issues, commit, push, and then 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
18
|
- If there are valid review comments that are out of scope for the current PR, create new issues for them.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
22
|
|
|
23
23
|
## Workflow for the other repositories
|
|
24
24
|
|
|
25
|
-
1.
|
|
26
|
-
2.
|
|
27
|
-
3.
|
|
28
|
-
4.
|
|
29
|
-
5.
|
|
30
|
-
6. If there are valid review comments to address, make only the changes supported by the validation from step 5, commit, push, and then return to step 2.
|
|
25
|
+
1. Check the results of CI (GitHub Actions) with the `check-pr-ci` skill.
|
|
26
|
+
2. If any workflow has failed, fix the CI issues, commit, push, and then return to step 1. Otherwise, proceed to the next step.
|
|
27
|
+
3. Fetch unresolved review threads.
|
|
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.
|
|
31
30
|
- Do not post any message like review replies on non-WillBooster repositories.
|
|
32
|
-
|
|
31
|
+
6. Update the PR title and body with the `update-pr` skill to reflect all the changes.
|
|
@@ -6,5 +6,5 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# Planning workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest plan --agent claude`
|
|
10
10
|
2. Report on the issue URL.
|
|
@@ -6,5 +6,5 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# Planning workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest plan --agent codex`
|
|
10
10
|
2. Report on the issue URL.
|
|
@@ -6,5 +6,5 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# Planning workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest plan --agent gemini`
|
|
10
10
|
2. Report on the issue URL.
|
|
@@ -6,7 +6,7 @@ allowed-tools: Bash(bunx:*), Task
|
|
|
6
6
|
|
|
7
7
|
# Review workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest review --agent all`
|
|
10
10
|
2. Treat the combined output as a set of candidate comments returned by Codex, Claude Code, and Gemini CLI running concurrently.
|
|
11
11
|
3. Merge the returned review results into a single candidate comment set, deduplicating comments that point to the same underlying issue.
|
|
12
12
|
4. Judge whether each candidate comment is still valid in the current codebase.
|
|
@@ -6,5 +6,5 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# Review workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest review --agent claude`
|
|
10
10
|
2. Report on the review results.
|
|
@@ -6,5 +6,5 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# Review workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest review --agent codex`
|
|
10
10
|
2. Report on the review results.
|
|
@@ -6,8 +6,8 @@ allowed-tools: Bash(bunx:*), Task
|
|
|
6
6
|
|
|
7
7
|
# Review workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
10
|
-
2. Treat the combined output as candidate comments generated by multiple agents
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest review --agent all`
|
|
10
|
+
2. Treat the combined output as candidate review comments generated concurrently by multiple agents.
|
|
11
11
|
3. Merge the review results into a single set of candidate comments, deduplicating those that address the same underlying issue.
|
|
12
12
|
4. If there are no candidate comments, quit the workflow without modifying the code.
|
|
13
13
|
5. Determine whether each candidate comment is still valid for the current codebase.
|
|
@@ -6,7 +6,7 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# Review workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest review --agent claude`
|
|
10
10
|
2. Treat the returned review results as the candidate comment set to process. If the command returns `There is no concern.`, quit without modifying code.
|
|
11
11
|
3. Determine whether each candidate comment is still valid for the current codebase.
|
|
12
12
|
4. 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,7 +6,7 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# Review workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest review --agent codex`
|
|
10
10
|
2. Treat the returned review results as the candidate comment set to process. If the command returns `There is no concern.`, quit without modifying code.
|
|
11
11
|
3. Determine whether each candidate comment is still valid for the current codebase.
|
|
12
12
|
4. 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,7 +6,7 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# Review workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest review --agent gemini`
|
|
10
10
|
2. Treat the returned review results as the candidate comment set to process. If the command returns `There is no concern.`, quit without modifying code.
|
|
11
11
|
3. Determine whether each candidate comment is still valid for the current codebase.
|
|
12
12
|
4. 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,5 +6,5 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# Review workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest review --agent gemini`
|
|
10
10
|
2. Report on the review results.
|
|
@@ -6,7 +6,7 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# Screenshot workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest screenshot --agent claude <initial-url> <page-name> <description>`
|
|
10
10
|
- `<initial-url>`: Initial URL to open before navigating
|
|
11
11
|
- `<page-name>`: Page name to navigate to from the initial page
|
|
12
12
|
- `<description>`: Description of the part to capture in the screenshot
|
|
@@ -6,7 +6,7 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# Screenshot workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest screenshot --agent codex <initial-url> <page-name> <description>`
|
|
10
10
|
- `<initial-url>`: Initial URL to open before navigating
|
|
11
11
|
- `<page-name>`: Page name to navigate to from the initial page
|
|
12
12
|
- `<description>`: Description of the part to capture in the screenshot
|
|
@@ -6,7 +6,7 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# Screenshot workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest screenshot --agent gemini <initial-url> <page-name> <description>`
|
|
10
10
|
- `<initial-url>`: Initial URL to open before navigating
|
|
11
11
|
- `<page-name>`: Page name to navigate to from the initial page
|
|
12
12
|
- `<description>`: Description of the part to capture in the screenshot
|
|
@@ -6,5 +6,5 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# PR simplification workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest simplify --agent claude`
|
|
10
10
|
2. Report on the simplification results.
|
|
@@ -6,5 +6,5 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# PR simplification workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest simplify --agent codex`
|
|
10
10
|
2. Report on the simplification results.
|
|
@@ -6,5 +6,5 @@ allowed-tools: Bash(bunx:*)
|
|
|
6
6
|
|
|
7
7
|
# PR simplification workflow
|
|
8
8
|
|
|
9
|
-
1. Run the following command with a 1-hour timeout (
|
|
9
|
+
1. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION): `bunx @willbooster/agent-skills@latest simplify --agent gemini`
|
|
10
10
|
2. Report on the simplification results.
|