From e81fb6b86e0993e7ca941a7a8cfa9bc4ba8395af Mon Sep 17 00:00:00 2001 From: Natalie Spiva Date: Tue, 2 Jun 2026 07:05:15 +0000 Subject: [PATCH 1/4] 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 98f3b15ab0c07c03d246b18f9f3663971be97a32 Mon Sep 17 00:00:00 2001 From: Natalie Spiva Date: Tue, 2 Jun 2026 07:05:17 +0000 Subject: [PATCH 2/4] docs: add pullfrog AI review overview to README --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2ebff66 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +žée +--- + +## 🤖 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 798cb456619b6cb5aa915e2f4ea4f08bc508b245 Mon Sep 17 00:00:00 2001 From: Natalie Spiva Date: Tue, 2 Jun 2026 07:05:18 +0000 Subject: [PATCH 3/4] 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 From 5e2c84a4e7a4bde9e09e973894999d848832480e Mon Sep 17 00:00:00 2001 From: Natalie Spiva Date: Wed, 24 Jun 2026 15:30:07 -0700 Subject: [PATCH 4/4] Remove Pullfrog AI Agent workflow --- .github/workflows/pullfrog.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/pullfrog.yml diff --git a/.github/workflows/pullfrog.yml b/.github/workflows/pullfrog.yml deleted file mode 100644 index f7ba0cf..0000000 --- a/.github/workflows/pullfrog.yml +++ /dev/null @@ -1,22 +0,0 @@ -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 }}