arkaos 2.69.0 → 2.70.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/VERSION CHANGED
@@ -1 +1 @@
1
- 2.69.0
1
+ 2.70.0
@@ -193,7 +193,16 @@ PHASE_RE = re.compile(r"\[arka:phase:\d+\]", re.IGNORECASE)
193
193
  SAFE_SESSION_ID_RE = _safe_session_id_module.SAFE_SESSION_ID_RE
194
194
  _safe_session_id = _safe_session_id_module.safe_session_id
195
195
 
196
- ASSISTANT_WINDOW = 6
196
+ # PR53 v2.70.0 — widened from 6 to 20. The 6-message window was too
197
+ # tight for long multi-PR sessions: after a single PR's worth of test
198
+ # runs / commits / npm publishes (each producing a substantive assistant
199
+ # message), the [arka:routing] line aged out and the enforcer blocked
200
+ # subsequent Edit/Write calls even though the operator was clearly mid-
201
+ # scope. 20 covers ~2-3 PRs of tool work without re-emitting the
202
+ # routing line. Transcript remains the authoritative source per
203
+ # docs/adr/2026-04-17-binding-flow-enforcement.md — this just widens
204
+ # how far back we look before declaring the marker absent.
205
+ ASSISTANT_WINDOW = 20
197
206
  CONFIG_PATH = Path.home() / ".arkaos" / "config.json"
198
207
  BYPASS_AUDIT_PATH = Path.home() / ".arkaos" / "audit" / "bypass.log"
199
208
  TELEMETRY_PATH = Path.home() / ".arkaos" / "telemetry" / "enforcement.jsonl"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkaos",
3
- "version": "2.69.0",
3
+ "version": "2.70.0",
4
4
  "description": "The Operating System for AI Agent Teams",
5
5
  "type": "module",
6
6
  "bin": {
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "arkaos-core"
3
- version = "2.69.0"
3
+ version = "2.70.0"
4
4
  description = "Core engine for ArkaOS — The Operating System for AI Agent Teams"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}