@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/README.md
CHANGED
|
@@ -11,8 +11,7 @@ station:
|
|
|
11
11
|
- `pro-gov` shows which reusable project-governance parts are present or missing;
|
|
12
12
|
- `@pieai/doc-gov` checks documents, routing, links, guardrails, and CI;
|
|
13
13
|
- the AI host and project checks own normal execution;
|
|
14
|
-
-
|
|
15
|
-
- `capture-learning` records a reusable lesson only when one exists.
|
|
14
|
+
- `capture-learning` visibly decides whether completed verified work produced a reusable lesson, and records it only when one exists.
|
|
16
15
|
|
|
17
16
|
The current `pro-gov` release is conservative by design. Public init and sync
|
|
18
17
|
commands inspect and compare; they do not silently overwrite another project's
|
|
@@ -140,20 +139,20 @@ the private-source and public-copy hashes recorded during promotion.
|
|
|
140
139
|
|
|
141
140
|
## Lightweight Agent Workflow
|
|
142
141
|
|
|
143
|
-
The AI host and the target project's proof commands own ordinary work.
|
|
144
|
-
|
|
145
|
-
triggers from its own narrow description and does not become a mandatory
|
|
146
|
-
pipeline or workflow owner.
|
|
142
|
+
The AI host and the target project's proof commands own ordinary work. PGS
|
|
143
|
+
does not appoint a mandatory workflow owner or require an external skill pack.
|
|
147
144
|
|
|
148
145
|
Before
|
|
149
146
|
non-trivial implementation, debugging, release, architecture, or portfolio-sync
|
|
150
147
|
work, run `pro-gov learn recall --query "<task summary>"` and read relevant
|
|
151
148
|
`docs/reference/learnings/**` or `CONCEPTS.md` hits before changing files.
|
|
152
149
|
|
|
153
|
-
After verified work,
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
150
|
+
After completed, verified, non-trivial work, the small `capture-learning` Skill
|
|
151
|
+
makes one visible decision. It writes a compact `docs/reference/learnings/**`
|
|
152
|
+
record only when the result will help future work; otherwise it reports a skip.
|
|
153
|
+
Resolve the CLI through the project (`pnpm pro-gov` in the PGS source repository)
|
|
154
|
+
instead of assuming a global binary. PGS does not install Stop/SubagentStop
|
|
155
|
+
reminder hooks or require a completion gate.
|
|
157
156
|
|
|
158
157
|
Read the
|
|
159
158
|
[full project introduction](https://github.com/PieAIStudio/ProjectGovernanceSystem#readme)
|
|
@@ -25,8 +25,8 @@ Use this when a project wants to migrate into the Project Governance System.
|
|
|
25
25
|
|
|
26
26
|
Before choosing optional AI skills, read
|
|
27
27
|
`docs/reference/adoption/recommended-agent-tooling.md`. It explains which PGS
|
|
28
|
-
packages are required, how
|
|
29
|
-
native learning-capture path works.
|
|
28
|
+
packages are required, how optional capabilities remain explicit, and how the
|
|
29
|
+
small native learning-capture path works.
|
|
30
30
|
|
|
31
31
|
## The Short Version
|
|
32
32
|
|
|
@@ -203,9 +203,8 @@ Do not copy the upstream root `integrations/` directory into target projects by
|
|
|
203
203
|
If a project needs local external-workflow guidance, keep it thin in `AGENTS.md` or put project-specific notes under `docs/reference/integrations/`.
|
|
204
204
|
|
|
205
205
|
For engineering projects, normal execution belongs to the AI host and the
|
|
206
|
-
project's own proof commands.
|
|
207
|
-
|
|
208
|
-
are not a mandatory pipeline or workflow owner.
|
|
206
|
+
project's own proof commands. PGS does not appoint a mandatory pipeline or
|
|
207
|
+
workflow owner.
|
|
209
208
|
|
|
210
209
|
Use PGS Learning Recall before non-trivial work:
|
|
211
210
|
|
|
@@ -214,9 +213,10 @@ pro-gov learn recall --query "<task summary>"
|
|
|
214
213
|
```
|
|
215
214
|
|
|
216
215
|
This reads the project's existing `docs/reference/learnings/**` and `CONCEPTS.md` records.
|
|
217
|
-
After verified work,
|
|
218
|
-
|
|
219
|
-
ceremony is required.
|
|
216
|
+
After completed, verified, non-trivial work, let `capture-learning` visibly
|
|
217
|
+
decide whether the result is genuinely reusable. The Skill captures or reports a
|
|
218
|
+
skip; no exit hook or mandatory completion ceremony is required. Resolve
|
|
219
|
+
`pro-gov` through the project rather than assuming a global binary.
|
|
220
220
|
|
|
221
221
|
### Doc-Only
|
|
222
222
|
|
|
@@ -27,9 +27,9 @@ document systems instead of adding another layer.
|
|
|
27
27
|
## Decision Surface
|
|
28
28
|
|
|
29
29
|
1. Move every durable decision from `docs/decisions/**` to `docs/adr/**`.
|
|
30
|
-
2. Rename numbered files to
|
|
31
|
-
3. Preserve useful existing frontmatter;
|
|
32
|
-
|
|
30
|
+
2. Rename numbered files to the `NNNN-slug.md` form where practical.
|
|
31
|
+
3. Preserve useful existing frontmatter; new ADRs may stay concise while still
|
|
32
|
+
using the governed decision schema.
|
|
33
33
|
4. Remove external ADR ids from governed documents' `related` arrays. Keep a
|
|
34
34
|
normal Markdown path to the ADR in the body when the relationship matters;
|
|
35
35
|
Doc Gov validates only ids in its governed document graph.
|
|
@@ -28,8 +28,7 @@ work; tools and skills add capabilities only when their narrow trigger matches.
|
|
|
28
28
|
| --- | --- | --- |
|
|
29
29
|
| `@pieai/pro-gov` | required | Profiles, assets, learning recall/capture, portfolio checks |
|
|
30
30
|
| `@pieai/doc-gov` | required | Governed-document and router validation |
|
|
31
|
-
|
|
|
32
|
-
| `capture-learning` | available | Save a verified reusable lesson after completed work |
|
|
31
|
+
| `capture-learning` | available | Make a visible soft closeout decision and save a verified reusable lesson only when one exists |
|
|
33
32
|
| Superpowers | do not install | Retired mandatory workflow plugin |
|
|
34
33
|
| Compound Engineering | do not install | Retired; native PGS capture keeps the useful learning loop |
|
|
35
34
|
| Ponytail | do not install | Retired global mode/hooks; ordinary engineering judgment stays lean |
|
|
@@ -40,15 +39,27 @@ Before non-trivial work:
|
|
|
40
39
|
pro-gov learn recall --query "<task summary>"
|
|
41
40
|
```
|
|
42
41
|
|
|
43
|
-
After verified work, `capture-learning`
|
|
44
|
-
|
|
42
|
+
After completed, verified, non-trivial work, `capture-learning` makes one visible
|
|
43
|
+
closeout decision. It first checks for an existing lesson and then calls this only
|
|
44
|
+
when a new reusable lesson exists:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
47
|
pro-gov learn capture --title "<learning title>" --summary "<reusable lesson>"
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
Do not add Stop/SubagentStop workflow reminder hooks. Verification belongs in
|
|
51
|
-
the task and the project's real command ladder.
|
|
51
|
+
the task and the project's real command ladder. The Skill is implicitly
|
|
52
|
+
discoverable, but its closeout check is soft: trivial work is silent, unfinished
|
|
53
|
+
work is not interrupted, and a reusable lesson is never required for completion.
|
|
54
|
+
|
|
55
|
+
Do not treat a long conversation as a learning record by default. Current state
|
|
56
|
+
belongs in current-work, hard-to-reverse decisions in ADRs, approved requirements
|
|
57
|
+
in Specs, execution order in Plans, and only verified recurring guidance in
|
|
58
|
+
`docs/reference/learnings/**`.
|
|
59
|
+
|
|
60
|
+
Resolve the CLI through the project rather than assuming a global binary. The PGS
|
|
61
|
+
source repository uses `pnpm pro-gov`; consumers may expose `pro-gov` directly or
|
|
62
|
+
through their package manager's local executable command.
|
|
52
63
|
|
|
53
64
|
Host plugins that provide external capabilities—such as GitHub, Vercel,
|
|
54
65
|
Supabase, browsers, documents, or device control—remain independent choices.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|