pi-gsd 2.0.6 → 2.0.8
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/dist/pi-gsd-hooks.js +1 -1
- package/dist/pi-gsd-tools.js +20 -20
- package/package.json +1 -1
- package/prompts/gsd-add-backlog.md +1 -1
- package/prompts/gsd-add-phase.md +1 -1
- package/prompts/gsd-add-tests.md +1 -1
- package/prompts/gsd-add-todo.md +1 -1
- package/prompts/gsd-audit-milestone.md +1 -1
- package/prompts/gsd-audit-uat.md +1 -1
- package/prompts/gsd-autonomous.md +1 -1
- package/prompts/gsd-check-todos.md +1 -1
- package/prompts/gsd-cleanup.md +1 -1
- package/prompts/gsd-complete-milestone.md +1 -1
- package/prompts/gsd-debug.md +1 -1
- package/prompts/gsd-discuss-phase.md +1 -1
- package/prompts/gsd-do.md +1 -1
- package/prompts/gsd-execute-milestone.md +1 -1
- package/prompts/gsd-execute-phase.md +1 -1
- package/prompts/gsd-fast.md +1 -1
- package/prompts/gsd-forensics.md +1 -1
- package/prompts/gsd-insert-phase.md +1 -1
- package/prompts/gsd-join-discord.md +1 -1
- package/prompts/gsd-list-phase-assumptions.md +1 -1
- package/prompts/gsd-list-workspaces.md +1 -1
- package/prompts/gsd-manager.md +1 -1
- package/prompts/gsd-map-codebase.md +1 -1
- package/prompts/gsd-milestone-summary.md +1 -1
- package/prompts/gsd-new-milestone.md +1 -1
- package/prompts/gsd-new-project.md +1 -1
- package/prompts/gsd-new-workspace.md +1 -1
- package/prompts/gsd-note.md +1 -1
- package/prompts/gsd-pause-work.md +1 -1
- package/prompts/gsd-plan-milestone-gaps.md +1 -1
- package/prompts/gsd-plan-milestone.md +1 -1
- package/prompts/gsd-plan-phase.md +1 -1
- package/prompts/gsd-plant-seed.md +1 -1
- package/prompts/gsd-pr-branch.md +1 -1
- package/prompts/gsd-profile-user.md +1 -1
- package/prompts/gsd-quick.md +1 -1
- package/prompts/gsd-reapply-patches.md +1 -1
- package/prompts/gsd-remove-phase.md +1 -1
- package/prompts/gsd-remove-workspace.md +1 -1
- package/prompts/gsd-research-phase.md +1 -1
- package/prompts/gsd-resume-work.md +1 -1
- package/prompts/gsd-review-backlog.md +1 -1
- package/prompts/gsd-review.md +1 -1
- package/prompts/gsd-session-report.md +1 -1
- package/prompts/gsd-set-profile.md +1 -1
- package/prompts/gsd-settings.md +1 -1
- package/prompts/gsd-ship.md +1 -1
- package/prompts/gsd-thread.md +1 -1
- package/prompts/gsd-ui-phase.md +1 -1
- package/prompts/gsd-ui-review.md +1 -1
- package/prompts/gsd-validate-phase.md +1 -1
- package/prompts/gsd-verify-work.md +1 -1
- package/prompts/gsd-workstreams.md +1 -1
package/dist/pi-gsd-hooks.js
CHANGED
|
@@ -783,7 +783,7 @@ function runLoop(content, filePath, config, projectRoot, pkgRoot, rawArguments,
|
|
|
783
783
|
if (inDeadZone(tag.start, extractCodeFenceRegions(current))) continue;
|
|
784
784
|
const incPath = tag.node.attrs["path"];
|
|
785
785
|
if (!incPath) continue;
|
|
786
|
-
const abs = import_node_path3.default.resolve(
|
|
786
|
+
const abs = import_node_path3.default.resolve(projectRoot, incPath);
|
|
787
787
|
const check = checkTrustedPath(abs, config, projectRoot, pkgRoot);
|
|
788
788
|
if (!check.ok) throw new Error(`Include rejected: ${check.reason}`);
|
|
789
789
|
const included = import_node_fs2.default.readFileSync(abs, "utf8");
|