Skip to content

Releases: markmdev/reflex

v0.1.5 — Fix Doc Discovery

04 Mar 16:11

Choose a tag to compare

Fixed

  • Doc discovery scans wrong directory — Reflex was using the agent's current working directory instead of the project root (CLAUDE_PROJECT_DIR). When the agent cds into subdirectories (e.g., projects/meridian/), all docs and skills at the top level were invisible to routing. Now uses CLAUDE_PROJECT_DIR first, falling back to cwd.

Upgrade

curl -fsSL https://raw.githubusercontent.com/markmdev/reflex/main/install.sh | bash

Then update the plugin:

/plugin update reflex@markmdev

Full Changelog: v0.1.4...v0.1.5

v0.1.4

26 Feb 12:33

Choose a tag to compare

Full Changelog: v0.1.3...v0.1.4

v0.1.3 — Tests, log rotation, repo cleanup

26 Feb 12:16

Choose a tag to compare

  • Tests: 18 tests for router filtering, prompt builder, and log utilities
  • Log rotation: Truncates to 500 entries when log exceeds 500KB
  • Repo cleanup: Gitignored compiled binary, removed openclaw debug log

Rebuild: go install github.com/markmdev/reflex@v0.1.3

Full Changelog: v0.1.2...v0.1.3

v0.1.2 — Leaner logs

26 Feb 12:09

Choose a tag to compare

Log entries no longer store full messages, prompt, or excluded registry — cuts per-entry size ~70%.

reflex logs display now shows:

  • Status indicators (✓/○/✗)
  • Skip reasons inline
  • LLM reasoning for each decision
  • Compact timestamps

Rebuild: go install github.com/markmdev/reflex@v0.1.2

Full Changelog: v0.1.1...v0.1.2

v0.1.1 — Balanced routing

26 Feb 12:06

Choose a tag to compare

Routing prompt rewritten to prefer precision over recall.

Before: "When in doubt, include it — it's better to over-suggest than to miss something relevant"
After: "When in doubt, leave it out — unnecessary context wastes the agent's attention"

The LLM now matches against read_when hints, prefers fewer high-relevance items, and treats empty results as a valid common outcome.

Rebuild from source: go install github.com/markmdev/reflex@v0.1.1

Full Changelog: v0.1.0...v0.1.1

v0.1.0

24 Feb 08:54

Choose a tag to compare