Pullfrog AI: An open source CodeRabbit alternative powered by GitHub Actions

AI News


Pullfrog, an open source AI-powered GitHub bot created by Colin McDonnell, is in beta and positioned as a model-agnostic alternative to CodeRabbit that runs entirely within GitHub Actions.

McDonnell, best known as the creator of Zod, a TypeScript-first schema validation library with over 42,000 GitHub stars, announced Pullfrog on May 12, 2026. The tool is designed as an orchestration layer for asynchronous development within GitHub that listens for webhooks and triggers AI agent execution based on configurable events such as new pull requests, issues, CI failures, and review submissions.

Unlike CodeRabbit, which operates as a hosted SaaS platform with its own AI models, Pullfrog takes a Bring Your Own Key (BYOK) approach. Developers can connect to LLM providers such as Anthropic, OpenAI, Google, Mistral, DeepSeek, and OpenRouter and switch models with a single configuration change. All API keys are stored using GitHub’s secret management system, and agent execution occurs in a dedicated repository’s own GitHub Actions environment. pullfrog.yml Workflow file.

To get started, you’ll need to install the Pullfrog GitHub app and add workflow files to your repository.

Developers can tag @pullfrog You can trigger an agent run on any issue, pull request, or comment, or set up automatic triggers from the Pullfrog console. A complete setup guide is available from the official documentation.

This agent comes with a dedicated MCP server to perform git and GitHub operations such as creating pull requests, writing reviews, reading CI logs, and managing issues. Shell commands run in a separate subprocess without accessing sensitive environment variables. Headless browser tools are also included out-of-the-box, allowing agents to run end-to-end tests, take screenshots, and iterate on the UI without any additional configuration.

The competitive landscape for AI code review has expanded significantly in recent months. While CodeRabbit has been an established leader in dedicated code reviews since 2023, GitHub Copilot’s code review capabilities were launched in April 2025 and rapidly gained popularity through native platform integration. Other tools such as Greptile and Bito also compete in this space. What sets Pullfrog apart is its open source license, model agnosticism, and broad scope that extends beyond code reviews to issue triage, automated CI remediation, merge conflict resolution, and plan generation.

Community reaction to the announcement garnered over 50 replies and over 1,000 likes. one user asked:

Can I run it locally as an agent workflow before pushing to Github or cloud agent?

Mr McDonnell responded as follows:

Pullfrog is a harness on top of OpenCode and Claude Code intended to run in CI


For local development, just use these directly to allow access to git and gh CLI. We will soon be adding a CLI that will allow you to quickly launch a “cloud agent” running in GH Actions, but it is not intended to be the agent you use for local development.

Pullfrog is an open source AI-powered GitHub bot created by Colin McDonnell, best known as the creator of Zod. It provides model-agnostic, agent-based automation for pull request review, issue triage, and CI remediation, and runs entirely within GitHub Actions, rather than requiring a hosted third-party service. The project’s source code has received over 400 stars since its first preview in late 2025.





Source link