Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/release-notes/v1.0.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Memmy v1.0.7

## Highlights

- Added persistent goals for longer Agent tasks. Memmy can keep the active objective, progress, and continuation context across turns instead of treating every message as a separate task.
- Added per-session model selection and a unified model workspace for account models and BYOK providers, with provider-aware connection checks and clearer configuration status.
- Added DeepSeek Harness as an Agent source, including local history discovery and Memmy Skill installation for sharing Memory on demand.

## Agent and desktop improvements

- Improved cross-Agent task continuity across desktop, IM channels, and the terminal interface, including queued messages and more consistent session projection.
- Added provider and model logos, clearer model-selection controls, and safer handling when a configured model or endpoint is unavailable.
- Improved terminal startup, restart, and gateway behavior so configuration migrations and session recovery complete before the interactive interface connects.

## Memory and reliability improvements

- Added versioned migrations for model configuration and goal state so existing installations can move to the new runtime structure without losing supported settings.
- Improved Memory task routing, retrieval query handling, episode processing, and related error reporting for more reliable capture and recall.
- Strengthened session admission, cancellation, transcript synchronization, and tool-result handling to reduce duplicated, misplaced, or incomplete conversation state.
2 changes: 1 addition & 1 deletion App/backend/src/project-version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/** Generated from the root package.json by scripts/sync-project-version.mjs. */
export const MEMMY_VERSION = "1.0.5";
export const MEMMY_VERSION = "1.0.7";
4 changes: 2 additions & 2 deletions App/memmy-agent/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion App/memmy-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "memmy-agent",
"version": "1.0.6",
"version": "1.0.7",
"description": "TypeScript refactor of memmy's agent runtime.",
"type": "module",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion App/shell/desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@memmy/desktop",
"version": "1.0.6",
"version": "1.0.7",
"private": true,
"type": "module",
"description": "Memmy desktop client.",
Expand Down
2 changes: 1 addition & 1 deletion Memory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@memmy/memory",
"version": "1.0.6",
"version": "1.0.7",
"private": true,
"type": "module",
"main": "./dist/src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion Memory/src/cli/npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@memtensor/memmy-memory-cli",
"version": "1.0.6",
"version": "1.0.7",
"description": "Memmy Memory CLI for local agent memory.",
"type": "module",
"bin": {
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "memmy-agent",
"version": "1.0.6",
"version": "1.0.7",
"private": true,
"type": "module",
"description": "Local-first agent memory substrate with desktop and CLI surfaces.",
Expand Down