@pieai/pro-gov 0.7.2 → 0.7.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.
- package/README.md +9 -10
- package/assets/docs/reference/adoption/adoption-playbook.md +8 -8
- package/assets/docs/reference/adoption/migration-v1.0.md +3 -3
- package/assets/docs/reference/adoption/recommended-agent-tooling.md +16 -5
- package/assets/integrations/.gitkeep +1 -0
- package/assets/portfolio-dashboard/app.js +5 -5
- package/assets/profiles/engineering-runtime/manifest.yml +0 -2
- package/assets/profiles/engineering-runtime/profile.md +5 -4
- package/assets/public-agent-assets/registry.json +1 -1
- package/assets/starter/.github/workflows/docs-check.yml +11 -1
- package/assets/starter/docs/governance/agents-routing/engineering-runtime-v1.1.md +19 -1
- package/assets/starter/docs/governance/boundary.md +3 -4
- package/assets/starter/docs/governance/doc-agent-rules.md +2 -2
- package/assets/starter/docs/governance/doc-types.md +2 -2
- package/assets/starter/docs/governance/ssot-v1.1.md +3 -5
- package/assets/starter/docs/governance/templates/adr.md +24 -2
- package/assets/starter/docs/reference/documentation-map.md +1 -1
- package/dist/cli.js +381 -85
- package/package.json +2 -2
- package/assets/integrations/mattpocock-skills.md +0 -42
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pieai/pro-gov",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
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.7.
|
|
38
|
+
"@pieai/doc-gov": "^0.7.3"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@pieai/swimmer-ui-kit": "1.1.0",
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
# mattpocock/skills Integration
|
|
2
|
-
|
|
3
|
-
mattpocock/skills is the optional shared engineering skill library for
|
|
4
|
-
PGS-governed projects. PGS does not vendor or rewrite their bodies; it installs
|
|
5
|
-
the upstream skills unchanged through managed symlinks.
|
|
6
|
-
|
|
7
|
-
## Trigger Rule
|
|
8
|
-
|
|
9
|
-
There is no bootstrap skill and no default workflow owner. Let each skill's own
|
|
10
|
-
narrow description decide when it applies. User-named skills always take
|
|
11
|
-
priority; otherwise invoke a skill only when its documented trigger directly
|
|
12
|
-
matches the task.
|
|
13
|
-
|
|
14
|
-
Examples:
|
|
15
|
-
|
|
16
|
-
- a reported hard bug may trigger `diagnosing-bugs`;
|
|
17
|
-
- an explicit branch review may trigger `code-review`;
|
|
18
|
-
- a request for a PRD may trigger `to-prd`;
|
|
19
|
-
- ordinary implementation does not automatically trigger `implement`, `tdd`,
|
|
20
|
-
`grill-me`, or a multi-agent flow.
|
|
21
|
-
|
|
22
|
-
Skills that require subagents must respect the user's current delegation rule.
|
|
23
|
-
|
|
24
|
-
## Artifact Boundary
|
|
25
|
-
|
|
26
|
-
Matt-native artifacts remain external to Doc Gov by default:
|
|
27
|
-
|
|
28
|
-
- `CONTEXT.md` and `CONTEXT-MAP.md`;
|
|
29
|
-
- `docs/agents/**` and `docs/adr/**`;
|
|
30
|
-
- `.scratch/**`;
|
|
31
|
-
- GitHub/GitLab issues.
|
|
32
|
-
|
|
33
|
-
`docs/adr/**` is the only durable decision surface. Do not copy or promote an
|
|
34
|
-
ADR into a second PGS decision directory. Product truth, requirements,
|
|
35
|
-
implementation plans, and reusable references still belong in
|
|
36
|
-
`docs/canon/**`, `docs/specs/**`, `docs/plans/**`, and `docs/reference/**`.
|
|
37
|
-
|
|
38
|
-
## Distribution
|
|
39
|
-
|
|
40
|
-
Maintain the canonical third-party source under
|
|
41
|
-
`agent-assets/skills/npx-skills` and distribute managed symlinks through the
|
|
42
|
-
`mattpocock-skills` asset bundle. Do not install project-local copies.
|