@willbooster/agent-skills 1.23.3 → 1.23.5

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.23.3",
3
+ "version": "1.23.5",
4
4
  "description": "A collection of agent skills for WillBooster Inc.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -45,15 +45,15 @@
45
45
  "@semantic-release/release-notes-generator": "14.1.0",
46
46
  "@tsconfig/bun": "1.0.10",
47
47
  "@types/bun": "1.3.13",
48
- "@typescript/native-preview": "7.0.0-dev.20260504.1",
48
+ "@typescript/native-preview": "7.0.0-dev.20260421.2",
49
49
  "@willbooster/oxfmt-config": "1.2.2",
50
50
  "@willbooster/oxlint-config": "1.4.6",
51
- "@willbooster/wb": "13.12.16",
52
- "build-ts": "17.1.10",
51
+ "@willbooster/wb": "13.13.0",
52
+ "build-ts": "17.1.13",
53
53
  "conventional-changelog-conventionalcommits": "9.3.1",
54
54
  "lefthook": "2.1.6",
55
- "oxfmt": "0.48.0",
56
- "oxlint": "1.63.0",
55
+ "oxfmt": "0.49.0",
56
+ "oxlint": "1.64.0",
57
57
  "oxlint-tsgolint": "0.22.1",
58
58
  "semantic-release": "25.0.3",
59
59
  "sort-package-json": "3.6.1"
@@ -7,7 +7,7 @@ allowed-tools: Bash(bun:*), Bash(gh:*), Bash(git:*)
7
7
  # Update PR workflow
8
8
 
9
9
  Commit and push any local changes to the current branch.
10
- Draft a new pull request title and body that accurately reflect the changes made against the base branch.
10
+ Draft a new pull request title and body that accurately reflect the changes made against the base branch, keeping any existing issue-closing line, such as `Close #<issue>`, exactly once.
11
11
  Run the following command to update a pull request.
12
12
  Finally, report the pull request URL.
13
13
 
@@ -7,14 +7,15 @@ allowed-tools: Bash(bun:*), Bash(gh:*), Bash(git:*), Bash(yarn:*)
7
7
  # wbfy application workflow
8
8
 
9
9
  1. If the current branch is `main`, create and switch to a new branch based on the latest remote `main` branch.
10
- - Ensure the new branch is derived from the latest remote `main` branch to prevent merge conflicts when opening a pull request (PR).
11
- 2. Run `yarn start <root_path_of_target_repo>` inside `~/ghq/github.com/WillBooster/shared/packages/wbfy`.
12
- 3. Run either `yarn verify` or `bun verify` in the target repository (do not run this within the `wbfy` directory).
13
- 4. If any checks fail, resolve them using one of the following methods:
10
+ - Ensure the new branch is derived from the latest remote `main` branch to prevent merge conflicts when opening a pull request.
11
+ 2. Update `~/ghq/github.com/WillBooster/shared/packages/wbfy` (a git repository) to the latest `main` branch.
12
+ 3. Run `yarn start <root_path_of_target_repo>` in `~/ghq/github.com/WillBooster/shared/packages/wbfy`.
13
+ 4. Run `yarn verify` or `bun verify` in the target repository (not within the `wbfy` directory).
14
+ 5. If any checks fail, resolve them using one of the following methods:
14
15
  - If the failure originates in the target repository (e.g., existing code violates new linter rules), fix the issue there, commit and push the changes, then return to step 3.
15
16
  - If the failure is caused by configuration files modified by `wbfy` (e.g., a `wbfy`-edited `tsconfig.json` does not match the target repository), fix the issue in the `wbfy` directory, commit and push the changes, open a PR in the `wbfy` repository, then return to step 2.
16
17
  - Ensure `wbfy` generates the correct configuration files without manual adjustments, as all projects rely on its automation.
17
18
  - Avoid ad-hoc hotfixes; prefer general and versatile solutions applicable to all projects.
18
19
  - Add comments to the `wbfy` codebase to clarify the reasoning behind your fixes.
19
- 5. Commit and push the applied changes to the target repository, then run either the `open-pr` or `update-pr` skill.
20
+ 6. Commit and push the applied changes to the target repository, then run either the `open-pr` or `update-pr` skill.
20
21
  - Since `wbfy` creates, modifies, and deletes multiple files in the target repository, verify that all changes are included in your commit.