@willbooster/agent-skills 1.27.1 → 1.28.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.27.1",
3
+ "version": "1.28.0",
4
4
  "description": "A collection of agent skills for WillBooster Inc.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -48,7 +48,7 @@
48
48
  "@typescript/native-preview": "7.0.0-dev.20260511.1",
49
49
  "@willbooster/oxfmt-config": "1.2.2",
50
50
  "@willbooster/oxlint-config": "1.4.6",
51
- "@willbooster/wb": "13.15.0",
51
+ "@willbooster/wb": "13.15.2",
52
52
  "build-ts": "17.1.15",
53
53
  "conventional-changelog-conventionalcommits": "9.3.1",
54
54
  "lefthook": "2.1.6",
@@ -0,0 +1,18 @@
1
+ ---
2
+ name: submit-issue
3
+ description: Submit a GitHub issue after inspecting the current code and clarifying ambiguous requirements with the user.
4
+ ---
5
+
6
+ # Submit issue workflow
7
+
8
+ 1. Read the user's request, then inspect the current code enough to understand the affected behavior.
9
+ 2. If the issue would be ambiguous after that inspection, ask the user concise clarification questions and stop.
10
+ 3. Otherwise, create a GitHub issue from the discussion and code context, then report the issue URL.
11
+
12
+ The issue title must follow the Conventional Commits specification, such as `feat: concise issue title` or `fix: concise issue title`.
13
+
14
+ ```bash
15
+ gh issue create --title "feat: concise issue title" --body-file - <<'EOF'
16
+ [Issue body]
17
+ EOF
18
+ ```