Atuin v18.13 – better search, a PTY proxy, and AI for your shell
TL;DR Highlight
Shell history tool Atuin released v18.13 with in-memory fuzzy search, a PTY proxy (Hex) that improves terminal rendering, and an AI feature that generates bash commands from natural language.
Who Should Read
Developers who use the terminal daily and frequently rely on shell history search, or those tired of repeatedly typing complex commands and looking for productivity tools.
Core Mechanics
- A daemon now maintains an in-memory search index for faster and more accurate search. It uses a modified version of nucleo (same algorithm as fzf internally), with configurable weights for frequency, recency, and frecency scores.
- This daemon-based fuzzy search, previously labeled 'experimental,' has been officially integrated. Setting `search_mode = "daemon-fuzzy"` and `autostart = true` in config lets Atuin manage the daemon lifecycle automatically.
- The daemon runs independently of the shell, so when you SSH into a remote machine, the latest history is already synced and ready.
- Atuin AI lets you press `?` from an empty prompt to describe what you want in natural language and get a bash command. Enter to run immediately, Tab to edit, or `f` for follow-up questions. It uses man pages and command output datasets to improve accuracy.
- If the AI-generated command looks dangerous (data deletion, deployment restarts), a combination of static checks and LLM-based guardrails flags it as 'dangerous' and requires double-Enter to execute.
- Atuin AI's default config only collects OS and shell info. Future features adding current directory, git status, and other context will require explicit user opt-in.
- The PTY proxy Hex (`atuin hex`) lets Atuin render popups over existing terminal output without clearing the screen or taking over fullscreen. It works like a very lightweight tmux but only maintains a VT100 shadow buffer without touching scrollback.
- Auth was upgraded to support Google and GitHub account login. However, the Hub server code isn't open-source yet — they plan to open it once the codebase stabilizes.
Evidence
- Community reaction to AI was sharply divided. 'Stop cramming AI into every tool' and 'good tools should be simple and orthogonal' criticisms were common, while others praised the release — 'Atuin is one of my favorite tools and this release is great.' One comment used 'enshittification begins the moment AI is added.'
- Questions arose about Atuin AI apparently using hosted LLMs — whether login is required and who pays for tokens. Others noted it's likely integrated with Atuin Hub (shell history sync service) accounts, sharing the hub.atuin.sh/register link.
- The PTY proxy (Hex) feature received positive reactions — 'Finally, no more disappearing scrollback.' Users who had long tolerated the rendering trade-offs between full-screen and inline modes were welcoming.
- Unix philosophy advocates (one tool, one job) said 'It was fine as a history search tool — adding AI makes it unnecessarily complex' and mentioned looking for alternatives. Removing fzf support in a previous decision was also cited as a reason for leaving.
- A request for auto-deleting sensitive commands (e.g., commands containing passwords) after a specified time appeared. Currently, fully blocking sensitive commands also blocks up/down arrow editing, so a 1-minute timeout option was specifically suggested.
How to Apply
- If shell history search is slow or inaccurate, add `search_mode = "daemon-fuzzy"` and `[daemon] enabled = true`, `autostart = true` to your config for improved speed and accuracy with in-memory fuzzy search.
- If you frequently search for or forget complex commands (find, awk, curl option combos), enable Atuin AI (`[ai] enabled = true`) and press `?` from an empty prompt to describe what you need in natural language. Tab to edit if full automation feels uncomfortable.
- If Atuin's search popup was annoying because it overwrote terminal output, add `eval "$(atuin hex init)"` to your shell config to display the popup as an overlay without clearing existing output. File bug reports if issues arise.
- If you SSH into multiple servers and history isn't synced, the daemon's `autostart = true` setting ensures the latest history is ready the moment you log in.
Code Example
# ~/.config/atuin/config.toml configuration example
search_mode = "daemon-fuzzy"
[daemon]
enabled = true
autostart = true
[ai]
enabled = true
# Enable PTY proxy Hex (add to shell config file)
eval "$(atuin hex init)"
# One-time Hex execution
atuin hexTerminology
Related Papers
Show HN: adamsreview – better multi-agent PR reviews for Claude Code
Claude Code에서 최대 7개의 병렬 서브 에이전트가 각각 다른 관점으로 PR을 리뷰하고, 자동 수정까지 해주는 오픈소스 플러그인이다. 기존 /review나 CodeRabbit보다 실제 버그를 더 많이 잡는다고 주장하지만 커뮤니티에서는 복잡도와 실효성에 대한 회의론도 나왔다.
How Fast Does Claude, Acting as a User Space IP Stack, Respond to Pings?
Claude Code에게 IP 패킷을 직접 파싱하고 ICMP echo reply를 구성하도록 시켜서 실제로 ping에 응답하게 만든 실험으로, 'Markdown이 곧 코드이고 LLM이 프로세서'라는 아이디어를 네트워크 스택 수준까지 밀어붙인 재미있는 사례다.
Show HN: Git for AI Agents
AI 코딩 에이전트(Claude Code 등)가 수행한 모든 툴 호출을 자동으로 추적하고, 어떤 프롬프트가 어느 코드 줄을 작성했는지 blame까지 가능한 버전 관리 도구다.
Principles for agent-native CLIs
AI 에이전트가 CLI 도구를 더 잘 사용할 수 있도록 설계하는 원칙들을 정리한 글로, 에이전트가 CLI를 도구로 활용하는 빈도가 높아지면서 이 설계 방식이 실용적으로 중요해지고 있다.
Agent-harness-kit scaffolding for multi-agent workflows (MCP, provider-agnostic)
여러 AI 에이전트가 서로 역할을 나눠 협업할 수 있도록 조율하는 scaffolding 도구로, Vite처럼 설정 없이 빠르게 멀티 에이전트 파이프라인을 구성할 수 있다.
Show HN: Tilde.run – Agent sandbox with a transactional, versioned filesystem
AI 에이전트가 실제 프로덕션 데이터를 건드려도 롤백할 수 있는 격리된 샌드박스 환경을 제공하는 도구로, GitHub/S3/Google Drive를 하나의 버전 관리 파일시스템으로 묶어준다.