@willbooster/agent-skills 1.19.0 → 1.20.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@willbooster/agent-skills",
3
- "version": "1.19.0",
3
+ "version": "1.20.0",
4
4
  "description": "A collection of agent skills for WillBooster Inc.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -36,6 +36,7 @@
36
36
  "prettier": "@willbooster/prettier-config",
37
37
  "dependencies": {
38
38
  "commander": "14.0.3",
39
+ "minimatch": "10.2.5",
39
40
  "yaml": "2.8.3"
40
41
  },
41
42
  "devDependencies": {
@@ -0,0 +1,19 @@
1
+ ---
2
+ name: update-deps
3
+ description: Update project dependencies, verify the result, and complete the pull request.
4
+ allowed-tools: Bash(bun:*), Bash(bunx:*), Bash(gh:*), Bash(git:*), Bash(yarn:*)
5
+ ---
6
+
7
+ # Update PR workflow
8
+
9
+ 1. Update all dependencies, including subpackages, from the repository root.
10
+ - For Yarn projects, run `yarn up '**'`.
11
+ - For Bun projects, run `bunx @willbooster/agent-skills@latest update-bun-deps`.
12
+ 2. Run either `yarn check-for-ai` or `bun check-for-ai`.
13
+ 3. Fix any issues reported by the `check-for-ai` command.
14
+ - For updating Vitest, see https://raw.githubusercontent.com/WillBooster/shared/refs/heads/main/packages/wb/vitest.config.ts
15
+ - For other issues, refer to the latest official documentation.
16
+ 4. Check whether each updated dependency is still required for the project.
17
+ - If a dependency is no longer required, remove it from the project.
18
+ 5. Commit and push the changes, then run either the `open-pr` or `update-pr` skill.
19
+ 6. Run the `complete-pr` skill.