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

DELIGHT: Local Orchestrator Uses Multiple ChatGPT Sessions as Coordinated Agents
DELIGHT is a local orchestrator that runs multiple hidden ChatGPT browser sessions simultaneously, coordinating them like a team of agents without requiring API keys or GPU resources. It connects to OpenClaw as an action layer to apply changes to real files and run tests.

Terrarium: Open-Source Sandbox for Agentic Environments with Time Machine Rewind
A versatile sandboxing solution for running multiple AI agents securely on any VPS or cloud. Features isolated worlds, reverse-proxy management, GUIs, and a time machine to rewind container state.

Claude Token Counter Updated with Model Comparison Feature
Simon Willison's Claude Token Counter tool now supports comparing token counts across different Claude models. The update reveals Opus 4.7 uses 1.0–1.35× more tokens than Opus 4.6 due to an updated tokenizer, potentially increasing costs by around 40% despite identical pricing.

Canary: AI QA Agent for Automated Testing Based on Code Changes
Canary is an AI QA agent that reads codebases, analyzes pull request diffs, and generates end-to-end tests for affected user workflows. It connects to preview environments, runs tests, and comments results directly on PRs with recordings.