Skip to content
Merged
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 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": "@avoidwork/madz",
"version": "1.44.3",
"version": "1.45.0",
"description": "A personality-driven AI harness channeling Mads Mikkelsen's cinematic soul.",
"keywords": [
"cli",
Expand Down
1 change: 1 addition & 0 deletions src/tools/reflection.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down