@willbooster/agent-skills 1.21.11 → 1.22.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.
|
|
3
|
+
"version": "1.22.0",
|
|
4
4
|
"description": "A collection of agent skills for WillBooster Inc.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,8 +18,6 @@
|
|
|
18
18
|
],
|
|
19
19
|
"scripts": {
|
|
20
20
|
"build": "build-ts app --input src/cli.ts && chmod +x dist/cli.js",
|
|
21
|
-
"check-all-for-ai": "bun run check-for-ai && bun run test",
|
|
22
|
-
"check-for-ai": "bun install > /dev/null && bun run cleanup",
|
|
23
21
|
"cleanup": "bun --bun wb lint --fix --format",
|
|
24
22
|
"format": "bun --bun wb lint --format",
|
|
25
23
|
"install-skills": "bunx skills@latest add ./ --skill '*' --agent claude-code --agent codex --agent gemini-cli --yes",
|
|
@@ -46,12 +44,12 @@
|
|
|
46
44
|
"@semantic-release/npm": "13.1.5",
|
|
47
45
|
"@semantic-release/release-notes-generator": "14.1.0",
|
|
48
46
|
"@tsconfig/bun": "1.0.10",
|
|
49
|
-
"@types/bun": "1.3.
|
|
47
|
+
"@types/bun": "1.3.13",
|
|
50
48
|
"@typescript/native-preview": "7.0.0-dev.20260421.2",
|
|
51
49
|
"@willbooster/oxfmt-config": "1.2.2",
|
|
52
50
|
"@willbooster/oxlint-config": "1.4.6",
|
|
53
|
-
"@willbooster/wb": "13.12.
|
|
54
|
-
"build-ts": "17.1.
|
|
51
|
+
"@willbooster/wb": "13.12.10",
|
|
52
|
+
"build-ts": "17.1.10",
|
|
55
53
|
"conventional-changelog-conventionalcommits": "9.3.1",
|
|
56
54
|
"lefthook": "2.1.6",
|
|
57
55
|
"oxfmt": "0.47.0",
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: improve-prompt
|
|
3
|
+
description: Systematically improve system and user prompts by comparing current and refined model outputs.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Prompt Improvement Workflow
|
|
7
|
+
|
|
8
|
+
1. Run the production code to capture actual prompts and the model's corresponding responses.
|
|
9
|
+
2. Analyze the captured prompts and responses to identify specific areas for improvement.
|
|
10
|
+
3. Create debug tests without assertions in the `tests/debug` directory. These tests should output both the initially captured prompts/responses and the results of the modified prompts for direct comparison.
|
|
11
|
+
4. Iteratively refine the prompts on the debug tests. Run the debug tests to compare the model's new responses against the captured baseline until the desired improvement is achieved.
|
|
12
|
+
5. Update the production code with the refined prompts.
|
|
@@ -9,8 +9,8 @@ allowed-tools: Bash(bun:*), Bash(bunx:*), Bash(gh:*), Bash(git:*), Bash(yarn:*)
|
|
|
9
9
|
1. Update all dependencies, including subpackages, from the repository root.
|
|
10
10
|
- For Yarn projects, run `yarn up '**'`.
|
|
11
11
|
- For Bun projects, run `bunx @willbooster/agent-skills@latest update-bun-deps`.
|
|
12
|
-
2. Run either `yarn
|
|
13
|
-
3. Fix any issues reported by the `
|
|
12
|
+
2. Run either `yarn verify` or `bun verify`.
|
|
13
|
+
3. Fix any issues reported by the `verify` command.
|
|
14
14
|
- For updating Vitest, see https://raw.githubusercontent.com/WillBooster/shared/refs/heads/main/packages/wb/vitest.config.ts
|
|
15
15
|
- For other issues, refer to the latest official documentation.
|
|
16
16
|
4. Check whether each updated dependency is still required for the project.
|
package/skills/wbfy/SKILL.md
CHANGED
|
@@ -9,7 +9,7 @@ allowed-tools: Bash(bun:*), Bash(gh:*), Bash(git:*), Bash(yarn:*)
|
|
|
9
9
|
1. If the current branch is `main`, create and switch to a new branch based on the latest remote `main` branch.
|
|
10
10
|
- Ensure the new branch is derived from the latest remote `main` branch to prevent merge conflicts when opening a pull request (PR).
|
|
11
11
|
2. Run `yarn start <root_path_of_target_repo>` inside `~/ghq/github.com/WillBooster/shared/packages/wbfy`.
|
|
12
|
-
3. Run either `yarn
|
|
12
|
+
3. Run either `yarn verify` or `bun verify` in the target repository (do not run this within the `wbfy` directory).
|
|
13
13
|
4. If any checks fail, resolve them using one of the following methods:
|
|
14
14
|
- 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
15
|
- 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.
|