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

✍️ OpenClawRadar📅 Published: March 21, 2026🔗 Source
Atuin v18.13 adds AI shell commands, faster search daemon, and PTY proxy
Ad

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 = true

With 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 = true

Accuracy 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.

Ad

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

Ad

👀 See Also

Benchmark Results: Claude Agent Swarm with Memory System Shows 30-43% Token Cost Savings
Tools

Benchmark Results: Claude Agent Swarm with Memory System Shows 30-43% Token Cost Savings

A developer tested a 6-agent Claude swarm on a 40-point coding task with and without a custom memory system called Stompy. Results show Sonnet 4.6 with memory achieved perfect scores at $3.98 vs $7.04 without, while Haiku 4.5 failed completely without memory but scored 39/40 with it.

OpenClawRadar
cc+ Desktop App for Claude Code: Multi-Session Management and Fleet Orchestration
Tools

cc+ Desktop App for Claude Code: Multi-Session Management and Fleet Orchestration

cc+ is an open-source desktop application for Claude Code built on the Claude Agent SDK, available for macOS and Linux. It provides multi-session tabs, live activity tree visualization, security scoring, workflow enforcement, and fleet orchestration capabilities.

OpenClawRadar
Open source PR review agent PrixAI detects all 10/10 planted bugs at 6x lower cost than CodeRabbit
Tools

Open source PR review agent PrixAI detects all 10/10 planted bugs at 6x lower cost than CodeRabbit

A Reddit user built PrixAI, an open source PR review agent that uses local/cheap inference models to match CodeRabbit's features at 6x less cost, detecting all 10 intentionally planted issues in a test PR.

OpenClawRadar
Signet: An Open-Source Local-First Memory Substrate for AI Agents
Tools

Signet: An Open-Source Local-First Memory Substrate for AI Agents

Signet is an open-source memory substrate for AI agents that moves memory handling outside the agent loop. It preserves transcripts, distills sessions into structured memory, links entities into a graph, and injects context before prompts start.

OpenClawRadar