Klaw.sh: Kubernetes-Style Orchestration for AI Agents

Klaw.sh is an open-source platform designed to manage AI agents at scale, utilizing principles similar to Kubernetes. It facilitates agent deployment and orchestration through isolation environments using clusters and namespaces that help manage team-level operations such as marketing, sales, and support. Key features include seamless integration with communication platforms like Slack, X, and Discord.
Klaw.sh offers a CLI tool resembling kubectl for managing agents. Example commands include:
klaw create cluster mycompanyklaw create namespace marketingklaw deploy agent.yaml
The developers rewrote the platform from Node.js to Go, reducing memory usage per agent from over 800MB to less than 10MB.
Use cases include deploying multiple agents across several accounts, ensuring that one misbehaving agent cannot impact others, due to namespace isolation. Adding a new account is straightforward, requiring just the creation of a new namespace and deploying the existing configuration.
Klaw.sh functions at a higher operational level than frameworks like CrewAI or LangGraph, which focus on agent collaboration for tasks. It acts as a management layer capable of integrating such frameworks within its namespaces.
📖 Read the full source: HN AI Agents
👀 See Also

Claude-voice: Local TTS with Word Highlighting for Claude Code
Claude-voice is a Python tool that adds local text-to-speech with real-time word highlighting to Claude Code's voice mode. It uses Kokoro TTS (82M parameters) running fully locally without API keys.

Open-source local hook automatically switches Claude models to cut AI costs
A developer created a local hook for Cursor and Claude Code that analyzes prompts and automatically selects the appropriate Claude model (Haiku, Sonnet, or Opus) before sending requests. The tool uses keyword rules to classify tasks and block overpaying scenarios, with retroactive analysis showing 50-70% cost reduction.

Agint: A Rust CLI tool that detects contradictions in AI agent instruction files
Agint is a free, open-source Rust CLI tool that scans instruction files like CLAUDE.md and AGENTS.md for contradictions, missing file references, and sync issues. It uses static analysis for structural problems and optionally calls Claude API for semantic contradiction detection.

Running Claude Code Offline on an M3 Pro with Qwen3.6: 4 Fixes That Made It Work
Four environment variable fixes get Claude Code running fully offline on an M3 Pro with Qwen3.6 (MoE, ~3B active), completing an SRE incident loop from investigation to PR without any data leaving the machine.