@ouro.bot/cli 0.1.0-alpha.554 → 0.1.0-alpha.555
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.json
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
|
|
3
3
|
"versions": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.1.0-alpha.555",
|
|
6
|
+
"changes": [
|
|
7
|
+
"`npm run build` now removes stale `dist/` output before compiling so deleted runtime modules cannot remain in published packages.",
|
|
8
|
+
"Package-asset validation now rejects published package contents that still mention the removed provider selection file, provider state module, or drift module surfaces."
|
|
9
|
+
]
|
|
10
|
+
},
|
|
4
11
|
{
|
|
5
12
|
"version": "0.1.0-alpha.554",
|
|
6
13
|
"changes": [
|
|
@@ -93,16 +93,6 @@ const DISPATCH_EXEMPT_PATTERNS = [
|
|
|
93
93
|
// buildDaemonHealthState → DaemonHealthWriter) owns observability via
|
|
94
94
|
// daemon.health_written when the rolled-up state is persisted.
|
|
95
95
|
"daemon/daemon-rollup",
|
|
96
|
-
// Drift comparator + thin I/O loader: `detectProviderBindingDrift`
|
|
97
|
-
// is a pure intent-vs-observed comparator with no side effects;
|
|
98
|
-
// `loadDriftInputsForAgent` is a small fs-read wrapper that returns
|
|
99
|
-
// `null` on missing/invalid state rather than emitting. The caller
|
|
100
|
-
// (daemon-entry.ts buildDaemonHealthState's per-agent drift probe)
|
|
101
|
-
// owns observability — drift findings ride along through
|
|
102
|
-
// `daemon.health_written` as part of the rolled-up state, and
|
|
103
|
-
// `agent-config-check.ts` carries `driftFindings` through its
|
|
104
|
-
// existing instrumentation. Same pattern as `daemon-rollup`.
|
|
105
|
-
"daemon/drift-detection",
|
|
106
96
|
// Attachment helper modules: generic file-path/extension utilities and the
|
|
107
97
|
// source registry are pure support seams. The orchestrator/adapters that
|
|
108
98
|
// call them own the observability.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ouro.bot/cli",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.555",
|
|
4
4
|
"main": "dist/heart/daemon/ouro-entry.js",
|
|
5
5
|
"bin": {
|
|
6
6
|
"cli": "dist/heart/daemon/ouro-bot-entry.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"test:mailbox-ui": "npm test --prefix packages/mailbox-ui",
|
|
35
35
|
"test:coverage:vitest": "vitest run --coverage",
|
|
36
36
|
"test:coverage": "node scripts/run-coverage-gate.cjs",
|
|
37
|
-
"build": "tsc && (cd packages/mailbox-ui && npm install --ignore-scripts 2>/dev/null && npm run build && cd ../.. && node scripts/copy-mailbox-ui.cjs) || echo 'mailbox-ui build skipped'",
|
|
37
|
+
"build": "node scripts/clean-dist.cjs && tsc && (cd packages/mailbox-ui && npm install --ignore-scripts 2>/dev/null && npm run build && cd ../.. && node scripts/copy-mailbox-ui.cjs) || echo 'mailbox-ui build skipped'",
|
|
38
38
|
"lint": "eslint src/",
|
|
39
39
|
"release:preflight": "node scripts/release-preflight.cjs",
|
|
40
40
|
"release:smoke": "node scripts/release-smoke.cjs",
|