@pieai/pro-gov 0.9.2 → 0.9.4
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 +11 -0
- package/cli-guide.md +13 -0
- package/dist/cli.js +1688 -590
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -65,6 +65,7 @@ What these commands do:
|
|
|
65
65
|
| `assets list` | Shows packaged assets and public registry metadata. | No |
|
|
66
66
|
| `assets discover` | Detects local project signals. | No |
|
|
67
67
|
| `assets recommend` | Suggests relevant asset bundles with reasons. | No |
|
|
68
|
+
| `assets catalog build|check` | Builds or verifies the full-checkout portable asset catalog; optional native links are local cache only. | Only `build` writes the explicit catalog output |
|
|
68
69
|
| `portfolio check` | Validates an external portfolio manifest owned by the user or organization. | No |
|
|
69
70
|
| `portfolio plan` | Builds dry-run asset plans for manifest targets, using packaged public assets unless a full checkout is supplied. | No |
|
|
70
71
|
| `portfolio assets-check` | Checks the integrity of each target's current managed asset lock and symlinks. | No |
|
|
@@ -93,6 +94,8 @@ pro-gov assets apply --plan .pro-gov/asset-plan.json
|
|
|
93
94
|
pro-gov assets check --target .
|
|
94
95
|
pro-gov assets public-check --json
|
|
95
96
|
pro-gov assets npx update --plan
|
|
97
|
+
pro-gov assets catalog build --native-links
|
|
98
|
+
pro-gov assets catalog check
|
|
96
99
|
```
|
|
97
100
|
|
|
98
101
|
Skill placement normally comes from the asset registry. Use `--placement
|
|
@@ -120,6 +123,14 @@ package use `public-agent-assets/` as the reviewed promotion surface.
|
|
|
120
123
|
`assets public-check` verifies that every publishable public asset still matches
|
|
121
124
|
the private-source and public-copy hashes recorded during promotion.
|
|
122
125
|
|
|
126
|
+
`assets catalog build` leaves every canonical asset in place and generates one
|
|
127
|
+
discovery surface directly under `agent-assets/#catalogs`: a local search page,
|
|
128
|
+
Markdown/JSON indexes, and purpose-based topic folders. Source, author, type,
|
|
129
|
+
and bundle remain searchable attributes instead of duplicate folder trees.
|
|
130
|
+
`--native-links` adds ignored machine-local shortcuts beside each topic README;
|
|
131
|
+
`assets catalog check` verifies the portable output and fails closed on
|
|
132
|
+
uncovered or uncategorized sources.
|
|
133
|
+
|
|
123
134
|
## Package Boundary
|
|
124
135
|
|
|
125
136
|
- `pro-gov` distributes starter, profile, integration, and adoption assets.
|
package/cli-guide.md
CHANGED
|
@@ -87,6 +87,8 @@ pro-gov assets check --target .
|
|
|
87
87
|
pro-gov assets public-check --json
|
|
88
88
|
pro-gov assets npx add <source> --plan
|
|
89
89
|
pro-gov assets npx update --plan
|
|
90
|
+
pro-gov assets catalog build --native-links
|
|
91
|
+
pro-gov assets catalog check
|
|
90
92
|
```
|
|
91
93
|
|
|
92
94
|
These commands use a maintainer-local `agent-assets/` registry when local-only
|
|
@@ -98,6 +100,17 @@ Skill placement normally comes from the asset registry. Use `--placement
|
|
|
98
100
|
auto|manual` only as a migration override when deliberately moving an existing
|
|
99
101
|
target.
|
|
100
102
|
|
|
103
|
+
`assets catalog` is a full-checkout discovery layer. `build` creates the local
|
|
104
|
+
search page, Markdown/JSON indexes, and purpose-based folders directly under
|
|
105
|
+
`agent-assets/#catalogs`; source, author, type, and bundle stay available as
|
|
106
|
+
search attributes instead of duplicate folder trees. `--native-links` places
|
|
107
|
+
ignored shortcuts beside each topic README. On macOS and Linux those links are
|
|
108
|
+
relative symlinks. On Windows directory links use junctions and file links are
|
|
109
|
+
best-effort because they may require Developer Mode or elevated permission.
|
|
110
|
+
`check` is read-only and fails when generated files are stale, a source is not
|
|
111
|
+
represented, or an asset has no topic. The catalog never moves canonical assets
|
|
112
|
+
and does not change installation plans.
|
|
113
|
+
|
|
101
114
|
`portfolio ai-health` performs a read-only structural inventory of the control
|
|
102
115
|
plane, execution engine, registered targets, user/project AI-host configuration,
|
|
103
116
|
exact technology-version policy, the four verification-gate scripts, bounded
|