From 2e06c0566cf26bc4bc9e1fb5b2a34c6bd73a3ea3 Mon Sep 17 00:00:00 2001 From: Natalie Spiva Date: Tue, 2 Jun 2026 07:02:33 +0000 Subject: [PATCH 1/3] infra: add pullfrog AI review workflow --- .github/workflows/pullfrog.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/pullfrog.yml diff --git a/.github/workflows/pullfrog.yml b/.github/workflows/pullfrog.yml new file mode 100644 index 0000000..f7ba0cf --- /dev/null +++ b/.github/workflows/pullfrog.yml @@ -0,0 +1,22 @@ +name: Pullfrog AI Agent +on: + pull_request: + types: [opened, synchronize] + issue_comment: + types: [created] + +jobs: + pullfrog_run: + runs-on: ubuntu-latest + if: github.event.issue.pull_request || github.event_name == 'pull_request' || contains(github.event.comment.body, '@pullfrog') + steps: + - name: Checkout Code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Run Pullfrog Agent + uses: pullfrog/pullfrog-action@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + OPENROUTER_API_KEY: ${{ secrets.ORGANIZATION_OPENROUTER_KEY }} From be035c2b98615c9b53a5f3fab1bdb79fc07e5c9b Mon Sep 17 00:00:00 2001 From: Natalie Spiva Date: Tue, 2 Jun 2026 07:02:35 +0000 Subject: [PATCH 2/3] docs: add pullfrog AI review overview to README --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index f4f1287..71c5513 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,14 @@ - [`template-iOS-macOS`](https://github.com/jessesquires/template-iOS-macOS) for iOS and macOS projects - [`template-jekyll-site`](https://github.com/jessesquires/template-jekyll-site) for Jekyll website projects +--- + +## 🤖 Pullfrog AI Review + +This repository uses **Pullfrog AI** to automatically review pull requests. + +Pullfrog is an AI-powered code review agent that analyzes every PR for code quality, +security issues, performance problems, and best practice violations. Reviews appear +as inline PR comments and checks. Trigger manually by commenting `@pullfrog` on any PR. + +Powered by OpenRouter. \ No newline at end of file From b62cf9bea78546958713cc041a5518d9a759387b Mon Sep 17 00:00:00 2001 From: Natalie Spiva Date: Tue, 2 Jun 2026 07:02:36 +0000 Subject: [PATCH 3/3] infra: add Continue.dev agent configuration --- .continue/agents/new-config.yaml | 38 ++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .continue/agents/new-config.yaml diff --git a/.continue/agents/new-config.yaml b/.continue/agents/new-config.yaml new file mode 100644 index 0000000..f02664f --- /dev/null +++ b/.continue/agents/new-config.yaml @@ -0,0 +1,38 @@ +name: Budget-Config +version: 1.0.0 +schema: v1 + +models: + - name: "Qwen3-235B (DeepInfra)" + provider: "openai" + model: "Qwen/Qwen3-235B-A22B-Instruct-2507" + apiBase: "https://api.deepinfra.com/v1/openai" + apiKey: "${env:DEEPINFRA_API_KEY}" + contextLength: 250000 + roles: + - chat + - edit + + - name: "DeepSeek V4 Flash" + provider: "openai" + model: "deepseek-v4-flash" + apiBase: "https://api.deepseek.com/v1" + apiKey: "${env:DEEPSEEK_API_KEY}" + contextLength: 1000000 + roles: + - chat + +tabAutocompleteModel: + name: "DeepSeek Flash Auto" + provider: "openai" + model: "deepseek-v4-flash" + apiBase: "https://api.deepseek.com/v1" + apiKey: "${env:DEEPSEEK_API_KEY}" + roles: + - autocomplete + +context: + - provider: "file" + - provider: "code" + - provider: "terminal" + - provider: "diff" \ No newline at end of file