@willbooster/agent-skills 1.21.9 → 1.21.11

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.21.9",
3
+ "version": "1.21.11",
4
4
  "description": "A collection of agent skills for WillBooster Inc.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,7 +31,9 @@
31
31
  "sync-playwright-cli-skill": "bun scripts/syncPlaywrightCli.ts",
32
32
  "test": "bun wb test",
33
33
  "test:integration": "RUN_GITHUB_INTEGRATION=1 bun test test/cli/agentSkillsCli.e2e.test.ts",
34
- "typecheck": "bun --bun wb typecheck"
34
+ "typecheck": "bun --bun wb typecheck",
35
+ "verify": "bun --bun wb verify",
36
+ "verify-full": "bun --bun wb verify --full"
35
37
  },
36
38
  "dependencies": {
37
39
  "commander": "14.0.3",
@@ -48,7 +50,7 @@
48
50
  "@typescript/native-preview": "7.0.0-dev.20260421.2",
49
51
  "@willbooster/oxfmt-config": "1.2.2",
50
52
  "@willbooster/oxlint-config": "1.4.6",
51
- "@willbooster/wb": "13.11.11",
53
+ "@willbooster/wb": "13.12.8",
52
54
  "build-ts": "17.1.8",
53
55
  "conventional-changelog-conventionalcommits": "9.3.1",
54
56
  "lefthook": "2.1.6",
@@ -5,9 +5,15 @@ description: Refactor the source tree by splitting oversized files, grouping rel
5
5
 
6
6
  # Structure refactor workflow
7
7
 
8
- 1. Inspect the current layout with `tree -h src` (or `tree -h <specified_dir>`) and read the main entry points and largest nearby files.
9
- 2. Reorganize by responsibility to improve cohesion and reduce coupling: split oversized files, group related modules, and add directories only when they make ownership clearer.
10
- 3. Update imports as you go and preserve existing behavior unless broader changes are explicitly requested.
11
- 4. Run the lightest relevant verification, such as typecheck or lint, to catch broken imports or module wiring.
12
- 5. Commit and push the changes, then run either the `open-pr` or `update-pr` skill.
13
- 6. Summarize what moved and why the new structure is easier to maintain.
8
+ 1. Inspect the current layout using the following commands to identify structural issues, such as oversized files, mixed responsibilities, misplaced modules, unclear names, and duplicated organization patterns.
9
+ - `find src -type f -not -path '*/__generated__/*' -print0 | xargs -0 wc -l 2>/dev/null | sort -rn | head -30`
10
+ - `tree -h src`
11
+ - If the user specifies a directory, replace `src` with it.
12
+ 2. Reorganize the code by responsibility to improve cohesion and reduce coupling.
13
+ - Split oversized files, group related modules, and create new directories only when they clarify ownership.
14
+ - Update imports alongside your changes while maintaining existing behavior.
15
+ 3. Rename files and identifiers (such as variables and functions) to more accurately reflect their roles.
16
+ - Ensure all references are updated accordingly.
17
+ 4. Run the quickest relevant verification tools, such as type checkers or linters, to detect broken imports or incorrect module wiring.
18
+ 5. Commit and push the changes, then execute either the `open-pr` or `update-pr` skill.
19
+ 6. Summarize the changes made and explain why the new structure is more maintainable.