From 57f88fe5544dafa47d5221ec71cbe6f65bf30c7f Mon Sep 17 00:00:00 2001 From: Jason Mulligan Date: Mon, 17 Aug 2026 07:24:22 -0400 Subject: [PATCH 1/2] chore: release v1.45.0 --- CHANGELOG.md | 11 +++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a05cee6c..599a8e41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,19 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [1.45.0](https://github.com/avoidwork/madz/compare/1.44.3...1.45.0) + +- fix: remove writeMemoryFile from session handling [`#801`](https://github.com/avoidwork/madz/pull/801) +- feat: add email integration (read, send, manage) [`#800`](https://github.com/avoidwork/madz/pull/800) +- Revert "feat: add @-triggered file path autocomplete to TUI input panel (#798)" [`#799`](https://github.com/avoidwork/madz/pull/799) +- feat: add @-triggered file path autocomplete to TUI input panel [`#798`](https://github.com/avoidwork/madz/pull/798) +- feat: add email integration (read, send, manage) (#800) [`#779`](https://github.com/avoidwork/madz/issues/779) [`#779`](https://github.com/avoidwork/madz/issues/779) + #### [1.44.3](https://github.com/avoidwork/madz/compare/1.44.2...1.44.3) +> 14 August 2026 + +- chore: release v1.44.3 [`#797`](https://github.com/avoidwork/madz/pull/797) - Revert "feat: add @-triggered file path autocomplete to TUI input panel (#793)" [`#795`](https://github.com/avoidwork/madz/pull/795) - refactor: remove grep and ls from agent tool sets and harness excludedTools [`#794`](https://github.com/avoidwork/madz/pull/794) - feat: add @-triggered file path autocomplete to TUI input panel [`#793`](https://github.com/avoidwork/madz/pull/793) diff --git a/package-lock.json b/package-lock.json index 04a405ea..0bd2ecf7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@avoidwork/madz", - "version": "1.44.3", + "version": "1.45.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@avoidwork/madz", - "version": "1.44.3", + "version": "1.45.0", "license": "BSD-3-Clause", "dependencies": { "@langchain/langgraph": "^1.4.9", diff --git a/package.json b/package.json index 644d1a83..495e206d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@avoidwork/madz", - "version": "1.44.3", + "version": "1.45.0", "description": "A personality-driven AI harness channeling Mads Mikkelsen's cinematic soul.", "keywords": [ "cli", From 9d9bbee0e1d3960f5e1604afd0e34b3800b26522 Mon Sep 17 00:00:00 2001 From: Jason Mulligan Date: Mon, 17 Aug 2026 07:37:06 -0400 Subject: [PATCH 2/2] fix: align reflection cutoff to midnight for day-granularity filtering --- src/tools/reflection.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tools/reflection.js b/src/tools/reflection.js index 3b2b6d68..b14d6758 100644 --- a/src/tools/reflection.js +++ b/src/tools/reflection.js @@ -107,6 +107,7 @@ export async function reflectionImpl(input, options) { const cutoff = new Date(); cutoff.setDate(cutoff.getDate() - windowDays); + cutoff.setHours(0, 0, 0, 0); // Use find to sort files by mtime (newest first), process all within window let output;