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.
Files changed (56) hide show
  1. package/dist/pi-gsd-hooks.js +1 -1
  2. package/dist/pi-gsd-tools.js +20 -20
  3. package/package.json +1 -1
  4. package/prompts/gsd-add-backlog.md +1 -1
  5. package/prompts/gsd-add-phase.md +1 -1
  6. package/prompts/gsd-add-tests.md +1 -1
  7. package/prompts/gsd-add-todo.md +1 -1
  8. package/prompts/gsd-audit-milestone.md +1 -1
  9. package/prompts/gsd-audit-uat.md +1 -1
  10. package/prompts/gsd-autonomous.md +1 -1
  11. package/prompts/gsd-check-todos.md +1 -1
  12. package/prompts/gsd-cleanup.md +1 -1
  13. package/prompts/gsd-complete-milestone.md +1 -1
  14. package/prompts/gsd-debug.md +1 -1
  15. package/prompts/gsd-discuss-phase.md +1 -1
  16. package/prompts/gsd-do.md +1 -1
  17. package/prompts/gsd-execute-milestone.md +1 -1
  18. package/prompts/gsd-execute-phase.md +1 -1
  19. package/prompts/gsd-fast.md +1 -1
  20. package/prompts/gsd-forensics.md +1 -1
  21. package/prompts/gsd-insert-phase.md +1 -1
  22. package/prompts/gsd-join-discord.md +1 -1
  23. package/prompts/gsd-list-phase-assumptions.md +1 -1
  24. package/prompts/gsd-list-workspaces.md +1 -1
  25. package/prompts/gsd-manager.md +1 -1
  26. package/prompts/gsd-map-codebase.md +1 -1
  27. package/prompts/gsd-milestone-summary.md +1 -1
  28. package/prompts/gsd-new-milestone.md +1 -1
  29. package/prompts/gsd-new-project.md +1 -1
  30. package/prompts/gsd-new-workspace.md +1 -1
  31. package/prompts/gsd-note.md +1 -1
  32. package/prompts/gsd-pause-work.md +1 -1
  33. package/prompts/gsd-plan-milestone-gaps.md +1 -1
  34. package/prompts/gsd-plan-milestone.md +1 -1
  35. package/prompts/gsd-plan-phase.md +1 -1
  36. package/prompts/gsd-plant-seed.md +1 -1
  37. package/prompts/gsd-pr-branch.md +1 -1
  38. package/prompts/gsd-profile-user.md +1 -1
  39. package/prompts/gsd-quick.md +1 -1
  40. package/prompts/gsd-reapply-patches.md +1 -1
  41. package/prompts/gsd-remove-phase.md +1 -1
  42. package/prompts/gsd-remove-workspace.md +1 -1
  43. package/prompts/gsd-research-phase.md +1 -1
  44. package/prompts/gsd-resume-work.md +1 -1
  45. package/prompts/gsd-review-backlog.md +1 -1
  46. package/prompts/gsd-review.md +1 -1
  47. package/prompts/gsd-session-report.md +1 -1
  48. package/prompts/gsd-set-profile.md +1 -1
  49. package/prompts/gsd-settings.md +1 -1
  50. package/prompts/gsd-ship.md +1 -1
  51. package/prompts/gsd-thread.md +1 -1
  52. package/prompts/gsd-ui-phase.md +1 -1
  53. package/prompts/gsd-ui-review.md +1 -1
  54. package/prompts/gsd-validate-phase.md +1 -1
  55. package/prompts/gsd-verify-work.md +1 -1
  56. package/prompts/gsd-workstreams.md +1 -1
@@ -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(import_node_path3.default.dirname(filePath), incPath);
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");