@willbooster/agent-skills 1.17.2 → 1.17.3
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/README.md +4 -24
- package/package.json +1 -1
- package/skills/wbfy/SKILL.md +2 -2
package/README.md
CHANGED
|
@@ -7,16 +7,16 @@ A collection of agent skills for WillBooster Inc.
|
|
|
7
7
|
|
|
8
8
|
## Install
|
|
9
9
|
|
|
10
|
-
Install
|
|
10
|
+
Install all skills globally:
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
bunx
|
|
13
|
+
bunx @willbooster/agent-skills@latest install-skills
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Install
|
|
16
|
+
Install selected skills:
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
bunx skills@latest add WillBooster/agent-skills --
|
|
19
|
+
bunx skills@latest add WillBooster/agent-skills --agent claude-code --agent codex
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
## Skills
|
|
@@ -43,23 +43,3 @@ bunx skills@latest add WillBooster/agent-skills --skill '*' --agent claude-code
|
|
|
43
43
|
## CLI
|
|
44
44
|
|
|
45
45
|
This repository also ships a Bun-powered CLI package for skill-specific commands.
|
|
46
|
-
|
|
47
|
-
```bash
|
|
48
|
-
bunx @willbooster/agent-skills@latest --help
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
Install the packaged skills globally through the CLI:
|
|
52
|
-
|
|
53
|
-
```bash
|
|
54
|
-
bunx @willbooster/agent-skills@latest install-skills
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
Example:
|
|
58
|
-
|
|
59
|
-
```bash
|
|
60
|
-
bunx @willbooster/agent-skills@latest screenshot \
|
|
61
|
-
https://example.com \
|
|
62
|
-
"Pricing" \
|
|
63
|
-
"the comparison table in the main content area" \
|
|
64
|
-
--agent codex
|
|
65
|
-
```
|
package/package.json
CHANGED
package/skills/wbfy/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: wbfy
|
|
3
|
-
description: Apply `wbfy` to the current repository.
|
|
3
|
+
description: Apply `wbfy` to the current (target) repository.
|
|
4
4
|
allowed-tools: Bash(bun:*), Bash(gh:*), Bash(git:*), Bash(yarn:*)
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ allowed-tools: Bash(bun:*), Bash(gh:*), Bash(git:*), Bash(yarn:*)
|
|
|
8
8
|
|
|
9
9
|
1. If the current branch is `main`, create and switch to a new branch from the latest remote `main` branch.
|
|
10
10
|
- Make sure the branch is derived from the latest remote `main` branch to avoid merge conflicts when opening a PR.
|
|
11
|
-
2. Run `yarn start <
|
|
11
|
+
2. Run `yarn start <root_path_of_target_repo>` in `~/ghq/github.com/WillBooster/wbfy`.
|
|
12
12
|
3. Run `yarn check-for-ai` or `bun check-for-ai` in the target repository (do not run this in `wbfy`).
|
|
13
13
|
4. If any checks fail, do one of the following:
|
|
14
14
|
- Fix the issues in the target repository, then return to step 2.
|