pi-gsd 1.12.1 → 1.12.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.
@@ -87,13 +87,12 @@ export default function (pi: ExtensionAPI) {
87
87
  if (event.source === "extension") return { action: "continue" };
88
88
 
89
89
  const text = event.text;
90
- ctx.ui.notify(`[GSD:DBG] text.len=${text?.length} first200=${JSON.stringify((text ?? "").slice(0, 200))}`, "info");
91
-
92
90
  const includePattern = /<gsd-include\s+path="([^"]+)"(?:\s+select="([^"]*)")?\s*\/>/g;
93
91
  const includes = [...text.matchAll(includePattern)];
94
- ctx.ui.notify(`[GSD:DBG] includes=${includes.length}`, "info");
92
+ ctx.ui.notify("[GSD] len=" + String(text?.length) + " inc=" + includes.length + " txt=[" + String(text).slice(0, 250) + "]", "info");
95
93
  if (includes.length === 0) return { action: "continue" };
96
94
 
95
+
97
96
  // Package harness fallback path
98
97
  const extFile = typeof __filename !== "undefined" ? __filename : "";
99
98
  const pkgHarness = extFile
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-gsd",
3
- "version": "1.12.1",
3
+ "version": "1.12.3",
4
4
  "description": "Get Shit Done - Unofficial port of the renowned AI-native project-planning spec-driven toolkit",
5
5
  "main": "dist/pi-gsd-tools.js",
6
6
  "bin": {