@willbooster/agent-skills 1.15.2 → 1.17.0
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 +24 -17
- package/dist/cli.js +3 -3
- package/package.json +3 -2
- package/skills/check-pr-ci/SKILL.md +12 -0
- package/skills/complete-pr/SKILL.md +32 -0
- package/skills/fetch-issue/SKILL.md +9 -0
- package/skills/fetch-pr/SKILL.md +9 -0
- package/skills/fix-bug/SKILL.md +21 -0
- package/skills/manage-pr-review-threads/SKILL.md +35 -0
- package/skills/open-pr/SKILL.md +39 -0
- package/skills/plan-issue-claude/SKILL.md +10 -0
- package/skills/plan-issue-codex/SKILL.md +10 -0
- package/skills/plan-issue-gemini/SKILL.md +10 -0
- package/skills/playwright-cli/SKILL.md +331 -0
- package/skills/playwright-cli/references/element-attributes.md +23 -0
- package/skills/playwright-cli/references/playwright-tests.md +39 -0
- package/skills/playwright-cli/references/request-mocking.md +87 -0
- package/skills/playwright-cli/references/running-code.md +231 -0
- package/skills/playwright-cli/references/session-management.md +170 -0
- package/skills/playwright-cli/references/storage-state.md +275 -0
- package/skills/playwright-cli/references/test-generation.md +88 -0
- package/skills/playwright-cli/references/tracing.md +142 -0
- package/skills/playwright-cli/references/video-recording.md +146 -0
- package/skills/refactor-structure/SKILL.md +12 -0
- package/skills/review-all/SKILL.md +13 -0
- package/skills/review-claude/SKILL.md +10 -0
- package/skills/review-codex/SKILL.md +10 -0
- package/skills/review-fix-all/SKILL.md +17 -0
- package/skills/review-fix-claude/SKILL.md +15 -0
- package/skills/review-fix-codex/SKILL.md +15 -0
- package/skills/review-fix-gemini/SKILL.md +15 -0
- package/skills/review-gemini/SKILL.md +10 -0
- package/skills/screenshot-claude/SKILL.md +13 -0
- package/skills/screenshot-codex/SKILL.md +13 -0
- package/skills/screenshot-gemini/SKILL.md +13 -0
- package/skills/simplify-pr-claude/SKILL.md +10 -0
- package/skills/simplify-pr-codex/SKILL.md +10 -0
- package/skills/simplify-pr-gemini/SKILL.md +10 -0
- package/skills/update-pr/SKILL.md +60 -0
- package/skills/wbfy/SKILL.md +17 -0
package/README.md
CHANGED
|
@@ -21,23 +21,24 @@ bunx skills@latest add WillBooster/agent-skills --skill '*' --agent claude-code
|
|
|
21
21
|
|
|
22
22
|
## Skills
|
|
23
23
|
|
|
24
|
-
| Skill | Uses Subagent | Purpose
|
|
25
|
-
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
|
|
26
|
-
| [`check-pr-ci`](skills/check-pr-ci/SKILL.md) | No | Check the latest
|
|
27
|
-
| [`complete-pr`](skills/complete-pr/SKILL.md) | No |
|
|
28
|
-
| [`fetch-issue`](skills/fetch-issue/SKILL.md) | No | Fetch
|
|
29
|
-
| [`fetch-pr`](skills/fetch-pr/SKILL.md) | No | Fetch a
|
|
30
|
-
| [`fix-bug`](skills/fix-bug/SKILL.md) | No | Reproduce a bug, fix it, and verify the
|
|
31
|
-
| [`manage-pr-review-threads`](skills/manage-pr-review-threads/SKILL.md) | No | Inspect
|
|
32
|
-
| [`open-pr`](skills/open-pr/SKILL.md) | No | Create a PR for the current branch.
|
|
33
|
-
| [`plan-issue-claude`](skills/plan-issue-claude/SKILL.md) / [`plan-issue-codex`](skills/plan-issue-codex/SKILL.md) / [`plan-issue-gemini`](skills/plan-issue-gemini/SKILL.md) | Yes |
|
|
34
|
-
| [`playwright-cli`](skills/playwright-cli/SKILL.md) | No | Automate browser
|
|
35
|
-
| [`
|
|
36
|
-
| [`review-
|
|
37
|
-
| [`
|
|
38
|
-
| [`
|
|
39
|
-
| [`
|
|
40
|
-
| [`
|
|
24
|
+
| Skill | Uses Subagent | Purpose | Example Prompt (`$<skill_name>` for Codex CLI, `/<skill_name>` for Claude Code) |
|
|
25
|
+
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- | ---------------------------------------------------------- | ------------------------------------------------------------------------------- |
|
|
26
|
+
| [`check-pr-ci`](skills/check-pr-ci/SKILL.md) | No | Check the latest CI results for the current PR. | N/A (called internally by [`complete-pr`](skills/complete-pr/SKILL.md)) |
|
|
27
|
+
| [`complete-pr`](skills/complete-pr/SKILL.md) | No | Finish a PR by handling CI and review feedback. | `$complete-pr` |
|
|
28
|
+
| [`fetch-issue`](skills/fetch-issue/SKILL.md) | No | Fetch an issue body and messages. | `$fetch-issue https://github.com/WillBooster/agent-skills/issues/41` |
|
|
29
|
+
| [`fetch-pr`](skills/fetch-pr/SKILL.md) | No | Fetch a PR body and messages. | `$fetch-pr https://github.com/WillBooster/agent-skills/pull/36` |
|
|
30
|
+
| [`fix-bug`](skills/fix-bug/SKILL.md) | No | Reproduce a bug with tests, fix it, and verify the result. | `$fix-bug https://github.com/WillBooster/shared/issues/292` |
|
|
31
|
+
| [`manage-pr-review-threads`](skills/manage-pr-review-threads/SKILL.md) | No | Inspect, reply to, and resolve PR review threads. | N/A (called internally by [`complete-pr`](skills/complete-pr/SKILL.md)) |
|
|
32
|
+
| [`open-pr`](skills/open-pr/SKILL.md) | No | Create a PR for the current branch. | `Update README based on the latest codebase then $open-pr` |
|
|
33
|
+
| [`plan-issue-claude`](skills/plan-issue-claude/SKILL.md) / [`plan-issue-codex`](skills/plan-issue-codex/SKILL.md) / [`plan-issue-gemini`](skills/plan-issue-gemini/SKILL.md) | Yes | Generate an implementation plan with a chosen agent. | `$plan-issue-codex https://github.com/WillBooster/agent-skills/issues/41` |
|
|
34
|
+
| [`playwright-cli`](skills/playwright-cli/SKILL.md) | No | Automate browser tasks with Playwright CLI. | `Take a screenshot of ABC page with $playwright-cli` |
|
|
35
|
+
| [`refactor-structure`](skills/refactor-structure/SKILL.md) | No | Reorganize the source tree without changing behavior. | `$refactor-structure` |
|
|
36
|
+
| [`review-all`](skills/review-all/SKILL.md) / [`review-claude`](skills/review-claude/SKILL.md) / [`review-codex`](skills/review-codex/SKILL.md) / [`review-gemini`](skills/review-gemini/SKILL.md) | Yes | Review code and report only still-valid findings. | `$review-all` |
|
|
37
|
+
| [`review-fix-all`](skills/review-fix-all/SKILL.md) / [`review-fix-claude`](skills/review-fix-claude/SKILL.md) / [`review-fix-codex`](skills/review-fix-codex/SKILL.md) / [`review-fix-gemini`](skills/review-fix-gemini/SKILL.md) | Yes | Review code and fix only still-valid findings. | `$review-fix-all` |
|
|
38
|
+
| [`screenshot-claude`](skills/screenshot-claude/SKILL.md) / [`screenshot-codex`](skills/screenshot-codex/SKILL.md) / [`screenshot-gemini`](skills/screenshot-gemini/SKILL.md) | Yes | Take a page screenshot with a chosen agent. | `$screenshot-codex https://example.com "Pricing" "the comparison table"` |
|
|
39
|
+
| [`simplify-pr-claude`](skills/simplify-pr-claude/SKILL.md) / [`simplify-pr-codex`](skills/simplify-pr-codex/SKILL.md) / [`simplify-pr-gemini`](skills/simplify-pr-gemini/SKILL.md) | Yes | Simplify the current PR with a chosen agent. | `$simplify-pr-codex` |
|
|
40
|
+
| [`update-pr`](skills/update-pr/SKILL.md) | No | Update the PR title and body. | `$complete-pr then $update-pr` |
|
|
41
|
+
| [`wbfy`](skills/wbfy/SKILL.md) | No | Apply `wbfy` to the current repository. | `$wbfy` |
|
|
41
42
|
|
|
42
43
|
## CLI
|
|
43
44
|
|
|
@@ -47,6 +48,12 @@ This repository also ships a Bun-powered CLI package for skill-specific commands
|
|
|
47
48
|
bunx @willbooster/agent-skills@latest --help
|
|
48
49
|
```
|
|
49
50
|
|
|
51
|
+
Install the packaged skills globally through the CLI:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
bunx @willbooster/agent-skills@latest install-skills
|
|
55
|
+
```
|
|
56
|
+
|
|
50
57
|
Example:
|
|
51
58
|
|
|
52
59
|
```bash
|