EveryDev.ai
Subscribe
Home
Tools

3,750+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. PR Lens
    PR Lens icon

    PR Lens

    Code Review
    Featured

    PR Lens draws every pull request as animated architecture and data-flow diagrams posted directly inside the pull request as a bot comment.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under the MIT license. Use as a GitHub App, GitHub Action, CLI, or agent skill.

    Engagement

    Available On

    macOS
    Web
    API
    SDK
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Code ReviewAI Coding AssistantsDocumentation

    Alternatives

    DriftlessHaystackCorridor
    Developer
    Coldtea AIBerlin, GermanyEst. 2026

    Listed Aug 2026

    About PR Lens

    PR Lens is an open-source tool by Coldtea AI that reduces the cognitive load of reviewing AI-generated pull requests by converting diffs into animated SVG architecture and data-flow diagrams posted directly inside the PR as a bot comment. It is MIT-licensed, available on GitHub, and currently at version v0.1.3.

    What It Is

    PR Lens sits between a code diff and a human reviewer. Instead of reading hundreds of changed lines across many files, a reviewer sees a single animated diagram showing what the change touches, how data flows through the new path, and which nodes are new, changed, or removed — all rendered in color-coded, animated SVG that survives GitHub's image proxy. Two diagram "lenses" ship: an architecture lens (blast radius against the existing system) and a data-flow lens (ordered pipeline, animated with moving pulses).

    Five Ways to Use It

    PR Lens offers multiple deployment modes, all producing the same diagrams from the same underlying document format:

    • GitHub App — Install the hosted app on a repository; every PR automatically gets a sticky bot comment that updates on each push. View-option checkboxes are live in this mode, re-rendering from the stored graph in seconds with no model key required from the user.
    • Coding agent skill — Run npx skills add coldteadotai/pr-lens to teach a coding agent (Cursor, Claude Code, etc.) to write the graph document itself and attach it to the PR, reusing the agent's existing model rather than incurring a separate API bill.
    • GitHub Action — Add a workflow file using coldteadotai/pr-lens/packages/action@v0 with a GEMINI_API_KEY (or OpenAI-compatible) secret; the Action analyzes the diff and posts a static comment from your own CI.
    • CLI — Run npx @coldtea/pr-lens-cli step by step: analyze, render, comment, validate, and export commands give full control on any machine.
    • Local terminal — Render diagrams before a PR even exists, useful for reviewing an agent's work alongside the diff.

    Architecture and Renderer

    The renderer is a bespoke SVG engine — not Mermaid — designed specifically for easy comprehension of code changes. It uses a consistent visual grammar: lanes, node cards, delta colors (green = new, amber = changed, red = removed), and routed edges that stay traceable even in dense graphs. The renderer scales from a single-card minimal diagram (1 lane, 1 node, 0 edges) up to monorepo-scale graphs (6 lanes, 37 nodes, 49 edges). Animated pulses in data-flow diagrams move along arrows in the order steps execute, with activation bars for waited-on calls and open arrowheads for fire-and-forget messages. Every diagram on the project page is regenerated deterministically from checked-in fixtures.

    Package Structure

    The repository is a TypeScript monorepo (Node 20.11+, pnpm 10) with five packages:

    • @coldtea/pr-lens-schema — the contract every component speaks
    • @coldtea/pr-lens-renderer — deterministic JSON graph → animated, theme-paired SVGs
    • @coldtea/pr-lens-cli — analyze, render, compose, validate, export
    • packages/action — the GitHub Action
    • @coldtea/pr-lens-agent-skill — teaches a coding agent to draw the change it just made

    Update: v0.1.3

    The latest release is v0.1.3, published on 2026-08-26. The repository was created in August 2026 and has seen active development, with the last push on 2026-08-26. The GitHub App runs on Gemini by default with no user model key required; the CLI and Action also support OpenAI and any OpenAI-compatible endpoint (OpenRouter, DeepSeek, Ollama, self-hosted servers).

    PR Lens - 1

    Community Discussions

    Be the first to start a conversation about PR Lens

    Share your experience with PR Lens, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under the MIT license. Use as a GitHub App, GitHub Action, CLI, or agent skill.

    • GitHub App with hosted Gemini model (no user key required)
    • GitHub Action with your own model key
    • CLI for local use
    • Agent skill for coding agents
    • Animated SVG architecture and data-flow diagrams

    Capabilities

    Key Features

    • Animated SVG architecture diagrams posted as PR bot comments
    • Data-flow sequence diagrams with animated pulses
    • GitHub App with live view-option checkboxes
    • GitHub Action with configurable model provider
    • CLI with analyze, render, comment, validate, and export commands
    • Coding agent skill via npx skills add
    • Bespoke SVG renderer (not Mermaid)
    • Color-coded delta nodes: green new, amber changed, red removed
    • Scales from single-node to monorepo-scale graphs
    • Supports Gemini, OpenAI, and OpenAI-compatible endpoints
    • No user API key required when using the hosted GitHub App
    • MIT licensed and fully open source

    Integrations

    GitHub
    GitHub Actions
    GitHub App
    Gemini
    OpenAI
    OpenRouter
    DeepSeek
    Ollama
    Cursor
    Claude Code
    npm
    pnpm
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate PR Lens and help others make informed decisions.

    Developer

    Coldtea AI

    Coldtea AI builds developer tooling focused on reducing cognitive load in AI-assisted software workflows. The team created PR Lens, an open-source tool that converts pull request diffs into animated architecture and data-flow diagrams posted directly inside GitHub PRs. Coldtea AI publishes its core tools under the MIT license and distributes them via GitHub, npm, and a hosted GitHub App.

    Founded 2026
    Berlin, Germany
    5 employees
    Read more about Coldtea AI
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Driftless icon

    Driftless

    AI-powered tool that analyzes your GitHub repo and auto-generates accurate READMEs, detects documentation drift, and opens pull requests to keep docs in sync with your code.

    Haystack icon

    Haystack

    AI-powered code review inbox that triages every pull request, surfaces only the ones that need attention, and automates merges with a built-in merge queue.

    Corridor icon

    Corridor

    Corridor reviews every pull request and provides real-time guidance to AI coding agents to secure code at the source.

    Browse all tools

    Related Topics

    Code Review

    Tools that help review, analyze, and improve code quality.

    109 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    804 tools

    Documentation

    AI-driven tools that automatically generate, maintain, and organize technical documentation, user guides, and project artifacts with context-aware content and intelligent updating.

    93 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions