@oh-hai/cli 0.4.0 → 0.4.1

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.md +14 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -4,6 +4,20 @@ Notable changes to the `oh-hai` CLI. Versions follow [semver](https://semver.org
4
4
  pushing a `cli-vX.Y.Z` tag (runbook: `docs/runbooks/cli-release.md` in the repo), which publishes the
5
5
  npm package and attaches the standalone binaries to the GitHub Release.
6
6
 
7
+ ## 0.4.1 — 2026-08-17
8
+
9
+ ### Changed
10
+
11
+ - Requires `@oh-hai/ma2h-core` **0.2.1**, re-vendored to the ma2h-protocol pin that adds the
12
+ §16.4.1 `sessions.operator_hard_stop` capability field (SCP #57). **No CLI behaviour change**: the
13
+ field is an optional signal a client may use to detect a Hub whose operator kill-switch is durable,
14
+ and nothing in the CLI reads it yet.
15
+
16
+ Cut anyway so the published CLI stops pinning a stale core. The release workflow only guards that
17
+ the pinned core version **exists** on npm, never that it contains the changes — so a
18
+ changed-but-unreleased core is invisible to CI and only bites the next time it matters.
19
+ ([#855](https://github.com/autnmy/oh-hai/issues/855))
20
+
7
21
  ## 0.4.0 — 2026-08-15
8
22
 
9
23
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oh-hai/cli",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "OH HAI — the `oh-hai` CLI: reach a human from your agent through an MA2H Hub (notify / ask / task), and reach another agent over the v0.5 inter-agent leg (sessions, addressed sends, bridge, fleet).",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
@@ -23,7 +23,7 @@
23
23
  "access": "public"
24
24
  },
25
25
  "dependencies": {
26
- "@oh-hai/ma2h-core": "0.2.0"
26
+ "@oh-hai/ma2h-core": "0.2.1"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^26.1.0",