Zerostack 1.0.0: A Unix-Inspired Coding Agent in Pure Rust

Zerostack 1.0.0 has been published on crates.io. It's a coding agent built entirely in Rust, drawing inspiration from Unix design principles. Instead of a monolithic AI agent, Zerostack provides a set of composable CLI tools that communicate through stdin/stdout pipes, allowing developers to build custom workflows.
Key Features
- Unix philosophy: tools that do one thing and combine via pipes
- Pure Rust implementation — no runtime dependencies outside Rust ecosystem
- Small, focused commands for file editing, code search, shell execution, and LLM interaction
Usage Example
# Generate code with LLM and write to file
zerostack-ask "write a Rust function that sums a list" | zerostack-write src/sum.rs
The package is early-stage (v1.0.0) and aims to be a foundation for agentic workflows. Developers can extend it by chaining its tools with standard Unix utilities.
Who It's For
Rust developers who prefer modular, auditable AI tooling over black-box agents.
📖 Read the full source: HN AI Agents
👀 See Also

OpenTidy: Open-Source Background Assistant Using Claude Code for Admin Tasks
OpenTidy is an open-source macOS service that spawns persistent Claude Code sessions to handle admin tasks like invoices, forms, and communication triage. It runs up to 10 parallel jobs with Telegram notifications for sensitive actions.

Banker Creates Credit Due Diligence Tool with 31 AI Prompts Using Only Claude
A banker with 17 years of MSME credit underwriting experience in India has open-sourced 31 AI prompts that transform a visiting card into a full credit due diligence report, compressing a 3-4 week process to 30 minutes. The tool was built entirely through conversation with Claude, without writing any code.

OpenClaw Browser Relay Chrome Extension Alternative to Manual Configs
A Reddit user reports success with a Chrome extension for OpenClaw browser relay after manual configuration attempts caused system crashes and debugging headaches.

Adam: An Embeddable Cross-Platform AI Agent Library in C
Adam is a C library providing a complete agent loop with tool calling, memory, voice, and both cloud/local LLM support, designed to be embedded into any application.