@willbooster/agent-skills 1.21.9 → 1.21.10
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.
|
|
3
|
+
"version": "1.21.10",
|
|
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.
|
|
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,12 @@ 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
|
|
9
|
-
2. Reorganize by responsibility to improve cohesion and reduce coupling
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
1. Inspect the current layout using `tree -h src` (or `tree -h <specified_dir>`) to identify structural issues such as oversized files, mixed responsibilities, misplaced modules, unclear names, and duplicated organization patterns.
|
|
9
|
+
2. Reorganize the code by responsibility to improve cohesion and reduce coupling.
|
|
10
|
+
- Split oversized files, group related modules, and create new directories only when they clarify ownership.
|
|
11
|
+
- Update imports alongside your changes maintaining existing behavior.
|
|
12
|
+
3. Rename files and identifiers (such as variables and functions) to more accurately reflect their roles.
|
|
13
|
+
- Ensure all references are updated accordingly.
|
|
14
|
+
4. Run the quickest relevant verification tools, such as type checkers or linters, to detect broken imports or incorrect module wiring.
|
|
15
|
+
5. Commit and push the changes, then execute either the `open-pr` or `update-pr` skill.
|
|
16
|
+
6. Summarize the changes made and explain why the new structure is more maintainable.
|