@einsia/agent-git 0.2.2 → 0.2.4

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 +41 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -6,6 +6,47 @@ Every notable change to agit, the AgentGit CLI, by release. The format follows
6
6
  its [GitHub Release](https://github.com/Einsia/agent-git/releases), and the
7
7
  `@einsia/agent-git` npm package ships this file.
8
8
 
9
+ ## [0.2.4] - 2026-09-21
10
+
11
+ ### Fixed
12
+
13
+ - Return an existing native Codex inbox receipt before probing the executable,
14
+ so reconnect retries remain observable when Codex is temporarily unavailable.
15
+ Retries with the same message ID do not enqueue another message.
16
+ - Coalesce repeated native history protection failures and keep internal error
17
+ details in daemon logs instead of repeating them in conversation history.
18
+ - Preserve native conversation titles in session pickers and omit runtime
19
+ bookkeeping from message previews and counts.
20
+ - Settle multiple newly detected heuristic secrets in one pass, and bound identity
21
+ evidence to the provenance budget when scanning large inputs.
22
+
23
+ ## [0.2.3] - 2026-09-20
24
+
25
+ ### Added
26
+
27
+ - **Send to externally owned Codex conversations.** Authorized operators can
28
+ enqueue text through the installed Codex CLI while its original process keeps
29
+ the writer lock. Capability discovery is nonmutating, and durable receipts
30
+ prevent duplicate submission after reconnect. Queue acceptance does not mean
31
+ execution; Codex controls consumption. Live controls still require ownership.
32
+ - Include Cloud connection diagnostics and executor history phase timings to
33
+ help locate connection and history-loading delays.
34
+
35
+ ### Changed
36
+
37
+ - Batch native history protection and watch projection, and coalesce concurrent
38
+ history captures while retaining session identity and turn order.
39
+ - Remove the standalone `rc cloud enroll` command. `agit login` followed by
40
+ `agit rc start --detach` performs registration automatically.
41
+
42
+ ### Fixed
43
+
44
+ - Resume Codex sessions promptly after the native writer releases ownership.
45
+ - Preserve empty Codex sessions before publishing them to a workspace.
46
+ - Keep unadopted native previews available with secret protection.
47
+ - Compare hydrated native content when resolving resume identity, and ignore
48
+ bookkeeping after a settled turn when checking for unsettled work.
49
+
9
50
  ## [0.2.2] - 2026-09-19
10
51
 
11
52
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@einsia/agent-git",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "Version control for agent sessions — the agit CLI plus skills/hooks/MCP wiring for Claude Code, Codex, OpenCode and Cursor. The AgentGit hub deploys separately.",
5
5
  "keywords": [
6
6
  "agit",
@@ -49,10 +49,10 @@
49
49
  "access": "public"
50
50
  },
51
51
  "optionalDependencies": {
52
- "@einsia/agent-git-linux-x64": "0.2.2",
53
- "@einsia/agent-git-linux-arm64": "0.2.2",
54
- "@einsia/agent-git-darwin-x64": "0.2.2",
55
- "@einsia/agent-git-darwin-arm64": "0.2.2",
56
- "@einsia/agent-git-win32-x64": "0.2.2"
52
+ "@einsia/agent-git-linux-x64": "0.2.4",
53
+ "@einsia/agent-git-linux-arm64": "0.2.4",
54
+ "@einsia/agent-git-darwin-x64": "0.2.4",
55
+ "@einsia/agent-git-darwin-arm64": "0.2.4",
56
+ "@einsia/agent-git-win32-x64": "0.2.4"
57
57
  }
58
58
  }