agenr 1.8.2 → 1.9.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/CHANGELOG.md CHANGED
@@ -2,6 +2,49 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [1.9.0] - 2026-04-12
6
+
7
+ Surgeon autonomy, review-flow hardening, and CLI/runtime polish release.
8
+
9
+ ### Added
10
+
11
+ - **Surgeon autonomy control plane v1.** Agenr now ships the first full surgeon autonomy control plane with stronger proposal-review flow, improved review ownership, and better runtime state handling across autonomous passes.
12
+ - **Architecture review skill.** Added a dedicated architecture review skill to support repository-level structural review work alongside the surgeon and planning toolchain updates in this release window.
13
+
14
+ ### Changed
15
+
16
+ - **Surgeon architecture and runtime boundaries are cleaner.** Surgeon logic was refactored across app, adapter, and domain seams, with generalized prompts across corpus domains, tighter runtime safeguards, simplified run flow, and more coherent completion/progress accounting.
17
+ - **CLI and trace output are more structured.** Surgeon console output, startup summaries, progress rendering, and trace logging were tightened so autonomous runs are easier to monitor and debug.
18
+ - **Local development scaffolding stays out of git status.** `.gitignore` now excludes the repo-local skills directory to keep local agent tooling from polluting release and day-to-day workflow status.
19
+
20
+ ### Fixed
21
+
22
+ - **Autonomous surgeon passes recover more reliably.** Fixed proposal-loop stalling, autonomous backup handling, trace directory handling, exhausted-review completion, and repeat supersession-review suppression so long-running surgeon activity can finish cleanly.
23
+
24
+ ### Validation
25
+
26
+ Changes since last push to `origin/master`:
27
+
28
+ - Clean up surgeon CLI output with structured progress and chalk formatting
29
+ - Simplify surgeon run flow
30
+ - Fix surgeon trace directory handling
31
+ - Compact surgeon trace logging
32
+ - Implement surgeon autonomy control plane v1
33
+ - Fix surgeon autonomous proposal loop
34
+ - Fix surgeon autonomous backup and progress stalling
35
+ - Stabilize surgeon retirement and proposal passes
36
+ - Generalize surgeon prompts across corpus domains
37
+ - Add first-principles planning skill
38
+ - Tighten surgeon runtime safeguards
39
+ - Update `.gitignore` to include skills directory
40
+ - Remove first-principles planning skill and associated OpenAI agent configuration files
41
+ - Finish supersession completion on exhausted reviews
42
+ - Improve surgeon progress accounting and console output
43
+ - Suppress repeat supersession review and polish surgeon CLI output
44
+ - Add architecture review skill
45
+ - Refactor surgeon architecture boundaries
46
+ - Clarify surgeon pass startup summaries
47
+
5
48
  ## [1.8.2] - 2026-04-12
6
49
 
7
50
  Temporal parsing and ingest workflow polish patch release.
@@ -7,7 +7,7 @@ import {
7
7
  parseTuiSessionKey,
8
8
  readOpenClawSessionsStore,
9
9
  storeEntriesDetailed
10
- } from "../../chunk-PVYS6BMG.js";
10
+ } from "../../chunk-I6A6DPNF.js";
11
11
  import {
12
12
  EMBEDDING_DIMENSIONS,
13
13
  ENTRY_TYPES,
@@ -24,7 +24,7 @@ import {
24
24
  resolveEmbeddingModel,
25
25
  runUnifiedRecall,
26
26
  validateTemporalValidityRange
27
- } from "../../chunk-SQARNOYD.js";
27
+ } from "../../chunk-EMRMV2QR.js";
28
28
  import {
29
29
  resolveClaimSlotPolicy
30
30
  } from "../../chunk-GUDCFFRV.js";
@@ -1055,7 +1055,7 @@ function registerAgenrOpenClawTools(api, servicesPromise, logger) {
1055
1055
  var openclaw_plugin_default = {
1056
1056
  id: "agenr",
1057
1057
  name: "agenr",
1058
- version: "1.8.1",
1058
+ version: "1.9.0",
1059
1059
  description: "agenr memory plugin for OpenClaw",
1060
1060
  kind: "memory",
1061
1061
  contracts: {
@@ -1932,6 +1932,10 @@ var CREATE_SURGEON_RUN_PROPOSALS_REVIEW_STATUS_INDEX_SQL = `
1932
1932
  CREATE INDEX IF NOT EXISTS idx_surgeon_run_proposals_review_status
1933
1933
  ON surgeon_run_proposals(review_status)
1934
1934
  `;
1935
+ var CREATE_SURGEON_RUN_PROPOSALS_OPEN_ISSUE_INDEX_SQL = `
1936
+ CREATE INDEX IF NOT EXISTS idx_surgeon_run_proposals_open_issue
1937
+ ON surgeon_run_proposals(review_status, group_id, issue_kind)
1938
+ `;
1935
1939
  var CREATE_META_TABLE_SQL = `
1936
1940
  CREATE TABLE IF NOT EXISTS _meta (
1937
1941
  key TEXT PRIMARY KEY,
@@ -2055,6 +2059,7 @@ var SCHEMA_STATEMENTS = [
2055
2059
  CREATE_SURGEON_RUN_PROPOSALS_GROUP_ID_INDEX_SQL,
2056
2060
  CREATE_SURGEON_RUN_PROPOSALS_CREATED_AT_INDEX_SQL,
2057
2061
  CREATE_SURGEON_RUN_PROPOSALS_REVIEW_STATUS_INDEX_SQL,
2062
+ CREATE_SURGEON_RUN_PROPOSALS_OPEN_ISSUE_INDEX_SQL,
2058
2063
  CREATE_META_TABLE_SQL,
2059
2064
  CREATE_ENTRIES_CONTENT_HASH_INDEX_SQL,
2060
2065
  CREATE_ENTRIES_NORM_CONTENT_HASH_INDEX_SQL,
@@ -22,7 +22,7 @@ import {
22
22
  readOptionalString,
23
23
  readRequiredString,
24
24
  validateTemporalValidityRange
25
- } from "./chunk-SQARNOYD.js";
25
+ } from "./chunk-EMRMV2QR.js";
26
26
  import {
27
27
  compactClaimKey,
28
28
  describeClaimKeyNormalizationFailure,