@sema-agent/core 5.21.0 → 5.21.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.21.1 — 2026-08-09
4
+
5
+ - **Fix: every `hands: none` deployment failed at the door on 5.21.0** (P0). `HAND_TOOL_EFFECTS`
6
+ carried a dead `MultiEdit` row while the same package's `RETIRED_TOOL_NAMES` lists that name as
7
+ retired — one fact, two registries, disagreeing. A consumer deriving a deny list from the effects
8
+ table (the server's scenario hands lane was the first) fed the retired name into the roster
9
+ audit's unconditional retired-name refusal, killing scan/code-review/team scenarios with zero
10
+ turns. The dead row is gone and a test pins the two tables disjoint, so the next tool retirement
11
+ cannot silently re-open this.
12
+
3
13
  ## 5.21.0 — 2026-08-09
4
14
 
5
15
  ### BREAKING
@@ -206,7 +206,6 @@ export function createGlobTool(env, rootCanonical, additionalRoots) {
206
206
  export const HAND_TOOL_EFFECTS = {
207
207
  Read: "read",
208
208
  Edit: "write",
209
- MultiEdit: "write",
210
209
  Write: "write",
211
210
  NotebookEdit: "write",
212
211
  Grep: "read",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sema-agent/core",
3
- "version": "5.21.0",
3
+ "version": "5.21.1",
4
4
  "description": "Stateless, task-oriented AI agent core",
5
5
  "type": "module",
6
6
  "license": "BUSL-1.1",