@einsia/agent-git 0.2.2 → 0.2.3
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 +27 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,33 @@ 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.3] - 2026-09-20
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- **Send to externally owned Codex conversations.** Authorized operators can
|
|
14
|
+
enqueue text through the installed Codex CLI while its original process keeps
|
|
15
|
+
the writer lock. Capability discovery is nonmutating, and durable receipts
|
|
16
|
+
prevent duplicate submission after reconnect. Queue acceptance does not mean
|
|
17
|
+
execution; Codex controls consumption. Live controls still require ownership.
|
|
18
|
+
- Include Cloud connection diagnostics and executor history phase timings to
|
|
19
|
+
help locate connection and history-loading delays.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Batch native history protection and watch projection, and coalesce concurrent
|
|
24
|
+
history captures while retaining session identity and turn order.
|
|
25
|
+
- Remove the standalone `rc cloud enroll` command. `agit login` followed by
|
|
26
|
+
`agit rc start --detach` performs registration automatically.
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
|
|
30
|
+
- Resume Codex sessions promptly after the native writer releases ownership.
|
|
31
|
+
- Preserve empty Codex sessions before publishing them to a workspace.
|
|
32
|
+
- Keep unadopted native previews available with secret protection.
|
|
33
|
+
- Compare hydrated native content when resolving resume identity, and ignore
|
|
34
|
+
bookkeeping after a settled turn when checking for unsettled work.
|
|
35
|
+
|
|
9
36
|
## [0.2.2] - 2026-09-19
|
|
10
37
|
|
|
11
38
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@einsia/agent-git",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
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.
|
|
53
|
-
"@einsia/agent-git-linux-arm64": "0.2.
|
|
54
|
-
"@einsia/agent-git-darwin-x64": "0.2.
|
|
55
|
-
"@einsia/agent-git-darwin-arm64": "0.2.
|
|
56
|
-
"@einsia/agent-git-win32-x64": "0.2.
|
|
52
|
+
"@einsia/agent-git-linux-x64": "0.2.3",
|
|
53
|
+
"@einsia/agent-git-linux-arm64": "0.2.3",
|
|
54
|
+
"@einsia/agent-git-darwin-x64": "0.2.3",
|
|
55
|
+
"@einsia/agent-git-darwin-arm64": "0.2.3",
|
|
56
|
+
"@einsia/agent-git-win32-x64": "0.2.3"
|
|
57
57
|
}
|
|
58
58
|
}
|