aienvmp 0.1.54 → 0.1.55
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/BUGFIXES.md +6 -0
- package/CHANGELOG.md +7 -0
- package/README.md +2 -2
- package/package.json +1 -1
- package/src/commands/summary.js +8 -3
- package/src/render.js +3 -1
package/BUGFIXES.md
CHANGED
|
@@ -118,6 +118,12 @@ Short record of bugs, fixes, and follow-up checks.
|
|
|
118
118
|
- Fix: `aiReadiness` now provides one advisory ready/review signal across status, context, doctor, summary, and dashboard.
|
|
119
119
|
- Verification: regression tests cover ready/review summaries, text status output, schema metadata, and dashboard rendering.
|
|
120
120
|
|
|
121
|
+
### AI readiness was visible but not first in human review surfaces
|
|
122
|
+
|
|
123
|
+
- Issue: CI Step Summary and the dashboard showed readiness, but agents and humans still had to scan past broader status fields to find the main AI continuation signal.
|
|
124
|
+
- Fix: `.aienvmp/summary.md` now starts with `AI readiness`, `AI signals`, and `AI next`; the dashboard audit band includes readiness signals in its hint.
|
|
125
|
+
- Verification: regression tests assert the summary top block and dashboard readiness signals; Windows and macOS package smoke checks cover generated artifacts.
|
|
126
|
+
|
|
121
127
|
## Template
|
|
122
128
|
|
|
123
129
|
### Title
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.55
|
|
4
|
+
|
|
5
|
+
- Moved `AI readiness`, readiness signals, and next action to the top of `.aienvmp/summary.md`.
|
|
6
|
+
- Added `aiReadiness.signals` to the dashboard audit-band hint.
|
|
7
|
+
- Kept the CI Step Summary lightweight while making the first AI review signal easier to scan.
|
|
8
|
+
- Updated README and regression tests for the new summary/dashboard readiness surface.
|
|
9
|
+
|
|
3
10
|
## 0.1.54
|
|
4
11
|
|
|
5
12
|
- Added `aiReadiness` to the shared preflight/status contract.
|
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ Warnings are advisory by default. Use `doctor --strict <scope>` only when you wa
|
|
|
34
34
|
```text
|
|
35
35
|
AIENV.md # Markdown env map for AI agents
|
|
36
36
|
.aienvmp/status.json # first AI read: clear/review, next command, nextAgent hint
|
|
37
|
-
.aienvmp/summary.md # compact AI/CI summary
|
|
37
|
+
.aienvmp/summary.md # compact AI/CI summary; starts with AI readiness
|
|
38
38
|
.aienvmp/manifest.json # runtime map + light SBOM
|
|
39
39
|
.aienvmp/sbom.json # standalone AI-readable light SBOM
|
|
40
40
|
.aienvmp/sbom.cdx.json # CycloneDX-lite export from project manifests
|
|
@@ -48,7 +48,7 @@ AIENV.md # Markdown env map for AI agents
|
|
|
48
48
|
|
|
49
49
|
- `status`, `context`, `plan`, and `handoff` share one preflight contract.
|
|
50
50
|
- `schema --json` prints the stable AI-readable output contract without scanning.
|
|
51
|
-
- `summary.md` is the short CI/AI handoff view.
|
|
51
|
+
- `summary.md` is the short CI/AI handoff view, with `AI readiness`, signals, and next action first.
|
|
52
52
|
- `status.json.nextAgent` tells the next AI what to read and whether to review first.
|
|
53
53
|
- `aiReadiness` gives a one-field ready/review signal for AI continuation.
|
|
54
54
|
- `dependencyReadSet` lists manifests and lockfiles before package or security changes.
|
package/package.json
CHANGED
package/src/commands/summary.js
CHANGED
|
@@ -53,19 +53,24 @@ export function renderSummary(status = {}, manifest = {}) {
|
|
|
53
53
|
const dependencyFiles = dependencyFilesFor(status.dependencyReadSet);
|
|
54
54
|
const agentPointers = status.agentPointers || {};
|
|
55
55
|
const aiReadiness = status.aiReadiness || {};
|
|
56
|
+
const aiSignals = toList(aiReadiness.signals).slice(0, 5);
|
|
57
|
+
const aiNext = aiReadiness.next || "Run aienvmp context --json for details.";
|
|
56
58
|
|
|
57
59
|
return [
|
|
58
60
|
"# aienvmp summary",
|
|
59
61
|
"",
|
|
62
|
+
`- AI readiness: ${aiReadiness.level || "unknown"}`,
|
|
63
|
+
`- AI signals: ${aiSignals.length ? aiSignals.join("; ") : "none"}`,
|
|
64
|
+
`- AI next: ${aiNext}`,
|
|
65
|
+
`- AI read first: ${readFirst}, then ${detail}`,
|
|
66
|
+
`- mode: advisory by default; strict is opt-in with ${strict}`,
|
|
67
|
+
"",
|
|
60
68
|
`- state: ${status.state || "unknown"}`,
|
|
61
69
|
`- workspace: ${workspace}`,
|
|
62
70
|
`- warnings: ${valueOrZero(counts.warnings)} / open intents: ${valueOrZero(counts.openIntents)}`,
|
|
63
71
|
`- runtimes: ${valueOrZero(counts.runtimes)} / dependencies: ${valueOrZero(counts.dependencies)} / vulnerabilities: ${valueOrZero(counts.vulnerabilities)}`,
|
|
64
72
|
`- light SBOM risk: ${riskLevel} (${riskScore}) / scanner: ${scanner}`,
|
|
65
73
|
`- next: ${next}`,
|
|
66
|
-
`- AI readiness: ${aiReadiness.level || "unknown"} / ${aiReadiness.next || "Run aienvmp context --json for details."}`,
|
|
67
|
-
`- AI read first: ${readFirst}, then ${detail}`,
|
|
68
|
-
`- mode: advisory by default; strict is opt-in with ${strict}`,
|
|
69
74
|
"",
|
|
70
75
|
"## AI handoff",
|
|
71
76
|
"",
|
package/src/render.js
CHANGED
|
@@ -494,6 +494,8 @@ const auditItem=(key,value,hint,klass='')=>\`<div class="audit-item \${klass}"><
|
|
|
494
494
|
const driftLabel=warnings.length?'detected':'none';
|
|
495
495
|
const nextAgent=manifest.preflight?.nextAgent||{};
|
|
496
496
|
const aiReadiness=manifest.preflight?.aiReadiness||{};
|
|
497
|
+
const aiReadinessSignals=(aiReadiness.signals||[]).slice(0,3);
|
|
498
|
+
const aiReadinessHint=(aiReadiness.next||'Run aienvmp context --json for details.')+(aiReadinessSignals.length?' Signals: '+aiReadinessSignals.join('; '):'');
|
|
497
499
|
const coordination=manifest.preflight?.coordination||{};
|
|
498
500
|
const conflictTargets=coordination.conflictTargets||[];
|
|
499
501
|
const handoffFiles=nextAgent.dependencyFiles?.length?nextAgent.dependencyFiles:(dependencyReadSet[0]?[dependencyReadSet[0].manifest,...(dependencyReadSet[0].lockfiles||[])].filter(Boolean):[]);
|
|
@@ -510,7 +512,7 @@ document.getElementById('app').innerHTML=\`
|
|
|
510
512
|
</header>
|
|
511
513
|
<section class="audit" aria-label="Audit summary">
|
|
512
514
|
\${auditItem('AI decision',reviewRequired?'review required':'can proceed',nextAction,reviewRequired?'review':'primary')}
|
|
513
|
-
\${auditItem('AI readiness',aiReadiness.level||'unknown',
|
|
515
|
+
\${auditItem('AI readiness',aiReadiness.level||'unknown',aiReadinessHint,aiReadiness.level==='ready'?'primary':'review')}
|
|
514
516
|
\${auditItem('Runtime drift',driftLabel,warnings.length?'Policy, runtime, or coordination warning detected':'No drift warnings detected',warnings.length?'review':'')}
|
|
515
517
|
\${auditItem('Open env changes',String(intents.length),intents.length?'Resolve or coordinate before changes':'No pending env changes')}
|
|
516
518
|
\${auditItem('Trust',trustState,trustState==='verified'?'Human or CI verified':'Machine observed; not AI-verified')}
|