@willbooster/agent-skills 1.19.0 → 1.20.1

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.1",
4
4
  "description": "A collection of agent skills for WillBooster Inc.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,7 +19,7 @@
19
19
  "scripts": {
20
20
  "build": "build-ts app --input src/cli.ts && chmod +x dist/cli.js",
21
21
  "check-all-for-ai": "bun run check-for-ai && bun run test",
22
- "check-for-ai": "bun install > /dev/null && bun run cleanup && bun run typecheck",
22
+ "check-for-ai": "bun install > /dev/null && bun run cleanup",
23
23
  "cleanup": "bun --bun wb lint --fix --format",
24
24
  "format": "bun --bun wb lint --format",
25
25
  "install-skills": "bunx skills@latest add ./ --skill '*' --agent claude-code --agent codex --agent gemini-cli --yes",
@@ -36,27 +36,31 @@
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": {
42
- "@biomejs/biome": "2.4.10",
43
43
  "@semantic-release/commit-analyzer": "13.0.1",
44
44
  "@semantic-release/github": "12.0.6",
45
45
  "@semantic-release/npm": "13.1.5",
46
46
  "@semantic-release/release-notes-generator": "14.1.0",
47
47
  "@tsconfig/bun": "1.0.10",
48
- "@types/bun": "1.3.11",
49
- "@willbooster/biome-config": "3.4.1",
48
+ "@types/bun": "1.3.12",
49
+ "@typescript/native-preview": "7.0.0-dev.20260417.1",
50
+ "@willbooster/oxfmt-config": "1.2.1",
51
+ "@willbooster/oxlint-config": "1.4.4",
50
52
  "@willbooster/prettier-config": "10.4.0",
51
- "@willbooster/wb": "13.7.1",
52
- "build-ts": "17.0.22",
53
- "conventional-changelog-conventionalcommits": "9.3.0",
53
+ "@willbooster/wb": "13.11.5",
54
+ "build-ts": "17.1.0",
55
+ "conventional-changelog-conventionalcommits": "9.3.1",
54
56
  "lefthook": "2.1.5",
55
- "prettier": "3.8.1",
57
+ "oxfmt": "0.45.0",
58
+ "oxlint": "1.60.0",
59
+ "oxlint-tsgolint": "0.21.0",
60
+ "prettier": "3.8.2",
56
61
  "prettier-plugin-java": "2.8.1",
57
62
  "semantic-release": "25.0.3",
58
- "sort-package-json": "3.6.1",
59
- "typescript": "5.9.3"
63
+ "sort-package-json": "3.6.1"
60
64
  },
61
65
  "engines": {
62
66
  "node": ">=24"
@@ -17,7 +17,7 @@ If the owner is `WillBooster` or `WillBoosterLab`, follow the first workflow bel
17
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
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.
20
+ 7. If you made changes in step 5, commit and push them, post `/gemini review` on the PR, wait for 3 minutes (`sleep 3m`), and return to step 1.
21
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
@@ -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.