aienvmp 0.1.20 → 0.1.21
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/CHANGELOG.md +6 -0
- package/README.md +4 -0
- package/examples/github-action.yml +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.21
|
|
4
|
+
|
|
5
|
+
- Added a GitHub Actions artifact upload example for `AIENV.md`, plan outputs, manifest, and dashboard.
|
|
6
|
+
- Added a short README CI pointer to the example workflow.
|
|
7
|
+
- Kept the core composite action lightweight and read-only by default.
|
|
8
|
+
|
|
3
9
|
## 0.1.20
|
|
4
10
|
|
|
5
11
|
- Added a dashboard Environment Steps card backed by `.aienvmp/plan.json`.
|
package/README.md
CHANGED
|
@@ -53,6 +53,10 @@ AI agents can observe, plan, and record. Only a human or CI should mark environm
|
|
|
53
53
|
npx aienvmp snippet agents
|
|
54
54
|
```
|
|
55
55
|
|
|
56
|
+
## CI
|
|
57
|
+
|
|
58
|
+
Use the GitHub Action to write the env map, plan, dashboard, and optional strict checks. See [examples/github-action.yml](examples/github-action.yml).
|
|
59
|
+
|
|
56
60
|
## Commands
|
|
57
61
|
|
|
58
62
|
```bash
|
|
@@ -15,3 +15,15 @@ jobs:
|
|
|
15
15
|
directory: "."
|
|
16
16
|
write-plan: "true"
|
|
17
17
|
strict: "off" # security, policy, coordination, all, or off
|
|
18
|
+
|
|
19
|
+
- uses: actions/upload-artifact@v4
|
|
20
|
+
if: always()
|
|
21
|
+
with:
|
|
22
|
+
name: aienvmp
|
|
23
|
+
path: |
|
|
24
|
+
AIENV.md
|
|
25
|
+
.aienvmp/manifest.json
|
|
26
|
+
.aienvmp/plan.json
|
|
27
|
+
.aienvmp/plan.md
|
|
28
|
+
.aienvmp/dashboard.html
|
|
29
|
+
if-no-files-found: ignore
|