@pieai/pro-gov 0.3.5 → 0.3.7
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/README.md +27 -4
- package/assets/docs/reference/adoption/adoption-playbook.md +20 -3
- package/assets/docs/reference/adoption/project-relationship.md +7 -5
- package/assets/docs/reference/adoption/public-release-checklist.md +24 -1
- package/assets/public-agent-assets/README.md +40 -0
- package/assets/public-agent-assets/bundles/.gitkeep +0 -0
- package/assets/public-agent-assets/bundles/base-governance.json +11 -0
- package/assets/public-agent-assets/commands/pie-commands/README.md +3 -0
- package/assets/public-agent-assets/registry.json +132 -0
- package/assets/public-agent-assets/rules/pie-rules/.gitkeep +0 -0
- package/assets/public-agent-assets/rules/pie-rules/ai-in-the-loop.md +66 -0
- package/assets/public-agent-assets/rules/pie-rules/rule-evolution-methodology.md +74 -0
- package/assets/public-agent-assets/skills/dokobot/.gitkeep +0 -0
- package/assets/public-agent-assets/skills/npx-skills/README.md +3 -0
- package/assets/public-agent-assets/skills/pie-skills/.gitkeep +0 -0
- package/assets/public-agent-assets/skills/pie-skills/beginner-friendly-docs/SKILL.md +225 -0
- package/assets/public-agent-assets/skills/pie-skills/doc-cross-validator/SKILL.md +194 -0
- package/assets/starter/.github/workflows/docs-check.yml +2 -4
- package/assets/starter/docs/governance/agents-routing/doc-only-v0.9.md +2 -3
- package/assets/starter/docs/governance/agents-routing/engineering-runtime-v0.9.md +2 -3
- package/assets/starter/docs/governance/boundary.md +2 -2
- package/assets/starter/docs/governance/ssot-v0.9.md +2 -2
- package/assets/starter/lefthook.template.yml +2 -2
- package/cli-guide.md +18 -3
- package/dist/cli.js +845 -91
- package/package.json +5 -5
- package/assets/docs/reference/adoption/downstream-project-registry.md +0 -85
- package/assets/starter/.gemini/settings.json +0 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pieai/pro-gov",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"description": "Project-level distribution kit for Project Governance System.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agents",
|
|
@@ -35,20 +35,20 @@
|
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@pieai/doc-gov": "^0.3.
|
|
38
|
+
"@pieai/doc-gov": "^0.3.7"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/node": "
|
|
41
|
+
"@types/node": "24.13.2",
|
|
42
42
|
"esbuild": "0.27.7",
|
|
43
43
|
"tsx": "4.21.0",
|
|
44
44
|
"typescript": "6.0.3"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
|
-
"node": ">=
|
|
47
|
+
"node": ">=24 <25"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"dev": "tsx src/cli.ts",
|
|
51
|
-
"build": "node scripts/copy-assets.mjs &&
|
|
51
|
+
"build": "node scripts/copy-assets.mjs && esbuild src/cli.ts --bundle --platform=node --format=esm --target=node24 --banner:js=\"#!/usr/bin/env node\" --outfile=dist/cli.js && chmod +x dist/cli.js",
|
|
52
52
|
"pretest": "pnpm --filter @pieai/doc-gov build && pnpm build",
|
|
53
53
|
"test": "tsx --test src/*.test.ts src/**/*.test.ts",
|
|
54
54
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
id: REF-DOWNSTREAM-PROJECT-REGISTRY
|
|
3
|
-
title: Downstream Project Registry
|
|
4
|
-
type: reference
|
|
5
|
-
status: active
|
|
6
|
-
canonical: true
|
|
7
|
-
owner: human
|
|
8
|
-
created: 2026-06-09
|
|
9
|
-
last_reviewed: 2026-06-14
|
|
10
|
-
domain: adoption
|
|
11
|
-
tags:
|
|
12
|
-
- downstream
|
|
13
|
-
- adoption
|
|
14
|
-
- registry
|
|
15
|
-
pinned: false
|
|
16
|
-
related:
|
|
17
|
-
- REF-PROJECT-RELATIONSHIP
|
|
18
|
-
- POLICY-SYNC-STRATEGY
|
|
19
|
-
---
|
|
20
|
-
|
|
21
|
-
# Downstream Project Registry
|
|
22
|
-
|
|
23
|
-
This registry is the central Project Governance System ledger for known local
|
|
24
|
-
projects that have adopted this system.
|
|
25
|
-
|
|
26
|
-
It records governance adoption state, not product truth. Product plans, runtime
|
|
27
|
-
details, IP canon, audit outputs, and project-specific policies remain in the
|
|
28
|
-
downstream projects.
|
|
29
|
-
|
|
30
|
-
## Registry Rules
|
|
31
|
-
|
|
32
|
-
- Update this file when a project adopts, leaves, renames, or changes profile.
|
|
33
|
-
- Keep only projects that currently exist and are expected to receive future
|
|
34
|
-
governance updates. Remove deleted or superseded projects instead of keeping
|
|
35
|
-
stale health rows.
|
|
36
|
-
- Treat package versions as the versions installed in the downstream project's
|
|
37
|
-
`package.json`. Record both packages when the project has completed
|
|
38
|
-
package-based adoption.
|
|
39
|
-
- Treat health as a snapshot. A project can be on the latest version but still
|
|
40
|
-
have local working-tree cleanup in progress.
|
|
41
|
-
- Do not add a project-specific profile here unless at least two projects need
|
|
42
|
-
the same reusable profile.
|
|
43
|
-
- Do not use this registry to freeze the upstream local checkout path. The
|
|
44
|
-
current local upstream folder may be `ProjectGovernanceSystem`, but downstream
|
|
45
|
-
governed docs should prefer `@pieai/doc-gov`, `@pieai/pro-gov`, and "Project
|
|
46
|
-
Governance System upstream repository" wording over machine-local paths.
|
|
47
|
-
|
|
48
|
-
## Current Downstream Projects
|
|
49
|
-
|
|
50
|
-
The current downstream set was checked on 2026-06-14.
|
|
51
|
-
|
|
52
|
-
| Project | Local path | Profile | Installed doc-gov | Installed pro-gov | Health snapshot | Notes |
|
|
53
|
-
| --- | --- | --- | --- | --- | --- | --- |
|
|
54
|
-
| Anvil | `/Users/yuanfei/PieAI/Anvil` | `engineering-runtime` | `0.3.3` | `0.3.3` | Healthy | `docs:check` passes with 0 warnings. Existing unrelated local writing work was preserved. |
|
|
55
|
-
| Collapse | `/Users/yuanfei/PieAI/Collapse` | `engineering-runtime` | `0.3.3` | `0.3.3` | Healthy | Adopted the thin placeholder-phase runtime profile. `docs:check` and the production build pass. |
|
|
56
|
-
| Non-Heroes | `/Users/yuanfei/PieAI/Non-Heroes` | `engineering-runtime` | `0.3.3` | `0.3.3` | Healthy | `docs:check` passes with 0 warnings. |
|
|
57
|
-
| PieAIStudio-Site | `/Users/yuanfei/PieAI/PieAIStudio-Site` | `engineering-runtime` | `0.3.3` | `0.3.3` | Healthy | `docs:check` passes with 0 warnings. Existing unrelated local skill links were preserved. |
|
|
58
|
-
| PieHQ | `/Users/yuanfei/PieAI/PieHQ` | `doc-only` | `0.3.3` | `0.3.3` | Healthy | `docs:check` passes with 0 warnings. |
|
|
59
|
-
| Sea | `/Users/yuanfei/PieAI/Sea` | `engineering-runtime` | `0.3.3` | `0.3.3` | Healthy | `docs:check` passes with 0 warnings across the large governed-doc set. |
|
|
60
|
-
| Show | `/Users/yuanfei/PieAI/Show` | `engineering-runtime` | `0.3.3` | `0.3.3` | Healthy | `docs:check` passes with 0 warnings. |
|
|
61
|
-
| SupaLuv | `/Users/yuanfei/PieAI/SupaLuv` | `engineering-runtime` | `0.3.3` | `0.3.3` | Healthy | Migrated from the vendored `doc-gov@0.2.0` copy. `docs:check` and `cloud:check` pass; unrelated local content work was preserved. |
|
|
62
|
-
| YaZu | `/Users/yuanfei/PieAI/YaZu` | `engineering-runtime` | `0.3.3` | `0.3.3` | Healthy | `docs:check` passes with 0 warnings. |
|
|
63
|
-
| TuringPact | `/Users/yuanfei/PieAI/TuringPact` | `engineering-runtime` | `0.3.3` | `0.3.3` | Healthy | Migrated the legacy `Docs/` system into current, completed, and archive layers. `docs:check` and `verify:web` pass. |
|
|
64
|
-
| ProjectLens | `/Users/yuanfei/PieAI/ProjectLens` | `doc-only` | `0.3.3` | `0.3.3` | Healthy | `docs:check` passes with 0 warnings. ProjectLens is a project-level audit workspace, not a runtime product. |
|
|
65
|
-
|
|
66
|
-
## Representative Examples
|
|
67
|
-
|
|
68
|
-
The `examples/` directory is not the full registry. It contains representative
|
|
69
|
-
case studies:
|
|
70
|
-
|
|
71
|
-
- `examples/non-heroes/example.md` for an engineering-runtime product.
|
|
72
|
-
|
|
73
|
-
Add a new example only when a project teaches a reusable adoption pattern that
|
|
74
|
-
the existing examples do not cover.
|
|
75
|
-
|
|
76
|
-
## Removal / Rename Notes
|
|
77
|
-
|
|
78
|
-
- `Supa` is no longer tracked here because that project was renamed/replaced by
|
|
79
|
-
`Non-Heroes`.
|
|
80
|
-
- `story-creator` is no longer tracked because the repository was renamed and
|
|
81
|
-
replaced by `Anvil`.
|
|
82
|
-
- `PieFlow` and `PieIP` were removed from the current registry on 2026-06-14
|
|
83
|
-
because those projects were deleted.
|
|
84
|
-
- GitNexus is intentionally absent. It has been removed from the central system
|
|
85
|
-
and should not be reintroduced through downstream policy links.
|