@pieai/pro-gov 0.9.1 → 0.9.2

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.
@@ -25,11 +25,11 @@
25
25
  "notes": "Public rule for choosing evidence lanes and requiring fresh verification before completion.",
26
26
  "promotion": {
27
27
  "privateSourcePath": "rules/pie-rules/ai-in-the-loop.md",
28
- "privateSourceHash": "sha256:71f487152123491a2c110ad839a90780b08e04ae3a133d59bbe977bf8b2f64e4",
28
+ "privateSourceHash": "sha256:344eba8c3b1f3130ed33e4b6a4511a332e2ca477e6a40ad7d4c73006197f5445",
29
29
  "publicHash": "sha256:911702baf6ea1d724e41ea1876d23d80f4de8dfaaadbf1399a40c982c810224c",
30
30
  "sanitized": true,
31
- "lastReviewed": "2026-08-17",
32
- "reviewNotes": "Reviewed after the private source gained governed front matter and normalized formatting. The public copy intentionally keeps the portable evidence-loop method without the private Grok compatibility lane or project governance metadata."
31
+ "lastReviewed": "2026-08-20",
32
+ "reviewNotes": "Reviewed after the private source gained governed front matter and normalized formatting. The public copy intentionally keeps the portable evidence-loop method without the private Grok compatibility lane or project governance metadata. Re-reviewed 2026-08-20: the private source moved by Markdown table padding only, with no wording change, so the sanitized public copy is unaffected and only the private hash is re-pinned."
33
33
  }
34
34
  },
35
35
  {
@@ -43,7 +43,7 @@ jobs:
43
43
 
44
44
  - uses: pnpm/action-setup@v6
45
45
  with:
46
- version: 11.9.0
46
+ version: 11.22.0
47
47
 
48
48
  - uses: actions/setup-node@v6
49
49
  with:
@@ -0,0 +1,27 @@
1
+ # Seeded by `pro-gov init`. This file is project-local after seeding — add
2
+ # your own build outputs and generated paths freely.
3
+
4
+ # Dependencies and build output
5
+ node_modules
6
+ dist
7
+ build
8
+ coverage
9
+ out
10
+ .next
11
+ .turbo
12
+ .tmp
13
+
14
+ # ─────────────────────────────────────────────────────────────────────────
15
+ # PGS-managed content — DO NOT REFORMAT. Keep these entries.
16
+ #
17
+ # `pro-gov sync --check` byte-compares docs/governance against the packaged
18
+ # starter, and `pro-gov portfolio assets-check` byte-compares the shared-rule
19
+ # snapshots. A formatter that only pads Markdown table cells is enough to fail
20
+ # both, and the guardrails cannot tell cosmetic padding from a real local edit
21
+ # — re-applying the asset then refuses with asset-lock-drift.
22
+ #
23
+ # If you need one of these files changed, change it upstream in Project
24
+ # Governance System and re-sync; do not restyle it here.
25
+ # ─────────────────────────────────────────────────────────────────────────
26
+ docs/governance
27
+ docs/policy/shared-rules
package/dist/cli.js CHANGED
@@ -2328,7 +2328,10 @@ function classifyOwnership(targetPath) {
2328
2328
  if (targetPath === "lefthook.yml" || targetPath === ".github/workflows/docs-check.yml") {
2329
2329
  return "optional-guardrail";
2330
2330
  }
2331
- if (targetPath === "AGENTS.md" || targetPath === "docs/policy/best-practice-for-this-project.md" || targetPath === "docs/reference/documentation-map.md" || targetPath === "docs/reference/execution/current-work.md") {
2331
+ if (targetPath === "AGENTS.md" || // Seeded so a new project starts with the managed paths protected from its
2332
+ // formatter, then owned locally — every project adds its own build outputs,
2333
+ // so this must not be byte-compared by `sync --check`.
2334
+ targetPath === ".oxfmtignore" || targetPath === "docs/policy/best-practice-for-this-project.md" || targetPath === "docs/reference/documentation-map.md" || targetPath === "docs/reference/execution/current-work.md") {
2332
2335
  return "project-local-seed";
2333
2336
  }
2334
2337
  return "shared";
@@ -2593,7 +2596,11 @@ function inspectAgentBrowser(options) {
2593
2596
  const output = execFileSync(command2, ["--version"], {
2594
2597
  encoding: "utf8",
2595
2598
  stdio: ["ignore", "pipe", "ignore"],
2596
- timeout: 3e3
2599
+ // Host scans can run alongside the full portfolio test matrix. Keep the
2600
+ // probe bounded, but leave enough headroom for a busy Node process to
2601
+ // spawn the pinned CLI instead of misclassifying a slow start as an
2602
+ // unparseable version.
2603
+ timeout: 1e4
2597
2604
  }).trim();
2598
2605
  const installedVersion = output.match(/(?:^|\s)(\d+\.\d+\.\d+)(?:\s|$)/)?.[1];
2599
2606
  if (!installedVersion) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pieai/pro-gov",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Project-level distribution kit for Project Governance System.",
5
5
  "keywords": [
6
6
  "ai-agents",
@@ -35,7 +35,7 @@
35
35
  "access": "public"
36
36
  },
37
37
  "dependencies": {
38
- "@pieai/doc-gov": "^0.9.1"
38
+ "@pieai/doc-gov": "^0.9.2"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@pieai/swimmer-ui-kit": "1.3.2",