@hybridaione/hybridclaw 0.24.2 → 0.24.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 +30 -0
- package/README.md +1 -1
- package/console/dist/assets/{chat-DUs1uwHA.js → chat-CxVoYrJK.js} +28 -28
- package/console/dist/assets/{index-CddqPFhC.js → index-B4At9j5Y.js} +2 -2
- package/console/dist/assets/{terminal-of2FhP0B.js → terminal-Dnsm3Yl9.js} +1 -1
- package/console/dist/index.html +1 -1
- package/console/package.json +1 -1
- package/container/dist/tools.js +24 -3
- package/container/dist/tools.js.map +1 -1
- package/container/npm-shrinkwrap.json +2 -2
- package/container/package-lock.json +2 -2
- package/container/package.json +1 -1
- package/container/src/tools.ts +26 -3
- package/dist/agent/agent.d.ts.map +1 -1
- package/dist/agent/agent.js +17 -11
- package/dist/agent/agent.js.map +1 -1
- package/dist/auth/codex-auth.d.ts +8 -2
- package/dist/auth/codex-auth.d.ts.map +1 -1
- package/dist/auth/codex-auth.js +59 -21
- package/dist/auth/codex-auth.js.map +1 -1
- package/dist/gateway/gateway-chat-service.d.ts.map +1 -1
- package/dist/gateway/gateway-chat-service.js +4 -3
- package/dist/gateway/gateway-chat-service.js.map +1 -1
- package/dist/gateway/gateway-service.d.ts.map +1 -1
- package/dist/gateway/gateway-service.js +99 -21
- package/dist/gateway/gateway-service.js.map +1 -1
- package/dist/memory/db.d.ts.map +1 -1
- package/dist/memory/db.js +16 -5
- package/dist/memory/db.js.map +1 -1
- package/dist/providers/codex-discovery.d.ts.map +1 -1
- package/dist/providers/codex-discovery.js +47 -16
- package/dist/providers/codex-discovery.js.map +1 -1
- package/dist/providers/utils.d.ts +7 -1
- package/dist/providers/utils.d.ts.map +1 -1
- package/dist/providers/utils.js +12 -2
- package/dist/providers/utils.js.map +1 -1
- package/dist/security/confidential-redact.d.ts +13 -0
- package/dist/security/confidential-redact.d.ts.map +1 -1
- package/dist/security/confidential-redact.js +47 -8
- package/dist/security/confidential-redact.js.map +1 -1
- package/dist/security/confidential-runtime.d.ts +14 -6
- package/dist/security/confidential-runtime.d.ts.map +1 -1
- package/dist/security/confidential-runtime.js +136 -35
- package/dist/security/confidential-runtime.js.map +1 -1
- package/docs/content/guides/hatching-task-ideas.md +1 -1
- package/npm-shrinkwrap.json +5 -5
- package/package.json +1 -1
- package/templates/BOOTSTRAP.md +17 -13
- package/templates/TASK_IDEAS.md +1 -1
- package/templates/USER.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,36 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## [0.24.3](https://github.com/HybridAIOne/hybridclaw/tree/v0.24.3) - 2026-06-15
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- **Hatching conversation flow**: Agent hatching now stays conversational and
|
|
10
|
+
uses a tailored first-email subject instead of a fixed default. Web chat
|
|
11
|
+
reflects gateway-owned hatching autostart with a thinking state and refreshed
|
|
12
|
+
history instead of injecting a hidden kickoff message from the browser.
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- **Confidential audit metadata**: Confidential masking and rehydration now
|
|
17
|
+
write metadata-only audit events with redaction counts, class summaries, and
|
|
18
|
+
surface names while keeping raw secret and client values out of the audit
|
|
19
|
+
wire log.
|
|
20
|
+
- **Codex model discovery recovery**: Codex model discovery force-refreshes
|
|
21
|
+
stale credentials after authorization failures, can re-import the Codex CLI
|
|
22
|
+
auth store when refresh requires relogin, and avoids caching empty model
|
|
23
|
+
lists after rejected credentials.
|
|
24
|
+
- **Hatching chat continuity**: Switched-agent hatching turns now keep the full
|
|
25
|
+
prior chat history in context, avoid repeating onboarding after the prelude,
|
|
26
|
+
and reload browser history so gateway-authored hatching messages appear
|
|
27
|
+
immediately.
|
|
28
|
+
- **Legacy audit user actors**: Structured audit queries canonicalize legacy
|
|
29
|
+
plain user ids as local user actors and validate the normalized actor before
|
|
30
|
+
indexing.
|
|
31
|
+
- **Container edit compatibility**: The container `edit` tool accepts
|
|
32
|
+
model-generated `old_text` and `new_text` aliases in addition to the primary
|
|
33
|
+
replacement fields.
|
|
34
|
+
|
|
5
35
|
## [0.24.2](https://github.com/HybridAIOne/hybridclaw/tree/v0.24.2) - 2026-06-14
|
|
6
36
|
|
|
7
37
|
### Added
|
package/README.md
CHANGED
|
@@ -211,7 +211,7 @@ Core pieces:
|
|
|
211
211
|
| Build desktop releases | [Desktop Release Builds](https://hybridaione.github.io/hybridclaw/docs/developer-guide/desktop-release) |
|
|
212
212
|
| Contribute | [CONTRIBUTING.md](./CONTRIBUTING.md), [docs/content/README.md](./docs/content/README.md) |
|
|
213
213
|
|
|
214
|
-
Latest release: [v0.24.
|
|
214
|
+
Latest release: [v0.24.3](https://github.com/HybridAIOne/hybridclaw/releases/tag/v0.24.3).
|
|
215
215
|
Release notes: [CHANGELOG.md](./CHANGELOG.md)
|
|
216
216
|
|
|
217
217
|
## Development
|