@ouro.bot/cli 0.1.0-alpha.587 → 0.1.0-alpha.589

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.
Files changed (2) hide show
  1. package/changelog.json +13 -0
  2. package/package.json +2 -1
package/changelog.json CHANGED
@@ -1,6 +1,19 @@
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.589",
6
+ "changes": [
7
+ "Release preflight now tells agents to use the coordinated release:bump helper when the CLI version is already published, instead of the root-only npm version command that could leave wrapper metadata stale."
8
+ ]
9
+ },
10
+ {
11
+ "version": "0.1.0-alpha.588",
12
+ "changes": [
13
+ "Release metadata now has a tested release:bump helper that updates the CLI package, lockfile, ouro.bot wrapper package, and top changelog entry together before long validation starts.",
14
+ "The release:bump helper requires valid semver and explicit changelog changes, preventing root-only npm version bumps from leaving the wrapper package stale until release preflight."
15
+ ]
16
+ },
4
17
  {
5
18
  "version": "0.1.0-alpha.587",
6
19
  "changes": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.587",
3
+ "version": "0.1.0-alpha.589",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",
@@ -37,6 +37,7 @@
37
37
  "test:coverage": "node scripts/run-coverage-gate.cjs",
38
38
  "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'",
39
39
  "lint": "eslint src/",
40
+ "release:bump": "node scripts/release-bump.cjs",
40
41
  "release:preflight": "node scripts/release-preflight.cjs",
41
42
  "release:smoke": "node scripts/release-smoke.cjs",
42
43
  "audit:nerves": "npm run build && node dist/nerves/coverage/cli-main.js"