@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.
Files changed (40) hide show
  1. package/README.md +24 -17
  2. package/dist/cli.js +3 -3
  3. package/package.json +3 -2
  4. package/skills/check-pr-ci/SKILL.md +12 -0
  5. package/skills/complete-pr/SKILL.md +32 -0
  6. package/skills/fetch-issue/SKILL.md +9 -0
  7. package/skills/fetch-pr/SKILL.md +9 -0
  8. package/skills/fix-bug/SKILL.md +21 -0
  9. package/skills/manage-pr-review-threads/SKILL.md +35 -0
  10. package/skills/open-pr/SKILL.md +39 -0
  11. package/skills/plan-issue-claude/SKILL.md +10 -0
  12. package/skills/plan-issue-codex/SKILL.md +10 -0
  13. package/skills/plan-issue-gemini/SKILL.md +10 -0
  14. package/skills/playwright-cli/SKILL.md +331 -0
  15. package/skills/playwright-cli/references/element-attributes.md +23 -0
  16. package/skills/playwright-cli/references/playwright-tests.md +39 -0
  17. package/skills/playwright-cli/references/request-mocking.md +87 -0
  18. package/skills/playwright-cli/references/running-code.md +231 -0
  19. package/skills/playwright-cli/references/session-management.md +170 -0
  20. package/skills/playwright-cli/references/storage-state.md +275 -0
  21. package/skills/playwright-cli/references/test-generation.md +88 -0
  22. package/skills/playwright-cli/references/tracing.md +142 -0
  23. package/skills/playwright-cli/references/video-recording.md +146 -0
  24. package/skills/refactor-structure/SKILL.md +12 -0
  25. package/skills/review-all/SKILL.md +13 -0
  26. package/skills/review-claude/SKILL.md +10 -0
  27. package/skills/review-codex/SKILL.md +10 -0
  28. package/skills/review-fix-all/SKILL.md +17 -0
  29. package/skills/review-fix-claude/SKILL.md +15 -0
  30. package/skills/review-fix-codex/SKILL.md +15 -0
  31. package/skills/review-fix-gemini/SKILL.md +15 -0
  32. package/skills/review-gemini/SKILL.md +10 -0
  33. package/skills/screenshot-claude/SKILL.md +13 -0
  34. package/skills/screenshot-codex/SKILL.md +13 -0
  35. package/skills/screenshot-gemini/SKILL.md +13 -0
  36. package/skills/simplify-pr-claude/SKILL.md +10 -0
  37. package/skills/simplify-pr-codex/SKILL.md +10 -0
  38. package/skills/simplify-pr-gemini/SKILL.md +10 -0
  39. package/skills/update-pr/SKILL.md +60 -0
  40. 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 | 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 test-related 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 | Iterate on CI results and review feedback until the PR is ready. | `$complete-pr` |
28
- | [`fetch-issue`](skills/fetch-issue/SKILL.md) | No | Fetch a GitHub issue's body and comments. | `$fetch-issue https://github.com/WillBooster/agent-skills/issues/41` |
29
- | [`fetch-pr`](skills/fetch-pr/SKILL.md) | No | Fetch a GitHub PR's body and comments. | `$fetch-pr https://github.com/WillBooster/agent-skills/pull/36` |
30
- | [`fix-bug`](skills/fix-bug/SKILL.md) | No | Reproduce a bug, fix it, and verify the fix. | `$fix-bug https://github.com/WillBooster/shared/issues/292` |
31
- | [`manage-pr-review-threads`](skills/manage-pr-review-threads/SKILL.md) | No | Inspect unresolved review threads, reply, and resolve them. | 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 | Write an implementation plan for an issue using a specified agent. | `$plan-issue-codex https://github.com/WillBooster/agent-skills/issues/41` |
34
- | [`playwright-cli`](skills/playwright-cli/SKILL.md) | No | Automate browser actions for testing, screenshots, form filling, and extraction. | `Take a screenshot of ABC page with $playwright-cli` |
35
- | [`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 the current PR using a specified agent and report only valid findings. | `$review-all` |
36
- | [`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 the current PR using a specified agent and fix valid comments. | `$review-fix-all` |
37
- | [`screenshot-claude`](skills/screenshot-claude/SKILL.md) / [`screenshot-codex`](skills/screenshot-codex/SKILL.md) / [`screenshot-gemini`](skills/screenshot-gemini/SKILL.md) | Yes | Take a screenshot of a specific page using a specified agent. | `$screenshot-codex https://example.com "Pricing" "the comparison table"` |
38
- | [`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 | Safely simplify the current PR using a specified agent. | `$simplify-pr-codex` |
39
- | [`update-pr`](skills/update-pr/SKILL.md) | No | Update the PR title and body for the current branch. | `$complete-pr then $update-pr` |
40
- | [`wbfy`](skills/wbfy/SKILL.md) | No | Apply `wbfy` to the current repository and handle follow-up fixes. | `$wbfy` |
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