From 599d7593f2fd3519a9576f8d95543df84a9754f4 Mon Sep 17 00:00:00 2001 From: Natalie Spiva Date: Tue, 2 Jun 2026 07:02:44 +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 cb8965432af752e2d1c6a13c2b11125af19cb38a Mon Sep 17 00:00:00 2001 From: Natalie Spiva Date: Tue, 2 Jun 2026 07:02:46 +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 bc36e91..6f12397 100644 --- a/README.md +++ b/README.md @@ -174,3 +174,14 @@ The Linux kernel is released under the GNU GPL v2. --- **Note**: This kernel repository contains the complete, production kernel configuration extracted from the stock firmware. While we currently use a prebuilt kernel, this configuration enables future source-based kernel building when MediaTek source code becomes available. +--- + +## 🤖 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 2055a530abbd69f68c5a56aefd7fb1f30347cd8c Mon Sep 17 00:00:00 2001 From: Natalie Spiva Date: Tue, 2 Jun 2026 07:02:47 +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