@hongmaple0820/scale-engine 0.28.0 → 0.29.0
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.en.md +1 -0
- package/dist/api/cli.js +8 -0
- package/dist/api/cli.js.map +1 -1
- package/dist/runtime/AiOsRuntime.d.ts +40 -0
- package/dist/runtime/AiOsRuntime.js +209 -0
- package/dist/runtime/AiOsRuntime.js.map +1 -1
- package/docs/AI_ENGINEERING_OS_POSITIONING.md +6 -0
- package/package.json +2 -1
package/README.en.md
CHANGED
|
@@ -66,6 +66,7 @@ scale ai-os dashboard --json
|
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
`status` is the 0.28.0 closed-loop visibility entry point. It checks runtime directories, plan/run evidence, guarded verification, dashboard health, benchmark evidence, and the adoption report in one place.
|
|
69
|
+
For the 0.29.0 intelligence track, `status` also reports memory recall, memory quality, context savings, context compression risk, skill routing, and benchmark intelligence signals from persisted runs and benchmark evidence.
|
|
69
70
|
When guarded verification evidence is missing, it also recommends concrete commands from `.scale/verification.json` or `package.json` scripts so an agent can choose the next governed `--verify` step without guessing.
|
|
70
71
|
|
|
71
72
|
Before a release or milestone review, run the fixed benchmark scenarios to compare context, memory, skill, governance, and dashboard metrics:
|
package/dist/api/cli.js
CHANGED
|
@@ -3238,6 +3238,10 @@ const aiOsStatusCommand = defineCommand({
|
|
|
3238
3238
|
console.log(` 检查: ${report.summary.ready} ready, ${report.summary.warning} warning, ${report.summary.blocked} blocked`);
|
|
3239
3239
|
console.log(` Dashboard: ${report.dashboard.health.status} (${report.dashboard.health.score})`);
|
|
3240
3240
|
console.log(` Doctor: ${report.doctor.status}`);
|
|
3241
|
+
console.log(` Intelligence: ${report.intelligence.status} (${report.intelligence.summary.ready} ready, ${report.intelligence.summary.warning} warning, ${report.intelligence.summary.blocked} blocked)`);
|
|
3242
|
+
console.log(` Context risk: ${report.intelligence.summary.contextQuality.compressionRisk}; omitted ${report.intelligence.summary.contextQuality.omittedSections} section(s), evidence warnings ${report.intelligence.summary.contextQuality.evidenceLossWarnings.length}`);
|
|
3243
|
+
for (const signal of report.intelligence.signals)
|
|
3244
|
+
console.log(` [${signal.status}] ${signal.id}: ${signal.summary}`);
|
|
3241
3245
|
for (const check of report.checks)
|
|
3242
3246
|
console.log(` [${check.status}] ${check.id}: ${check.summary}`);
|
|
3243
3247
|
if (report.verificationRecommendations.length > 0) {
|
|
@@ -3257,6 +3261,10 @@ const aiOsStatusCommand = defineCommand({
|
|
|
3257
3261
|
console.log(` Checks: ${report.summary.ready} ready, ${report.summary.warning} warning, ${report.summary.blocked} blocked`);
|
|
3258
3262
|
console.log(` Dashboard: ${report.dashboard.health.status} (${report.dashboard.health.score})`);
|
|
3259
3263
|
console.log(` Doctor: ${report.doctor.status}`);
|
|
3264
|
+
console.log(` Intelligence: ${report.intelligence.status} (${report.intelligence.summary.ready} ready, ${report.intelligence.summary.warning} warning, ${report.intelligence.summary.blocked} blocked)`);
|
|
3265
|
+
console.log(` Context risk: ${report.intelligence.summary.contextQuality.compressionRisk}; omitted ${report.intelligence.summary.contextQuality.omittedSections} section(s), evidence warnings ${report.intelligence.summary.contextQuality.evidenceLossWarnings.length}`);
|
|
3266
|
+
for (const signal of report.intelligence.signals)
|
|
3267
|
+
console.log(` [${signal.status}] ${signal.id}: ${signal.summary}`);
|
|
3260
3268
|
for (const check of report.checks)
|
|
3261
3269
|
console.log(` [${check.status}] ${check.id}: ${check.summary}`);
|
|
3262
3270
|
if (report.verificationRecommendations.length > 0) {
|