Atuin v18.13 adds AI shell commands, faster search daemon, and PTY proxy

Search improvements with daemon
The daemon, previously experimental, now maintains a hot, in-memory search index powered by a modified version of nucleo, which implements the same algorithm as fzf. Configurable multipliers for frequency, recency, and frecency scoring are available. Enable with:
search_mode = "daemon-fuzzy"
[daemon]
enabled = true
autostart = trueWith autostart enabled, Atuin manages the daemon lifecycle. The daemon also enables syncing records without shell interaction, keeping remote machines updated.
Atuin AI for shell commands
Press ? on an empty prompt, describe what you want, then press enter to execute or tab to edit. Press f to follow up with adjustments or questions. Enable with:
[ai]
enabled = trueAccuracy comes from frontier models combined with a dataset powered by man pages and command outputs. Safety checks flag dangerous commands (like wiping data or restarting deployments) requiring double enter to execute. Data privacy is minimal by default—only OS and shell info—with optional permissions for directory path, contents, git status, etc.
PTY proxy (hex)
Hex enables Atuin popups to render over previous terminal output without clearing it, unlike previous fullscreen or inline modes. It's a lightweight PTY proxy that behaves like minimal tmux but doesn't affect scrollback or break terminal features. Enable one-off with atuin hex or permanently with:
eval "$(atuin hex init)"Future uses include searching/syncing command outputs, supporting shells without hooks, and readline-esque features.
Other updates
New authentication for hosted sync service (Atuin Hub) adds Google/GitHub login and email recovery. Existing credentials still work. Hub isn't open source yet due to rapid changes. Self-hosting remains unchanged.
📖 Read the full source: HN AI Agents
👀 See Also

Atoo Studio: Open-Source Workspace for Managing Multi-Project Claude Code Workflows
Atoo Studio is an open-source workspace built to address terminal and tab chaos when using Claude Code across multiple projects. It introduces session forking like Git branches and allows continuation across Claude Code, Codex CLI, and Gemini CLI.

TinyFish Web Agent Outperforms Competitors in Web Task Benchmarking
TinyFish's web agent achieved an 81.9% success rate on hard web tasks, significantly outperforming competitors like OpenAI Operator at 43.2%.

Code retrieval for AI agents: Why vector embeddings fail and per-file LLM graphs win
After a year of building a code indexing system, the team behind Bytebell found that vector embeddings on code chunks and Tree-sitter ASTs both fell short, while per-file LLM summaries stored in a Neo4j graph with semantic fulltext search significantly improved retrieval precision.

cortex-engine MCP server adds persistent memory and multi-agent support
cortex-engine v0.4.0 is an open-source MCP server that gives AI agents persistent long-term memory with tools like observe(), query(), believe(), and dream(). It now supports multiple agents with isolated memory namespaces.