Skip to content

Commit aec10e0

Browse files
sync from HMG monorepo 59dfc4a (2026-06-15)
1 parent 1487339 commit aec10e0

17 files changed

Lines changed: 44 additions & 19 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ For binary release notes, see [GitHub Releases](https://github.com/HMG-AI/HMG/re
66

77
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
88

9+
## [1.4.8] — 2026-06-14
10+
11+
CLI/TUI usability and installed-evaluation reliability patch.
12+
13+
### Fixed
14+
15+
- Noisy multilingual recall now prioritizes exact high-signal project/sentinel anchors over broad old handoff atoms.
16+
- MCP memory context now accepts shorthand `context.scope` objects with tenant/workspace/repository/branch fields.
17+
- CLI output formats now fail explicitly for unsupported values instead of silently falling back to text.
18+
- `hmg doctor --format json|yaml` emits structured summaries for ordinary doctor runs.
19+
- TUI splash, scope editing, command palette, context help, and single-line input editing are improved.
20+
921
## [1.4.7] — 2026-06-13
1022

1123
Open-source release-readiness hardening: ordered multi-mirror download fallback, manifest-driven download URLs, and export leak-gate false-positive fix.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</p>
44

55
<p align="center">
6-
<img src="https://img.shields.io/badge/version-1.4.7-blue.svg" alt="Version">
6+
<img src="https://img.shields.io/badge/version-1.4.8-blue.svg" alt="Version">
77
<img src="https://img.shields.io/badge/license-Apache--2.0%20%7C%20Community-green.svg" alt="License">
88
<img src="https://img.shields.io/badge/rust-1.85%2B-orange.svg" alt="Rust">
99
<img src="https://img.shields.io/badge/platform-Linux%20%7C%20macOS%20%7C%20Windows-lightgrey.svg" alt="Platform">

certification/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

certification/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hmg-certification"
3-
version = "1.4.7"
3+
version = "1.4.8"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Conformance test suite for HMG-compatible implementations"

pi-agent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# @hmg_ai/pi-agent
22

33
<p>
4-
<img src="https://img.shields.io/badge/version-1.4.7-blue.svg" alt="Version">
4+
<img src="https://img.shields.io/badge/version-1.4.8-blue.svg" alt="Version">
55
<img src="https://img.shields.io/badge/license-MIT%20%7C%20Apache--2.0-green.svg" alt="License">
66
</p>
77

pi-agent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hmg_ai/pi-agent",
3-
"version": "1.4.7",
3+
"version": "1.4.8",
44
"description": "HMG memory adapter for the pi coding agent",
55
"type": "module",
66
"keywords": [

protocol/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hmg-protocol"
3-
version = "1.4.7"
3+
version = "1.4.8"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "Wire-safe public DTO types for the HMG agent memory protocol"

public-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"product": {
44
"name": "HMG",
55
"full_name": "Holographic Memory Graph",
6-
"version": "1.4.7",
6+
"version": "1.4.8",
77
"release_channel": "stable",
88
"tagline": "Agent memory that actually works"
99
},
@@ -201,12 +201,12 @@
201201
"sdk": {
202202
"python": {
203203
"package": "hmg-sdk",
204-
"version": "1.4.7",
204+
"version": "1.4.8",
205205
"registry": "https://pypi.org/project/hmg-sdk/"
206206
},
207207
"typescript": {
208208
"package": "@hmg_ai/sdk-ts",
209-
"version": "1.4.7",
209+
"version": "1.4.8",
210210
"registry": "https://www.npmjs.com/package/@hmg_ai/sdk-ts"
211211
}
212212
},

scripts/install.ps1

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,13 @@ try {
407407
Log " hmg daemon start # Start background daemon"
408408
Log " hmg tui # Open terminal UI"
409409
Log ""
410+
Log " Slow/blocked model downloads (mainland China)?"
411+
Log " HMG downloads a small embedding model from HuggingFace on first use."
412+
Log " If that is slow or blocked, set a mirror before starting the daemon:"
413+
Log " $env:HF_ENDPOINT = 'https://hf-mirror.com'"
414+
Log " $env:HMG_EMBEDDING_ENDPOINT = 'https://hf-mirror.com'"
415+
Log " hmg model embedding download"
416+
Log ""
410417
Log " Update later:"
411418
Log " hmg update"
412419
Log ""

0 commit comments

Comments
 (0)