Archives
All the articles I've archived.
-
Claude Orchestrator: chạy song song nhiều Claude Code mà không bị ngắt giữa chừng
Học từ cách Bun được port từ Zig sang Rust bằng 64 Claude instances song song, để thiết kế một orchestrator giữ Claude Code chạy liên tục không cần confirm giữa chừng.
-
Two pincers: making an agent prove its plan both right and wrong
Two opposing pincers that force an agent to break its own plan instead of rubber-stamping it from confirmation bias
-
Bootstrapping every new repo with one Claude Code skill
Ymir lays down the project harness — rules, lint, CI, wiki — so the agent can own the code and you own the setup
-
Kanna: my daily driver for running coding agents across projects
How Kanna became my daily driver — one web UI for running Claude Code agents, subagents, and skills across projects
-
Running coding agents in parallel without babysitting them
How Kanna's multi-window layout and push notifications let you ship while agents work, instead of watching output scroll
-
One streaming interface over Claude's SDK, a PTY, and Codex JSON-RPC
How Kanna funnels three wildly different coding-agent transports through a 22-line TypeScript interface
-
Ymir: scaffold the Claude Code harness before any app code
A Claude Code plugin that lays down rules, lint, CI, and an LLM-maintained wiki — never your application code
-
Shell-style command pipelines in Go, without a shell
Updated:Compose processes with |, &&, ||, and & from Go — a small visitor over os/exec that returns a structured result tree.
-
wtguard: a three-layer guard that keeps parallel agents off main
Updated:Run parallel Claude Code agents on one repo — Docker isolation, git-as-lock coordination, and a commit guard that can't be bypassed.
-
Resume the right Claude Code session by typing 'claude' in zsh
Updated:A small zsh plugin that turns typing 'claude' into a project-aware --resume suggestion — pure zsh, no jq, no daemon.
-
Hexagonal Go: feature slices that test without a database
Updated:A Go service layout that keeps domain logic transport-agnostic — testable with a mock repo, no database booted.