@boyingliu01/xp-gate 0.8.4 → 0.8.5

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": "@boyingliu01/xp-gate",
3
- "version": "0.8.4",
3
+ "version": "0.8.5",
4
4
  "description": "AI-driven development workflow: 6 quality gates + Delphi review + Sprint Flow",
5
5
  "bin": {
6
6
  "xp-gate": "./bin/xp-gate.js"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xp-gate",
3
- "version": "0.8.4",
3
+ "version": "0.8.5",
4
4
  "displayName": "XP-Gate",
5
5
  "description": "Extreme Programming quality gates + AI workflow skills for Claude Code. Includes 6 quality gates, Sprint Flow, and Delphi multi-expert review.",
6
6
  "author": {
@@ -14,7 +14,7 @@ In your `opencode.json`:
14
14
 
15
15
  ```json
16
16
  {
17
- "plugin": ["@xp-gate/opencode-plugin"]
17
+ "plugin": ["@boyingliu01/opencode-plugin"]
18
18
  }
19
19
  ```
20
20
 
@@ -1,6 +1,6 @@
1
1
  {
2
- "name": "@xp-gate/opencode-plugin",
3
- "version": "0.8.4",
2
+ "name": "@boyingliu01/opencode-plugin",
3
+ "version": "0.8.5",
4
4
  "type": "module",
5
5
  "main": "index.ts",
6
6
  "description": "XP-Gate quality gates + AI workflow skills for OpenCode",
@@ -2,7 +2,7 @@
2
2
  'use strict';
3
3
 
4
4
  /**
5
- * prepack.js — Bundle skills into @xp-gate/opencode-plugin before npm publish.
5
+ * prepack.js — Bundle skills into @boyingliu01/opencode-plugin before npm publish.
6
6
  *
7
7
  * Skills live in repo-root `skills/` and are gitignored in `plugins/opencode/skills/`.
8
8
  * This script copies them into the plugin package so the published tarball is self-contained.
@@ -79,7 +79,7 @@ function main() {
79
79
  process.exit(1);
80
80
  }
81
81
 
82
- console.error(`[prepack] done: ${copied} skills bundled for @xp-gate/opencode-plugin`);
82
+ console.error(`[prepack] done: ${copied} skills bundled for @boyingliu01/opencode-plugin`);
83
83
  }
84
84
 
85
85
  main();