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

Free Claude Session Optimizer: Token Estimator, Prompt Compressor, and Session Planner
A developer has built a free, no-sign-up tool to help manage Claude's usage limits with three features: a token estimator to preview prompt consumption, a prompt compressor that reduces prompts 40-60% by removing filler phrases, and a session planner that groups tasks to minimize context reloading.

Claude-Powered MCP Tool Generates Interactive HTML Components Without Build Tools
A developer built daub.dev, a system where Claude drives an MCP server to produce styled, interactive HTML UI components from natural language descriptions without React, bundlers, or build pipelines.

ai-codex: Pre-index your codebase to save Claude tokens
ai-codex is a tool that generates compact markdown indexes of your codebase, allowing Claude Code to skip the initial exploration phase that typically consumes 30-50K tokens per conversation. It creates five files covering routes, pages, libraries, schemas, and components.

Yavio: Open-Source Product Analytics SDK for MCP Apps
Yavio is an open-source product analytics SDK for MCP and MCP Apps that automatically captures tool calls, errors, and resource reads with one function call. The MIT-licensed project provides a dashboard with per-tool breakdowns, funnels, retention, and error tracking.