@willbooster/agent-skills 1.24.1 → 1.25.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.24.1",
3
+ "version": "1.25.0",
4
4
  "description": "A collection of agent skills for WillBooster Inc.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -40,15 +40,15 @@
40
40
  },
41
41
  "devDependencies": {
42
42
  "@semantic-release/commit-analyzer": "13.0.1",
43
- "@semantic-release/github": "12.0.6",
43
+ "@semantic-release/github": "12.0.8",
44
44
  "@semantic-release/npm": "13.1.5",
45
- "@semantic-release/release-notes-generator": "14.1.0",
45
+ "@semantic-release/release-notes-generator": "14.1.1",
46
46
  "@tsconfig/bun": "1.0.10",
47
47
  "@types/bun": "1.3.13",
48
- "@typescript/native-preview": "7.0.0-dev.20260421.2",
48
+ "@typescript/native-preview": "7.0.0-dev.20260510.1",
49
49
  "@willbooster/oxfmt-config": "1.2.2",
50
50
  "@willbooster/oxlint-config": "1.4.6",
51
- "@willbooster/wb": "13.13.0",
51
+ "@willbooster/wb": "13.13.1",
52
52
  "build-ts": "17.1.13",
53
53
  "conventional-changelog-conventionalcommits": "9.3.1",
54
54
  "lefthook": "2.1.6",
@@ -0,0 +1,17 @@
1
+ ---
2
+ name: subagent
3
+ description: Launch a general-purpose subagent with Codex, Claude Code, or Gemini CLI for a delegated task.
4
+ allowed-tools: Bash(bunx:*)
5
+ ---
6
+
7
+ # Subagent Workflow
8
+
9
+ 1. Use the user-specified agent, or your own runtime if unspecified: `codex`, `claude`, or `gemini`.
10
+ 2. Write a concrete, self-contained prompt that includes the task, relevant files or URLs, expected output, and any constraints the subagent must follow.
11
+ 3. Run the following command with a 1-hour timeout (RUN IT AS A BLOCKING, FOREGROUND TASK TO PREVENT PREMATURE TERMINATION):
12
+
13
+ ```bash
14
+ bunx @willbooster/agent-skills@latest agent --agent <codex|claude|gemini> "<prompt>"
15
+ ```
16
+
17
+ 4. Treat the returned text as the subagent's result. Validate it against the current repository or requested context before acting on it.