@wipcomputer/wip-release 1.2.0 → 1.2.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/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
 
4
4
 
5
5
 
6
+
7
+
8
+ ## 1.2.3 (2026-02-21)
9
+
10
+ Fix npm bin entry: remove ./ prefix so npx wip-release works globally
11
+
12
+ ## 1.2.2 (2026-02-21)
13
+
14
+ Fix ClawHub display name and slug detection. Harden command injection fix.
15
+
6
16
  ## 1.2.0 (2026-02-21)
7
17
 
8
18
  Add ClawHub publish as step 9 in release pipeline. Fix command injection by replacing execSync with execFileSync argument arrays. Declare required binaries and secrets in SKILL.md metadata.
package/SKILL.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
- name: wip-release
3
- version: 1.2.0
2
+ name: WIP.release
3
+ version: 1.2.3
4
4
  description: Local release tool. Bumps version, updates changelog + SKILL.md, publishes to npm + GitHub.
5
5
  homepage: https://github.com/wipcomputer/wip-release
6
6
  metadata:
package/core.mjs CHANGED
@@ -264,11 +264,9 @@ function getNpmToken() {
264
264
  }
265
265
 
266
266
  function detectSkillSlug(repoPath) {
267
- const skillPath = join(repoPath, 'SKILL.md');
268
- if (!existsSync(skillPath)) return basename(repoPath);
269
- const content = readFileSync(skillPath, 'utf8');
270
- const match = content.match(/^---[\s\S]*?name:\s*(.+?)[\s\n][\s\S]*?---/);
271
- return match ? match[1].trim() : basename(repoPath);
267
+ // Slug must be lowercase and url-safe. Use directory name, not SKILL.md name
268
+ // (SKILL.md name can be display-formatted like "WIP.release").
269
+ return basename(repoPath).toLowerCase();
272
270
  }
273
271
 
274
272
  function detectRepoSlug(repoPath) {
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-release",
3
- "version": "1.2.0",
3
+ "version": "1.2.3",
4
4
  "type": "module",
5
5
  "description": "Local release tool. Bumps version, updates changelog + SKILL.md, publishes to npm + GitHub.",
6
6
  "main": "core.mjs",
7
7
  "bin": {
8
- "wip-release": "./cli.js"
8
+ "wip-release": "cli.js"
9
9
  },
10
10
  "exports": {
11
11
  ".": "./core.mjs",