Claude Code CLI Toolkit: Four Tools for Code Review, Project Briefs, Auto-Journaling Git Hooks

A developer has released a set of four CLI tools built around Claude Code's -p (print mode) feature, which allows piping terminal output to Claude for structured responses without interactive sessions. The tools are designed for practical development workflows and use existing Claude Code authentication.
Tool Details
- ai-review: Run
ai-reviewin any git repository to send your diff to Claude for a code review. It provides a structured review with severity levels and a verdict. The creator reports it caught a real bug on first test: an Express.js route ordering issue where/:idwas matching before/filter, making the filter endpoint unreachable. - project-brief: Point it at any repository to read
package.json, README, git history, directory structure, and generate a full project overview. Useful for context-switching between multiple side projects. - devlog-hook: Install as a git post-commit hook to auto-generate a one-line AI summary of every commit and append it to a
DEVLOG.mdfile in your repository. Runs in the background to keep commits instant, uses Claude's Haiku model for speed and cost efficiency, creating an AI-powered development journal. - claude-status: A small Starship prompt module that shows when you're in a Claude Code session and displays how many MCP servers are active.
Installation and Source
The tools are open source at github.com/twitchyvr/claude-devkit. Install with:
curl -fsSL https://raw.githubusercontent.com/twitchyvr/claude-devkit/main/bin/install.sh | bashNo API keys are needed—the tools use your existing Claude Code authentication. The creator invites feedback, contributions, issues, and discussions, and welcomes information about similar existing projects.
📖 Read the full source: r/ClaudeAI
👀 See Also

Measuring Claude Code MCP Stack: Cache Friendliness vs. Byte Savings, and a 2-Line Fix for Prompt Cache
Greg Shevchenko benchmarks MCP compressors and retrieval layers on two axes: byte savings and cache friendliness. A 2-line fix (sort rg hits, sort map entries) boosts cache from ~0% to 100% with no byte-savings loss. Open-source harness included.

Claude Code v2.1.59 adds auto-memory, copy command, and shell improvements
Claude Code v2.1.59 introduces automatic context saving to auto-memory with /memory management, adds a /copy command for interactive code block selection, and improves prefix suggestions for compound bash commands.

Open-source Agent OS: Rust-based OS for AI agents with WASM sandboxing and Hands feature
An open-source operating system for AI agents has been released with 137k lines of Rust code under MIT license. The system runs agents in WASM sandboxes with 16 security layers and introduces 'Hands' for scheduled, autonomous agent operation.

Improving Claude Code Sessions with claude-self-improve
Claude-self-improve is a CLI tool that enhances Claude Code's AI performance by analyzing session data and updating memory files automatically.