v0.73.1

KalyanKS-NLP/llm-engineer-toolkitv0.73.1May 25, 2026by github-actions[bot]

AI Summary

This release focuses on critical bug fixes, specifically addressing a NUL byte handling issue in environment variables and optimizing HTTP body accumulation in `--listen` mode to prevent server blocking.

Key Highlights

  • Fixed O(n^2) HTTP body accumulation in `--listen` mode, preventing single-threaded server blocking on large requests (~390 KB).
  • Skip `$FZF_CURRENT_ITEM` export when the item contains a NUL byte to prevent `exec(2)` rejection and breaking preview/child commands.
  • Performance improvement ensuring child commands and previews work correctly even with complex input data.

Full Release Notes

- Bug fixes
    - Skip `$FZF_CURRENT_ITEM` export when the item contains a NUL byte; `exec(2)` rejects the env, breaking preview and other child commands (#4806)
    - Fixed O(n^2) HTTP body accumulation in `--listen`; a single ~390 KB request could block the single-threaded server for ~8 s (Michal Majchrowicz, Marcin Wyczechowski, AFINE Team)