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

Graph Compose: Hosted Temporal Workflows with Visual Builder and AI
Graph Compose is a hosted platform for orchestrating API workflows on Temporal, letting you define workflows as JSON graphs with three building methods: a React Flow visual builder, a TypeScript SDK, and an AI assistant that converts plain English to graphs.

Godmode Plugin Adds Autonomous Iteration Loop to Claude Code and Other AI Coding Agents
Godmode is an open-source plugin that adds an autonomous measure-modify-verify loop to Claude Code, with parallel agents, failure memory, and 126 skills including optimization, security audits, and TDD. It works with Cursor, Codex, Gemini CLI, and OpenCode.

Qhatu: Platform Turns GitHub Repos into Pay-Per-Use Micro SaaS with Claude
Qhatu is a platform that takes a GitHub repository and deploys it as a pay-per-use micro SaaS with a generated frontend and integrated payment processing. The system uses Anthropic APIs to analyze code, generate Dockerfiles, and create storefront UIs.

Signet: Open-Source Memory Layer for AI Coding Agents Hits 80% F1 on LoCoMo
Signet is an open-source memory system for AI coding agents that achieves 80% F1 on the LoCoMo benchmark, compared to 41% for standard RAG. It extracts memories after each session and injects relevant context before prompts, running locally with SQLite.