twitchyvr/claude-devkit
AI-powered developer tools built on Claude Code CLI — code reviews, project analysis, commit journaling, and prompt integration.
Platform-specific configuration:
{
"mcpServers": {
"claude-devkit": {
"command": "npx",
"args": [
"-y",
"claude-devkit"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
> AI-powered developer tools built on Claude Code CLI.
Four terminal tools that bring AI into your daily git workflow — code reviews, project analysis, commit journaling, and prompt integration. No API keys to manage, no servers to run. Just Claude Code + your terminal.
ai-review — Instant AI Code ReviewPipes your git diff to Claude for a structured code review with severity levels and a verdict.
ai-review # review staged changes
ai-review HEAD~1 # review last commit
ai-review main # review entire branch vs main
ai-review --full # all uncommitted changesExample output:
── AI Code Review ──────────────────────────
265 lines of diff · model: sonnet
## Summary
Wires v0.7.0 routes into the running Express server.
## Issues
- 🟡 Warning: GET /api/tags/filter is registered after GET /api/tags/:id —
Express will never reach /filter because :id matches "filter" first.
- 🟢 Suggestion: GET /api/tags is unauthenticated while POST /api/tags is —
worth a comment since it breaks the pattern.
## Verdict
⚠️ Needs minor fixes
── Review complete ─────────────────────────project-brief — AI Project OverviewPoint it at any repo and get a structured overview: what it does, tech stack, how to run it, key files, and current status.
project-brief # current directory
project-brief ~/code/myapp # any project
project-brief --save # also saves to .project-brief.mdGreat for onboarding onto unfamiliar codebases or quickly recalling what a side project does.
devlog-hook — AI Development JournalAutomatically appends a one-line AI summary to DEVLOG.md after every git commit. Runs in the background so commits stay instant.
devlog-hook --install # install in current repo
devlog-hook --install-global # install for ALL reposDEVLOG.md output:
Loading reviews...