Tag: tooling
All the articles with the tag "tooling".
- · 4 min read
Claude Building a Bash Parser
How I had Claude Code build rable, a Rust bash parser, from scratch using Parable's test suite — reaching 99.9% accuracy and replacing tree-sitter-bash in tokf.
- · 4 min read
Getting Into Make, Just, and Hooks
How tokf intercepts subcommands inside Make, Just, and git hooks by injecting custom shells and shimming PATH lookups — extending token compression to nested tool invocations.
- · 7 min read
tokF a Different Approach to Token Compression
How tokF uses declarative TOML pipelines to compress CLI output before it reaches an LLM, cutting token usage by up to 90%. A story of scratching an itch and building a tool in two days.
- · 7 min read
Finding Duplicate Rust Code Through AST Normalization (Part 1)
How cargo-dupes finds structurally identical Rust functions by parsing code into ASTs, replacing identifiers with positional placeholders, and fingerprinting the normalized trees. Part 1 of a series on duplicate detection.