Mondspace Reviewer
Description
Review what your coding agent actually did: a local, read-only companion that turns any part of your git history into a readable review, with on-demand story, security and breaking-change analyses from a model on your own machine.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
mondspace-reviewer (`msr`)
**Review what your coding agent actually did — in your browser, while it works.**
`msr` reads a repository's git history and turns any part of it into a review you can actually read: the change told as a story, beside the real diffs, with a local model explaining what each piece is *for*. It watches; it never writes to your code or your agent — and when your agent wants to know what you said, it asks over MCP.
[](https://github.com/mondial7/mondspace-reviewer/actions/workflows/ci.yml) [](https://pkg.go.dev/github.com/mondial7/mondspace-reviewer) [](LICENSE)
Install
Two things: the reviewer, and a local model for the prose. The model is optional — without it you still get grouping, flags, diffs and the review log, just no sentences.
**1. Install msr**
brew install mondial7/tap/mondspace-reviewer # macOS
# or: go install github.com/mondial7/mondspace-reviewer/cmd/mondspace-reviewer@latest
**2. Start a local model** (optional, but it is most of the value)
brew install llama.cpp
llama-server -hf bartowski/Qwen_Qwen3-4B-Instruct-2507-GGUF:Q6_K \
--host 127.0.0.1 --port 8081 -c 32768 -fa on \
--cache-type-k q8_0 --cache-type-v q8_0 --jinja
About 3.3 GB, downloaded once. Leave it running — `msr` looks for it at `127.0.0.1:8081`. Any OpenAI-compatible server works instead: point `msr` at it on `/settings`, or with `--summarizer-url`.
**3. Open a repository**
cd ~/your-project
msr web
It opens `http://127.0.0.1:7777` on the newest thing worth reviewing. No configuration, no database, no account, and **no session to record first**.
It binds to localhost, and refuses anything else unless you pass `--allow-remote`: msr serves your source, your diffs and your
Related Skills
Fastapi Review
Review a FastAPI application for architecture, async correctness, dependency injection, Pydantic schemas, secu
Security Defense in Depth
Implement multi-layered testing and security best practices.
Security SecLists Official Repository
[OWASP Testing Guide](https://owasp.org/www-project-web-security-testing-guide/)
Security Threat Hunting with Sigma Rules
Use Sigma detection rules to hunt for threats and analyze security events
Security Maintenance Walkthrough - 2026-03-29
- Re-triaged the full 2026-03-15 security finding set against current `main` and wrote a fresh current-head re
Security Google Workspace Model Armor
Filter user-generated content for safety
Security Related Agents
Django Reviewer
Expert Django code reviewer specializing in ORM correctness, DRF patterns, migration safety, security misconfi
Token Auditor
Scans ui/src/ for hardcoded visual values, duplicate components, and shadcn replacement candidates; produces d
Gitnexus Security Boundary Reviewer
GitNexus security and trust-boundary reviewer. Use for auth, permissions, secrets, injection, unsafe parsing,