Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| eb7de776e4 | |||
| 108b8243a9 | |||
| 59f1e72dec | |||
| 46d95853ae | |||
| e6374a952c |
@@ -1,2 +0,0 @@
|
||||
!examples
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
# the Dockerfile only `COPY`s docker-entrypoint.sh, so most of this is
|
||||
# defense-in-depth — modern docker BuildKit (default since docker 23)
|
||||
# already prunes unreferenced files from the build context. but:
|
||||
# - documents intent for future maintainers who add `COPY . .`
|
||||
# - resurfaces the bytes-saved win if someone disables BuildKit
|
||||
# (DOCKER_BUILDKIT=0) or adopts a builder that doesn't prune
|
||||
# - keeps `docker build` snappy even on cold builders that DO send
|
||||
# everything
|
||||
|
||||
# pnpm-managed workspace deps — large and never needed at build time
|
||||
node_modules/
|
||||
|
||||
# secrets — must never enter an image, even by accident
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# build outputs
|
||||
dist/
|
||||
build/
|
||||
*.log
|
||||
|
||||
# editor / VCS noise
|
||||
.DS_Store
|
||||
.idea/
|
||||
.vscode/
|
||||
|
||||
# tests + fixtures we don't need at build time
|
||||
coverage/
|
||||
test/
|
||||
.scripts/
|
||||
@@ -1,123 +0,0 @@
|
||||
name: Publish & Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- "package.json"
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
id-token: write
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup pnpm
|
||||
uses: pnpm/action-setup@v4
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: "24"
|
||||
cache: "pnpm"
|
||||
registry-url: "https://registry.npmjs.org"
|
||||
|
||||
- name: Install dependencies
|
||||
run: pnpm install --frozen-lockfile
|
||||
|
||||
- name: Build
|
||||
run: pnpm build
|
||||
|
||||
- name: Get package version
|
||||
id: version
|
||||
run: |
|
||||
VERSION=$(npm pkg get version | tr -d '"')
|
||||
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
||||
echo "tag=v$VERSION" >> $GITHUB_OUTPUT
|
||||
|
||||
# Extract major version (e.g., "0" from "0.0.1")
|
||||
MAJOR_VERSION=$(echo $VERSION | cut -d. -f1)
|
||||
echo "major_tag=v$MAJOR_VERSION" >> $GITHUB_OUTPUT
|
||||
|
||||
echo "📦 Package version: $VERSION"
|
||||
|
||||
- name: Check if tag already exists
|
||||
id: check_tag
|
||||
run: |
|
||||
if git rev-parse "refs/tags/${{ steps.version.outputs.tag }}" >/dev/null 2>&1; then
|
||||
echo "exists=true" >> $GITHUB_OUTPUT
|
||||
echo "⚠️ Tag ${{ steps.version.outputs.tag }} already exists - skipping release"
|
||||
else
|
||||
echo "exists=false" >> $GITHUB_OUTPUT
|
||||
echo "✅ Tag ${{ steps.version.outputs.tag }} does not exist - will create release"
|
||||
fi
|
||||
|
||||
- name: Create and push tags
|
||||
if: steps.check_tag.outputs.exists == 'false'
|
||||
run: |
|
||||
# Create specific version tag
|
||||
git tag ${{ steps.version.outputs.tag }}
|
||||
git push origin ${{ steps.version.outputs.tag }}
|
||||
|
||||
# Create/update major version tag (moving tag)
|
||||
git tag -f ${{ steps.version.outputs.major_tag }}
|
||||
git push origin ${{ steps.version.outputs.major_tag }} --force
|
||||
|
||||
echo "🏷️ Created tags: ${{ steps.version.outputs.tag }} and ${{ steps.version.outputs.major_tag }}"
|
||||
|
||||
- name: Create GitHub Release
|
||||
if: steps.check_tag.outputs.exists == 'false'
|
||||
uses: actions/create-release@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
tag_name: ${{ steps.version.outputs.tag }}
|
||||
release_name: "${{ steps.version.outputs.tag }}"
|
||||
body: |
|
||||
## 📦 pullfrog ${{ steps.version.outputs.version }}
|
||||
|
||||
### Usage in GitHub Actions
|
||||
|
||||
```yaml
|
||||
- uses: pullfrog/pullfrog@${{ steps.version.outputs.major_tag }}
|
||||
```
|
||||
|
||||
### Installation via npm
|
||||
|
||||
```bash
|
||||
npm install pullfrog@${{ steps.version.outputs.version }}
|
||||
```
|
||||
draft: false
|
||||
prerelease: false
|
||||
|
||||
- name: Publish to npm
|
||||
if: steps.check_tag.outputs.exists == 'false'
|
||||
run: npm publish --provenance --access public
|
||||
|
||||
- name: Summary
|
||||
if: always()
|
||||
run: |
|
||||
echo "## 📊 Publish Summary" >> $GITHUB_STEP_SUMMARY
|
||||
echo "" >> $GITHUB_STEP_SUMMARY
|
||||
if [[ "${{ steps.check_tag.outputs.exists }}" == "true" ]]; then
|
||||
echo "⚠️ Version ${{ steps.version.outputs.version }} already exists - no action taken" >> $GITHUB_STEP_SUMMARY
|
||||
else
|
||||
echo "✅ Successfully published version ${{ steps.version.outputs.version }}" >> $GITHUB_STEP_SUMMARY
|
||||
echo "" >> $GITHUB_STEP_SUMMARY
|
||||
echo "### 🏷️ Tags Created" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- \`${{ steps.version.outputs.tag }}\` (specific version)" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- \`${{ steps.version.outputs.major_tag }}\` (major version, auto-updating)" >> $GITHUB_STEP_SUMMARY
|
||||
echo "" >> $GITHUB_STEP_SUMMARY
|
||||
echo "### 📦 Published to" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- GitHub Release: [View Release](https://github.com/${{ github.repository }}/releases/tag/${{ steps.version.outputs.tag }})" >> $GITHUB_STEP_SUMMARY
|
||||
echo "- npm Registry: [pullfrog@${{ steps.version.outputs.version }}](https://www.npmjs.com/package/pullfrog/v/${{ steps.version.outputs.version }})" >> $GITHUB_STEP_SUMMARY
|
||||
fi
|
||||
@@ -1,45 +0,0 @@
|
||||
# PULLFROG ACTION — DO NOT EDIT EXCEPT WHERE INDICATED
|
||||
name: Pullfrog
|
||||
run-name: ${{ inputs.name || github.workflow }}
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
prompt:
|
||||
type: string
|
||||
description: Agent prompt
|
||||
name:
|
||||
type: string
|
||||
description: Run name
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
pullfrog:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 1
|
||||
- name: Run agent
|
||||
uses: pullfrog/pullfrog@main
|
||||
with:
|
||||
prompt: ${{ inputs.prompt }}
|
||||
env:
|
||||
API_URL: ${{ secrets.API_URL }}
|
||||
VERCEL_AUTOMATION_BYPASS_SECRET: ${{ secrets.VERCEL_AUTOMATION_BYPASS_SECRET }}
|
||||
# add any additional keys your agent(s) need
|
||||
# optionally, comment out any you won't use
|
||||
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||
CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
|
||||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
||||
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
|
||||
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
|
||||
MISTRAL_API_KEY: ${{ secrets.MISTRAL_API_KEY }}
|
||||
GROQ_API_KEY: ${{ secrets.GROQ_API_KEY }}
|
||||
DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY }}
|
||||
OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
|
||||
@@ -1,39 +0,0 @@
|
||||
name: Test get-installation-token
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
test-token:
|
||||
# only run in the upstream publish target. forks inherit this file but
|
||||
# haven't installed the pullfrog github app — running it there 404s our
|
||||
# token endpoint and pollutes our error logs (see #693).
|
||||
if: github.repository == 'pullfrog/pullfrog'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Get installation token
|
||||
id: token
|
||||
uses: pullfrog/pullfrog/get-installation-token@main
|
||||
|
||||
- name: Verify token with Node.js
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
|
||||
run: |
|
||||
node -e '
|
||||
const res = await fetch("https://api.github.com/installation/repositories?per_page=1", {
|
||||
headers: {
|
||||
Authorization: "token " + process.env.GITHUB_TOKEN,
|
||||
Accept: "application/vnd.github+json",
|
||||
},
|
||||
});
|
||||
if (!res.ok) throw new Error("GET installation/repositories failed: " + res.status + " " + (await res.text()));
|
||||
const data = await res.json();
|
||||
console.log("authenticated — installation has access to", data.total_count, "repo(s)");
|
||||
console.log("first repo:", data.repositories[0].full_name);
|
||||
'
|
||||
@@ -1,115 +0,0 @@
|
||||
name: Test
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: pnpm/action-setup@v4
|
||||
- uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: "24"
|
||||
cache: "pnpm"
|
||||
|
||||
- run: pnpm install --frozen-lockfile
|
||||
- run: pnpm typecheck
|
||||
- run: pnpm test
|
||||
|
||||
agents:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 20
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
agent: [claude, opencode]
|
||||
test:
|
||||
[
|
||||
codex-auth,
|
||||
mcpmerge,
|
||||
nobash,
|
||||
restricted,
|
||||
skill-invoke-claude,
|
||||
skill-invoke-opencode,
|
||||
smoke,
|
||||
token-exfil,
|
||||
]
|
||||
exclude:
|
||||
- agent: claude
|
||||
test: skill-invoke-opencode
|
||||
- agent: claude
|
||||
test: codex-auth
|
||||
- agent: opencode
|
||||
test: skill-invoke-claude
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||
CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
|
||||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
||||
GOOGLE_GENERATIVE_AI_API_KEY: ${{ secrets.GOOGLE_GENERATIVE_AI_API_KEY }}
|
||||
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
|
||||
XAI_API_KEY: ${{ secrets.XAI_API_KEY }}
|
||||
DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY }}
|
||||
OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
|
||||
MOONSHOT_API_KEY: ${{ secrets.MOONSHOT_API_KEY }}
|
||||
OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }}
|
||||
AWS_BEARER_TOKEN_BEDROCK: ${{ secrets.AWS_BEARER_TOKEN_BEDROCK }}
|
||||
AWS_REGION: us-east-1
|
||||
BEDROCK_MODEL_ID: us.anthropic.claude-opus-4-6-v1
|
||||
PULLFROG_MODEL: ${{ vars.PULLFROG_MODEL }}
|
||||
# CI smoke-testing shortcut only — production stores this in Pullfrog's
|
||||
# per-org secret store (Postgres), set via `pullfrog auth codex`. GH
|
||||
# Actions secrets are immutable at runtime so the post-hook can't write
|
||||
# back the rotated refresh token; CI accepts the staleness and we
|
||||
# manually re-provision when smoke tests start failing. Do not copy this
|
||||
# pattern into user-facing workflows. See wiki/codex-auth.md.
|
||||
CODEX_AUTH_JSON: ${{ secrets.CODEX_AUTH_JSON }}
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: pnpm/action-setup@v4
|
||||
- uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: "24"
|
||||
cache: "pnpm"
|
||||
|
||||
- run: pnpm install --frozen-lockfile
|
||||
- run: pnpm runtest ${{ matrix.test }} ${{ matrix.agent }}
|
||||
|
||||
agnostic:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 15
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
test:
|
||||
[
|
||||
byok-no-keys-fallback,
|
||||
git-permissions,
|
||||
githooks,
|
||||
pkg-json-scripts,
|
||||
push-disabled,
|
||||
push-enabled,
|
||||
push-restricted,
|
||||
timeout,
|
||||
]
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: pnpm/action-setup@v4
|
||||
- uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: "24"
|
||||
cache: "pnpm"
|
||||
|
||||
- run: pnpm install --frozen-lockfile
|
||||
- run: pnpm runtest ${{ matrix.test }}
|
||||
@@ -1,38 +0,0 @@
|
||||
name: Trigger sync
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
trigger:
|
||||
# only run in the upstream publish target (forks inherit this file but
|
||||
# can't dispatch into pullfrog/app), and skip if pushed by our bot (breaks
|
||||
# the loop).
|
||||
if: github.repository == 'pullfrog/pullfrog' && github.actor != 'pullfrog[bot]'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- name: Get installation token
|
||||
id: token
|
||||
uses: ./get-installation-token
|
||||
with:
|
||||
repos: pullfrog
|
||||
|
||||
- name: Dispatch "action-repo-updated" event
|
||||
run: |
|
||||
gh api repos/pullfrog/app/dispatches \
|
||||
-f event_type="action-repo-updated" \
|
||||
-f client_payload='{
|
||||
"before": "${{ github.event.before }}",
|
||||
"after": "${{ github.event.after }}",
|
||||
"compare_url": "${{ github.event.compare }}",
|
||||
"pusher": "${{ github.actor }}"
|
||||
}'
|
||||
env:
|
||||
GH_TOKEN: ${{ steps.token.outputs.token }}
|
||||
+29
-45
@@ -1,50 +1,34 @@
|
||||
# macOS settings file
|
||||
.DS_Store
|
||||
|
||||
# Contains all your dependencies
|
||||
# dependencies (bun install)
|
||||
node_modules
|
||||
|
||||
# Replace as required with your build location
|
||||
/build
|
||||
|
||||
# Deal with environment files
|
||||
.env
|
||||
.env.*
|
||||
|
||||
# We'll allow an example .env file which can be copied
|
||||
!.env.example
|
||||
|
||||
# Coverage directory used by testing tools
|
||||
coverage
|
||||
|
||||
# Visual Studio Code configuration
|
||||
.vscode/
|
||||
|
||||
|
||||
# npm and yarn debug logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# next.js
|
||||
.next
|
||||
|
||||
# sveltekit
|
||||
/.svelte-kit
|
||||
vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
||||
|
||||
examples
|
||||
|
||||
# Act temporary distribution directory
|
||||
.act-dist/
|
||||
|
||||
# Temporary backup of node_modules
|
||||
.node_modules_backup/
|
||||
|
||||
# Temporary directory for cloned repos
|
||||
.temp/
|
||||
# output
|
||||
out
|
||||
dist
|
||||
*.tgz
|
||||
|
||||
.pnpm-store/
|
||||
# code coverage
|
||||
coverage
|
||||
*.lcov
|
||||
|
||||
# logs
|
||||
logs
|
||||
_.log
|
||||
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
|
||||
|
||||
# dotenv environment variable files
|
||||
.env
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.local
|
||||
|
||||
# caches
|
||||
.eslintcache
|
||||
.cache
|
||||
*.tsbuildinfo
|
||||
|
||||
# IntelliJ based IDEs
|
||||
.idea
|
||||
|
||||
# Finder (MacOS) folder config
|
||||
.DS_Store
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
v24.3.0
|
||||
-78
@@ -1,78 +0,0 @@
|
||||
# pullfrog GHA-like test container.
|
||||
#
|
||||
# baked once at image build time, used by `pnpm docker`. all runtime cost
|
||||
# (apt-get, useradd, sudoers wiring) is paid here so each `docker` invocation
|
||||
# is a single `docker run` with no in-container setup.
|
||||
#
|
||||
# rebuild is content-hash gated by docker.ts (Dockerfile + docker-entrypoint.sh).
|
||||
# bump anything in this file or the entrypoint and the next `pnpm docker` rebuilds.
|
||||
|
||||
FROM ubuntu:24.04
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# core toolset matching what GHA `ubuntu-24.04` runners ship: gh, jq, git,
|
||||
# python3, ssh client, plus the compression + build-essential surface that
|
||||
# `pnpm install` / `node-gyp` / agent shell calls regularly need. keeps
|
||||
# test-time invocations of these tools honest (no "works on the runner,
|
||||
# breaks in the local container").
|
||||
RUN apt-get update -qq \
|
||||
&& apt-get install -qq -y --no-install-recommends \
|
||||
build-essential \
|
||||
ca-certificates \
|
||||
curl \
|
||||
file \
|
||||
git \
|
||||
gnupg \
|
||||
jq \
|
||||
openssh-client \
|
||||
python3 \
|
||||
sudo \
|
||||
unzip \
|
||||
wget \
|
||||
xz-utils \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# node 24 from nodesource + corepack (provides pnpm without a global install).
|
||||
RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash - \
|
||||
&& apt-get install -y nodejs \
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
&& corepack enable
|
||||
|
||||
# gh cli (matches GHA pre-installed tooling).
|
||||
RUN mkdir -p /etc/apt/keyrings \
|
||||
&& curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg \
|
||||
| gpg --dearmor -o /etc/apt/keyrings/githubcli-archive-keyring.gpg \
|
||||
&& chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \
|
||||
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" \
|
||||
> /etc/apt/sources.list.d/github-cli.list \
|
||||
&& apt-get update -qq \
|
||||
&& apt-get install -qq -y gh \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# ubuntu:24.04 ships a default `ubuntu` user at uid 1000 — remove it so we
|
||||
# can place `testuser` at 1000 (the typical macOS dev uid). the entrypoint
|
||||
# remaps to the host uid/gid at runtime if they differ.
|
||||
RUN userdel -r ubuntu 2>/dev/null || true \
|
||||
&& groupadd -g 1000 testuser \
|
||||
&& useradd -u 1000 -g 1000 -m -s /bin/bash testuser \
|
||||
&& echo "testuser ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/testuser \
|
||||
&& chmod 0440 /etc/sudoers.d/testuser
|
||||
|
||||
# layout matching the bind mount + named volume targets in docker.ts.
|
||||
RUN mkdir -p /app/action /app/action/node_modules /tmp/home/.config /tmp/home/.cache \
|
||||
&& chown -R testuser:testuser /app /tmp/home
|
||||
|
||||
# CI=true is critical: `shell.ts` PID-namespace sandbox keys off it. baking
|
||||
# it ensures security tests can't pass vacuously because someone forgot the
|
||||
# flag.
|
||||
ENV HOME=/tmp/home \
|
||||
TMPDIR=/tmp \
|
||||
CI=true \
|
||||
COREPACK_ENABLE_DOWNLOAD_PROMPT=0
|
||||
|
||||
COPY docker-entrypoint.sh /entrypoint.sh
|
||||
RUN chmod +x /entrypoint.sh
|
||||
|
||||
WORKDIR /app/action
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
@@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2026 Pullfrog, Inc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
@@ -1,241 +0,0 @@
|
||||
<!-- test preview system -->
|
||||
<p align="center">
|
||||
<h1 align="center">
|
||||
<picture>
|
||||
<source media="(prefers-color-scheme: dark)" srcset="https://pullfrog.com/frog-white-200px.png">
|
||||
<img src="https://pullfrog.com/frog-green-200px.png" width="25px" align="center" alt="Green Pullfrog logo" />
|
||||
</picture><br />
|
||||
Pullfrog
|
||||
</h1>
|
||||
<p align="center">
|
||||
Bring your favorite coding agent into GitHub
|
||||
</p>
|
||||
</p>
|
||||
|
||||
<br/>
|
||||
|
||||
> **🚀 Pullfrog is in beta!** We're onboarding users in waves. [Get on the waitlist →](https://pullfrog.com/join-waitlist)
|
||||
|
||||
<br/>
|
||||
|
||||
## What is Pullfrog?
|
||||
|
||||
Pullfrog is a GitHub bot that brings the full power of your favorite coding agents into GitHub. It's open source and powered by GitHub Actions.
|
||||
|
||||
- **Tag `@pullfrog`** — Tag `@pullfrog` in a comment anywhere in your repo. It will pull in any relevant context using the action's internal MCP server and perform the appropriate task.
|
||||
- **Prompt from the web** — Trigger arbitrary tasks from the Pullfrog dashboard
|
||||
- **Automated triggers** — Configure Pullfrog to trigger agent runs in response to specific events. Each of these triggers can be associated with custom prompt instructions.
|
||||
- issue created
|
||||
- issue labeled
|
||||
- PR created
|
||||
- PR review created
|
||||
- PR review requested
|
||||
- and more...
|
||||
|
||||
Pullfrog is the bridge between your preferred coding agents and GitHub. Use it for:
|
||||
|
||||
- **🤖 Coding tasks** — Tell `@pullfrog` to implement something and it'll spin up a PR. If CI fails, it'll read the logs and attempt a fix automatically. It'll automatically address any PR reviews too.
|
||||
- **🔍 PR review** — Coding agents are great at reviewing PRs. Using the "PR created" trigger, you can configure Pullfrog to auto-review new PRs.
|
||||
- **🤙 Issue management** — Via the "issue created" trigger, Pullfrog can automatically respond to common questions, create implementation plans, and link to related issues/PRs. Or (if you're feeling lucky) you can prompt it to immediately attempt a PR addressing new issues.
|
||||
- **Literally whatever** — Want to have the agent automatically add docs to all new PRs? Cut a new release with agent-written notes on every commit to `main`? Pullfrog lets you do it.
|
||||
|
||||
<!-- Features
|
||||
- **Agent-agnostic** — Switch between agents with the click of a radio button.
|
||||
- ** -->
|
||||
|
||||
<!--
|
||||
## Get started
|
||||
|
||||
Install the Pullfrog GitHub App on your personal or organization account. During installation you can choose to limit access to a specific repo or repos. After installation, you'll be redirected to the Pullfrog dashboard where you'll see an onboarding flow. This flow will create your `pullfrog.yml` workflow and prompt you to set up API keys. Once you finish those steps (2 minutes) you're ready to rock.
|
||||
|
||||
[Add to GitHub ➜](https://github.com/apps/pullfrog/installations/new)
|
||||
|
||||
<details>
|
||||
<summary><strong>Manual setup instructions</strong></summary>
|
||||
|
||||
You can also use the `pullfrog/pullfrog` Action without a GitHub App installation. This is more time-consuming to set up, and it places limitations on the actions your Agent will be capable of performing.
|
||||
|
||||
To manually set up the Pullfrog action, you need to set up two workflow files in your repository: `pullfrog.yml` (the execution logic) and `triggers.yml` (the event triggers).
|
||||
|
||||
#### 1. Create `pullfrog.yml`
|
||||
|
||||
Create a file at `.github/workflows/pullfrog.yml`. This is a reusable workflow that runs the Pullfrog action.
|
||||
|
||||
```yaml
|
||||
# PULLFROG ACTION — DO NOT EDIT EXCEPT WHERE INDICATED
|
||||
name: Pullfrog
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
prompt:
|
||||
type: string
|
||||
description: 'Agent prompt'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
pullfrog:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 1
|
||||
- name: Run agent
|
||||
uses: pullfrog/pullfrog@v0
|
||||
with:
|
||||
prompt: ${{ inputs.prompt }}
|
||||
env:
|
||||
# add API keys for the LLM provider(s) you want to use
|
||||
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
||||
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
|
||||
XAI_API_KEY: ${{ secrets.XAI_API_KEY }}
|
||||
DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY }}
|
||||
OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
|
||||
MOONSHOT_API_KEY: ${{ secrets.MOONSHOT_API_KEY }}
|
||||
|
||||
```
|
||||
|
||||
#### 2. Create `triggers.yml`
|
||||
|
||||
Create a file at `.github/workflows/triggers.yml`. This workflow listens for GitHub events and calls the `pullfrog.yml` workflow with the event data.
|
||||
|
||||
```yaml
|
||||
name: Agent Triggers
|
||||
|
||||
on:
|
||||
issue_comment:
|
||||
types: [created]
|
||||
pull_request_review_comment:
|
||||
types: [created]
|
||||
issues:
|
||||
types: [opened, assigned]
|
||||
pull_request_review:
|
||||
types: [submitted]
|
||||
# add other triggers as needed
|
||||
|
||||
|
||||
jobs:
|
||||
pullfrog:
|
||||
|
||||
# trigger conditions (e.g. only run if @pullfrog is mentioned)
|
||||
if: contains(github.event.comment.body, '@pullfrog') || contains(github.event.issue.body, '@pullfrog')
|
||||
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
uses: ./.github/workflows/pullfrog.yml
|
||||
with:
|
||||
# pass the full event payload as the prompt
|
||||
prompt: ${{ toJSON(github.event) }}
|
||||
secrets: inherit
|
||||
```
|
||||
|
||||
</details>
|
||||
-->
|
||||
|
||||
## Standalone Usage
|
||||
|
||||
You can also use `pullfrog/pullfrog` as a step in your own workflows. The action exposes a `result` output that can be consumed by subsequent steps.
|
||||
|
||||
### Example: Auto-generate release notes on new tags
|
||||
|
||||
```yaml
|
||||
name: Release
|
||||
on:
|
||||
push:
|
||||
tags: ['v*']
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Generate release notes
|
||||
id: notes
|
||||
uses: pullfrog/pullfrog@v0
|
||||
with:
|
||||
prompt: |
|
||||
Generate release notes for ${{ github.ref_name }}.
|
||||
Compare commits between this tag and the previous tag.
|
||||
Format as markdown: summary paragraph, then ### Features, ### Fixes, ### Breaking Changes sections.
|
||||
Omit empty sections. Be concise.
|
||||
env:
|
||||
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||
|
||||
# write to file to avoid shell escaping issues with special characters
|
||||
- name: Create GitHub release
|
||||
run: |
|
||||
notesfile="$RUNNER_TEMP/release-notes-$GITHUB_RUN_ID.md"
|
||||
printf '%s' "$NOTES" > "$notesfile"
|
||||
gh release create ${{ github.ref_name }} --title "${{ github.ref_name }}" --notes-file "$notesfile"
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
NOTES: ${{ steps.notes.outputs.result }}
|
||||
```
|
||||
|
||||
### Example: Structured Output with Zod Schema
|
||||
|
||||
You can force the agent to return structured JSON output by providing a JSON schema. This allows you to reliably parse and use the agent's response in subsequent workflow steps.
|
||||
|
||||
You can define your JSON schema directly or uou can use any validation library that converts to JSON Schema. Here's an example using [Zod](https://zod.dev):
|
||||
|
||||
```yaml
|
||||
name: Release Check
|
||||
on:
|
||||
pull_request:
|
||||
types: [closed]
|
||||
|
||||
jobs:
|
||||
check-release:
|
||||
if: github.event.pull_request.merged == true
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install --no-save --no-package-lock zod @actions/core
|
||||
|
||||
- name: Generate Schema
|
||||
id: schema
|
||||
run: |
|
||||
node -e '
|
||||
import { z } from "zod";
|
||||
import { setOutput } from "@actions/core";
|
||||
const schema = z.object({
|
||||
version: z.string().describe("Semantic version number (e.g. 1.0.0)"),
|
||||
isBreaking: z.boolean().describe("Whether this release contains breaking changes"),
|
||||
changelog: z.array(z.string()).describe("List of changes in this release"),
|
||||
});
|
||||
setOutput("schema", JSON.stringify(z.toJSONSchema(schema)));
|
||||
'
|
||||
|
||||
- name: Analyze PR
|
||||
id: analysis
|
||||
uses: pullfrog/pullfrog@v0
|
||||
with:
|
||||
prompt: |
|
||||
Analyze this PR and determine semantic versioning impact.
|
||||
Return a JSON object matching the provided schema.
|
||||
output_schema: ${{ steps.schema.outputs.schema }}
|
||||
env:
|
||||
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||
|
||||
- name: Process Result
|
||||
run: |
|
||||
# Parse the JSON result using fromJSON()
|
||||
echo "Version: ${{ fromJSON(steps.analysis.outputs.result).version }}"
|
||||
echo "Breaking: ${{ fromJSON(steps.analysis.outputs.result).isBreaking }}"
|
||||
```
|
||||
+16
-35
@@ -1,47 +1,28 @@
|
||||
name: "Pullfrog Action"
|
||||
description: "Execute coding agents with a prompt"
|
||||
author: "Pullfrog"
|
||||
name: shockbot
|
||||
description: Ollama-powered code review bot for Gitea
|
||||
author: ShockVPN
|
||||
|
||||
inputs:
|
||||
prompt:
|
||||
description: "Prompt to send to the agent (string or JSON payload)"
|
||||
required: true
|
||||
timeout:
|
||||
description: "Maximum run duration (e.g., 10m, 1h30m). Default: 1h"
|
||||
description: Review instruction sent to the model
|
||||
required: false
|
||||
default: "Review this pull request"
|
||||
model:
|
||||
description: "Model to use (e.g., anthropic/claude-opus). Overrides repo settings."
|
||||
description: Ollama model to use
|
||||
required: false
|
||||
cwd:
|
||||
description: "Working directory for the agent (defaults to GITHUB_WORKSPACE)"
|
||||
default: "qwen3.6:35b"
|
||||
context_window:
|
||||
description: Max tokens per diff chunk
|
||||
required: false
|
||||
push:
|
||||
description: "Git push permission: disabled (read-only, can't push) or enabled (can push). Default: enabled"
|
||||
default: "4096"
|
||||
max_tool_calls:
|
||||
description: Max MCP tool calls the model can make per chunk
|
||||
required: false
|
||||
shell:
|
||||
description: "Shell permission: disabled, restricted (filters secrets from env vars), or enabled. Public repos default to restricted for security; private repos default to enabled."
|
||||
required: false
|
||||
output_schema:
|
||||
description: "JSON Schema (draft-07) for structured output validation. When provided, the action output becomes required and must conform to this schema."
|
||||
required: false
|
||||
token:
|
||||
description: "GitHub-provided token with job-scoped permissions. Do not set this unless you know what you are doing."
|
||||
required: false
|
||||
default: ${{ github.token }}
|
||||
|
||||
outputs:
|
||||
result:
|
||||
description: "It's set when the prompt explicitly requests it and is required when output_schema is provided; use it to capture actionable output for the next workflow step."
|
||||
default: "10"
|
||||
|
||||
runs:
|
||||
using: "node24"
|
||||
main: "entry.ts"
|
||||
# Always-run post step persists best-effort state that must survive
|
||||
# cancellation, timeouts, and unhandled errors in the main step. Today's
|
||||
# only consumer: Codex auth.json refresh write-back. See wiki/codex-auth.md.
|
||||
post: "entryPost.ts"
|
||||
post-if: "always()"
|
||||
main: "bootstrap.ts"
|
||||
|
||||
branding:
|
||||
icon: "code"
|
||||
color: "green"
|
||||
# BOT_TOKEN, OLLAMA_HOST, and GITEA_URL must be set as env vars by the consuming workflow.
|
||||
# GITHUB_EVENT_NAME, GITHUB_EVENT_PATH, and GITHUB_REPOSITORY are set by the runner.
|
||||
|
||||
-1024
File diff suppressed because it is too large
Load Diff
@@ -1,10 +0,0 @@
|
||||
import { claude } from "./claude.ts";
|
||||
// v2 harness — adapted to opencode-ai >=1.14.x SDK-v2 / Effect-ts CLI rewrite.
|
||||
// The legacy v1 module (`./opencode.ts`) is kept around for reference + fast
|
||||
// revert; the active runner is the v2 module below.
|
||||
import { opencode } from "./opencode_v2.ts";
|
||||
import type { Agent } from "./shared.ts";
|
||||
|
||||
export type { Agent, AgentUsage } from "./shared.ts";
|
||||
|
||||
export const agents = { claude, opencode } satisfies Record<string, Agent>;
|
||||
@@ -1,34 +0,0 @@
|
||||
import { describe, expect, it } from "vitest";
|
||||
import { modelAliases } from "../models.ts";
|
||||
import { geminiHighThinkingOverrides } from "./opencode.ts";
|
||||
|
||||
describe("geminiHighThinkingOverrides", () => {
|
||||
// Expected truth pulled the same way the helper does — both must derive from
|
||||
// the registry so the test exercises the wiring, not a hand-maintained list.
|
||||
const expectedApiIds = modelAliases
|
||||
.filter((a) => a.provider === "google")
|
||||
.map((a) => a.resolve.replace(/^google\//, ""));
|
||||
const overrides = geminiHighThinkingOverrides();
|
||||
|
||||
it("covers every direct-Google alias in the registry", () => {
|
||||
expect(Object.keys(overrides).sort()).toEqual([...expectedApiIds].sort());
|
||||
});
|
||||
|
||||
it("is non-empty (catches accidental whole-provider removal)", () => {
|
||||
expect(Object.keys(overrides).length).toBeGreaterThan(0);
|
||||
});
|
||||
|
||||
it("strips the `google/` prefix from each resolve to get the bare API id", () => {
|
||||
for (const id of Object.keys(overrides)) {
|
||||
expect(id).not.toMatch(/^google\//);
|
||||
}
|
||||
});
|
||||
|
||||
it("pins every entry to thinkingLevel: high", () => {
|
||||
for (const [id, value] of Object.entries(overrides)) {
|
||||
expect(value, `entry for ${id}`).toEqual({
|
||||
options: { thinkingConfig: { thinkingLevel: "high" } },
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
-1256
File diff suppressed because it is too large
Load Diff
@@ -1,139 +0,0 @@
|
||||
/**
|
||||
* Source for the opencode plugin we drop into the per-run tmpdir at
|
||||
* `<XDG_CONFIG_HOME>/opencode/plugin/pullfrog-events.ts`. The harness already
|
||||
* redirects `XDG_CONFIG_HOME` to `ctx.tmpdir/.config` (see `opencode.ts`
|
||||
* `homeEnv`), so opencode's auto-discovery scans the tmpdir, never the user's
|
||||
* working tree. opencode's `Global.Path.config` resolves to
|
||||
* `path.join(xdgConfig, "opencode")` and the config layer auto-discovers
|
||||
* plugins from every directory in its scan list — including
|
||||
* `Global.Path.config` — by globbing `{plugin,plugins}/*.{ts,js}` via
|
||||
* `ConfigPlugin.load(dir)`.
|
||||
*
|
||||
* We MUST NOT write into the user's repo working tree. The repo is a checkout
|
||||
* the agent operates on; only the agent's own tools (gated by
|
||||
* `OPENCODE_PERMISSION`) may modify it. The whole reason we redirect HOME and
|
||||
* XDG_CONFIG_HOME is so harness-side files (config, plugins, scratch state)
|
||||
* land in the tmpdir.
|
||||
*
|
||||
* Why this plugin exists: opencode's `task` tool runs subagents in-process and
|
||||
* the CLI's `cli/cmd/run.ts` event loop filters `part.sessionID !== sessionID`,
|
||||
* so subagent-internal `message.part.updated` events are silently discarded
|
||||
* before reaching our parent NDJSON stream. plugins, by contrast, receive
|
||||
* EVERY bus event via `bus.subscribeAll()` regardless of session.
|
||||
*
|
||||
* The plugin re-emits every relevant bus event onto opencode's stdout as a
|
||||
* single JSON line wrapped in a sentinel envelope. our `runOpenCode` parser
|
||||
* recognises the envelope, unpacks it, and routes the inner part through the
|
||||
* existing handlers with a per-session label from `SessionLabeler` so each
|
||||
* subagent's tool calls / text appear inline alongside the orchestrator's.
|
||||
*
|
||||
* Dumb plugin / smart parent split: the plugin emits every part for every
|
||||
* session. the parent dedupes against the orchestrator's own session id (which
|
||||
* it already knows from the `init` event). this keeps the plugin trivial and
|
||||
* keeps the per-session attribution logic on the parent side where the
|
||||
* SessionLabeler already lives.
|
||||
*
|
||||
* Event-name prefixing: the wrapped event-type sentinel is
|
||||
* `pullfrog_bus_event` — picked to be unmistakably ours so a future opencode
|
||||
* release that introduces a coincidentally-named event type won't collide.
|
||||
*/
|
||||
|
||||
export const PULLFROG_BUS_EVENT_TYPE = "pullfrog_bus_event" as const;
|
||||
|
||||
export const PULLFROG_OPENCODE_PLUGIN_FILENAME = "pullfrog-events.ts" as const;
|
||||
|
||||
/**
|
||||
* Source written verbatim to `<XDG_CONFIG_HOME>/opencode/plugin/pullfrog-events.ts`.
|
||||
*
|
||||
* - Structural typing only (no runtime import of `@opencode-ai/plugin`):
|
||||
* opencode installs that dep into the directory containing the plugin
|
||||
* alongside discovery, but a) the dep isn't required for the structural
|
||||
* shape we use, and b) keeping zero imports avoids any module-resolution
|
||||
* coupling to opencode's plugin-loader internals across versions.
|
||||
* - default export is the plugin factory (opencode's plugin loader accepts
|
||||
* default exports as the server entrypoint).
|
||||
* - we only forward `message.part.updated`. that's where the user-visible
|
||||
* subagent activity (tool calls, text, step transitions) lives. add more
|
||||
* event types here if the parent needs them.
|
||||
* - JSON.stringify+single write keeps the line atomic up to PIPE_BUF (4KB on
|
||||
* Linux). longer parts may interleave with concurrent stdout writers; the
|
||||
* parser tolerates non-JSON lines (logs them at debug) so a torn line is a
|
||||
* missed event, not a crash.
|
||||
*/
|
||||
export const PULLFROG_OPENCODE_PLUGIN_SOURCE = `// AUTOGENERATED by Pullfrog. do not edit; it'll be overwritten on the next run.
|
||||
// surfaces opencode subagent activity that the CLI's run-loop discards. see
|
||||
// action/agents/opencodePlugin.ts in pullfrog/app for why this exists. lives
|
||||
// inside the per-run tmpdir (XDG_CONFIG_HOME/opencode/plugin/), never inside
|
||||
// the user's working tree.
|
||||
|
||||
const PULLFROG_BUS_EVENT_TYPE = ${JSON.stringify(PULLFROG_BUS_EVENT_TYPE)};
|
||||
|
||||
// the first sessionID we see on a message.part.updated event is the
|
||||
// orchestrator — opencode's run command creates exactly one top-level session
|
||||
// before any subagent is dispatched, and the user-prompt text part fires
|
||||
// before the first task tool_use. we lock that sessionID in here and use it
|
||||
// to filter: the orchestrator's events are already streamed by the CLI's
|
||||
// run-loop, so we only forward (a) all subagent events, and (b) the
|
||||
// orchestrator's task tool dispatches at status="running". the CLI only
|
||||
// emits task tool_use at status=completed (after the subagent finishes), so
|
||||
// without the early announce the parent's labeler binds subagent sessions
|
||||
// before recordTaskDispatch fires and the lens label is lost.
|
||||
let orchestratorSessionID: string | undefined;
|
||||
|
||||
function isOrchestratorTaskDispatch(part: {
|
||||
type?: string;
|
||||
tool?: string;
|
||||
state?: { status?: string };
|
||||
}): boolean {
|
||||
if (part.type !== "tool") return false;
|
||||
if (part.tool !== "task") return false;
|
||||
// only forward at status="running" (not "pending"). at pending the
|
||||
// state.input is still {} — the orchestrator has emitted the part shell
|
||||
// but the LLM hasn't filled in description/subagent_type/prompt yet. by
|
||||
// running, input is populated and recordTaskDispatch can derive the lens
|
||||
// label correctly.
|
||||
return part.state?.status === "running";
|
||||
}
|
||||
|
||||
export default async function pullfrogEventsPlugin() {
|
||||
return {
|
||||
event: async (input: {
|
||||
event: {
|
||||
type: string;
|
||||
properties?: {
|
||||
part?: {
|
||||
sessionID?: string;
|
||||
type?: string;
|
||||
tool?: string;
|
||||
state?: { status?: string };
|
||||
};
|
||||
};
|
||||
};
|
||||
}) => {
|
||||
const event = input.event;
|
||||
if (!event || typeof event !== "object") return;
|
||||
if (event.type !== "message.part.updated") return;
|
||||
const part = event.properties?.part;
|
||||
const sessionID = part?.sessionID;
|
||||
if (typeof sessionID !== "string" || sessionID.length === 0) return;
|
||||
if (orchestratorSessionID === undefined) orchestratorSessionID = sessionID;
|
||||
|
||||
if (sessionID === orchestratorSessionID) {
|
||||
// skip orchestrator events EXCEPT early task dispatches.
|
||||
if (!part || !isOrchestratorTaskDispatch(part)) return;
|
||||
}
|
||||
|
||||
try {
|
||||
const line = JSON.stringify({
|
||||
type: PULLFROG_BUS_EVENT_TYPE,
|
||||
bus_event: event,
|
||||
});
|
||||
process.stdout.write(line + "\\n");
|
||||
} catch {
|
||||
// a circular reference or BigInt etc. would throw; swallow rather
|
||||
// than letting a single bad event take down the plugin.
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
`;
|
||||
@@ -1,144 +0,0 @@
|
||||
// Shared helpers for the OpenCode agent harnesses (`./opencode.ts` v1 and
|
||||
// `./opencode_v2.ts` v2). Pure config / model-registry / install glue —
|
||||
// nothing here touches the NDJSON event loop, which differs between v1 and v2.
|
||||
//
|
||||
// Once v1 is deleted post-burn-in this module collapses back into v2; until
|
||||
// then it keeps both runners synchronized so a config drift can't make v1 a
|
||||
// silently-broken fallback.
|
||||
|
||||
import { execFileSync } from "node:child_process";
|
||||
import { modelAliases } from "../models.ts";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import { installFromNpmTarball } from "../utils/install.ts";
|
||||
import { getDevDependencyVersion } from "../utils/version.ts";
|
||||
import { REVIEWER_AGENT_NAME, REVIEWER_SYSTEM_PROMPT } from "./reviewer.ts";
|
||||
import { deriveSubagentModels } from "./subagentModels.ts";
|
||||
|
||||
// ── config ─────────────────────────────────────────────────────────────────────
|
||||
|
||||
export type OpenCodeConfig = {
|
||||
mcp?: Record<string, unknown>;
|
||||
permission?: Record<string, unknown>;
|
||||
provider?: Record<string, unknown>;
|
||||
agent?: Record<string, unknown>;
|
||||
experimental?: Record<string, unknown>;
|
||||
model?: string;
|
||||
enabled_providers?: string[];
|
||||
[key: string]: unknown;
|
||||
};
|
||||
|
||||
/**
|
||||
* Build the `provider.google.models[id].options` map that pins every direct-Google
|
||||
* Gemini alias to `thinkingLevel: "high"`. Sourced from the model registry so
|
||||
* adding/renaming a Google alias in `action/models.ts` flows through automatically.
|
||||
*/
|
||||
export function geminiHighThinkingOverrides(): Record<string, { options: object }> {
|
||||
return Object.fromEntries(
|
||||
modelAliases
|
||||
.filter((a) => a.provider === "google")
|
||||
.map((a) => [
|
||||
a.resolve.replace(/^google\//, ""),
|
||||
{ options: { thinkingConfig: { thinkingLevel: "high" } } },
|
||||
])
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Read-only `reviewfrog` subagent for lens-based review. Non-mutative +
|
||||
* non-recursive — enforced by the system prompt in reviewer.ts.
|
||||
*
|
||||
* Per-subagent `model:` override is driven by the registry in
|
||||
* `action/models.ts` via each alias's `subagentModel` field. Currently wired:
|
||||
* Anthropic opus → sonnet, OpenAI gpt-pro → gpt and gpt → gpt-5.4, Google
|
||||
* gemini-pro → gemini-flash. Other providers inherit (no override).
|
||||
*/
|
||||
export function buildReviewerAgentConfig(
|
||||
orchestratorModel: string | undefined
|
||||
): Record<string, unknown> {
|
||||
const overrides = deriveSubagentModels(orchestratorModel);
|
||||
return {
|
||||
[REVIEWER_AGENT_NAME]: {
|
||||
description:
|
||||
"Read-only review subagent for lens-based code review (correctness, security, billing-subsystem, etc.). " +
|
||||
"Reads only — no writes, no state-changing shell or MCP calls, no nested subagent dispatch.",
|
||||
mode: "subagent",
|
||||
prompt: REVIEWER_SYSTEM_PROMPT,
|
||||
...(overrides.reviewer !== undefined ? { model: overrides.reviewer } : {}),
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
// ── install ────────────────────────────────────────────────────────────────────
|
||||
|
||||
/**
|
||||
* Install the opencode-ai npm tarball and return the path to the executable.
|
||||
*
|
||||
* The bin path differs by version: v1.4.x and earlier shipped `bin/opencode`;
|
||||
* v1.14+ renames the platform-specific binary to `bin/opencode.exe` for every
|
||||
* OS via the postinstall script. Callers pass the binPath that matches their
|
||||
* pinned version so a v1↔v2 swap can't silently install the wrong file.
|
||||
*/
|
||||
export async function installOpencodeCli(params: { binPath: string }): Promise<string> {
|
||||
return await installFromNpmTarball({
|
||||
packageName: "opencode-ai",
|
||||
version: getDevDependencyVersion("opencode-ai"),
|
||||
executablePath: params.binPath,
|
||||
installDependencies: true,
|
||||
});
|
||||
}
|
||||
|
||||
// ── model auto-select fallback ──────────────────────────────────────────────────
|
||||
//
|
||||
// steps 1–2 of model resolution (PULLFROG_MODEL env, slug resolution) happen
|
||||
// in resolveModel() in utils/agent.ts before the agent runs. this is step 3:
|
||||
// auto-select via `opencode models`.
|
||||
|
||||
const AUTO_SELECT_WARNING =
|
||||
"select a model explicitly in the Pullfrog console (https://pullfrog.com/console) to avoid this.";
|
||||
|
||||
function getOpenCodeModels(cliPath: string): string[] {
|
||||
try {
|
||||
const output = execFileSync(cliPath, ["models"], {
|
||||
encoding: "utf-8",
|
||||
timeout: 30_000,
|
||||
env: process.env,
|
||||
});
|
||||
return output
|
||||
.split("\n")
|
||||
.map((line) => line.trim())
|
||||
.filter(Boolean);
|
||||
} catch (error) {
|
||||
log.debug(
|
||||
`» failed to run \`opencode models\`: ${error instanceof Error ? error.message : String(error)}`
|
||||
);
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
export function autoSelectModel(cliPath: string): string | undefined {
|
||||
const availableModels = getOpenCodeModels(cliPath);
|
||||
const availableSet = new Set(availableModels);
|
||||
if (availableSet.size > 0) {
|
||||
log.debug(`» opencode models (${availableSet.size}): ${availableModels.join(", ")}`);
|
||||
// skip hidden aliases (internal subagent-tier targets like
|
||||
// opencode/gpt-5.4) — they should never surface as a user-facing
|
||||
// orchestrator pick. mirrors the selectable-list filter in
|
||||
// components/ModelSelector.tsx and action/commands/init.ts.
|
||||
const match =
|
||||
modelAliases.find((a) => !a.hidden && a.preferred && availableSet.has(a.resolve)) ??
|
||||
modelAliases.find((a) => !a.hidden && availableSet.has(a.resolve));
|
||||
if (match) {
|
||||
log.info(
|
||||
`» model: ${match.resolve} (auto-selected${match.preferred ? " — preferred" : ""} curated match)`
|
||||
);
|
||||
log.warning(`» model auto-selected. ${AUTO_SELECT_WARNING}`);
|
||||
return match.resolve;
|
||||
}
|
||||
log.info(
|
||||
`» opencode has ${availableSet.size} models but none match curated aliases — letting OpenCode auto-select`
|
||||
);
|
||||
}
|
||||
|
||||
log.warning(`» no model resolved. letting OpenCode auto-select. ${AUTO_SELECT_WARNING}`);
|
||||
return undefined;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,64 +0,0 @@
|
||||
import { describe, expect, it } from "vitest";
|
||||
import type { ToolState } from "../toolState.ts";
|
||||
import { getUnsubmittedReview } from "./postRun.ts";
|
||||
|
||||
function makeToolState(overrides: Partial<ToolState> = {}): ToolState {
|
||||
return {
|
||||
progressComment: undefined,
|
||||
hadProgressComment: true,
|
||||
prepushFailureCount: 0,
|
||||
backgroundProcesses: new Map(),
|
||||
usageEntries: [],
|
||||
...overrides,
|
||||
};
|
||||
}
|
||||
|
||||
describe("getUnsubmittedReview", () => {
|
||||
it("returns null when mode is not a review mode", () => {
|
||||
expect(getUnsubmittedReview(makeToolState({ selectedMode: "Build" }))).toBeNull();
|
||||
expect(getUnsubmittedReview(makeToolState())).toBeNull();
|
||||
});
|
||||
|
||||
it("returns null when a review was already submitted", () => {
|
||||
expect(
|
||||
getUnsubmittedReview(
|
||||
makeToolState({
|
||||
selectedMode: "Review",
|
||||
review: { id: 1, nodeId: "n", reviewedSha: undefined },
|
||||
})
|
||||
)
|
||||
).toBeNull();
|
||||
});
|
||||
|
||||
it("fires for Review even when report_progress wrote a final summary", () => {
|
||||
// Review's only valid exit is `create_pull_request_review`. a summary
|
||||
// comment is not a substitute, and accepting it here previously let
|
||||
// subagent-flipped `finalSummaryWritten` silence the gate.
|
||||
expect(
|
||||
getUnsubmittedReview(makeToolState({ selectedMode: "Review", finalSummaryWritten: true }))
|
||||
).toBe("Review");
|
||||
});
|
||||
|
||||
it("returns null for IncrementalReview when report_progress wrote a final summary", () => {
|
||||
// IncrementalReview treats `report_progress` as a legitimate
|
||||
// "no review warranted" exit, matching the post-failure error message.
|
||||
expect(
|
||||
getUnsubmittedReview(
|
||||
makeToolState({ selectedMode: "IncrementalReview", finalSummaryWritten: true })
|
||||
)
|
||||
).toBeNull();
|
||||
});
|
||||
|
||||
it("returns null when there is no progress comment to anchor the failure to", () => {
|
||||
expect(
|
||||
getUnsubmittedReview(makeToolState({ selectedMode: "Review", hadProgressComment: false }))
|
||||
).toBeNull();
|
||||
});
|
||||
|
||||
it("returns the selected mode when the gate should fire", () => {
|
||||
expect(getUnsubmittedReview(makeToolState({ selectedMode: "Review" }))).toBe("Review");
|
||||
expect(getUnsubmittedReview(makeToolState({ selectedMode: "IncrementalReview" }))).toBe(
|
||||
"IncrementalReview"
|
||||
);
|
||||
});
|
||||
});
|
||||
@@ -1,489 +0,0 @@
|
||||
import { readFile } from "node:fs/promises";
|
||||
import { LIFECYCLE_HOOK_TIMEOUT_MS } from "../lifecycle.ts";
|
||||
import { NON_COMMITTING_MODES } from "../modes.ts";
|
||||
import type { ToolState } from "../toolState.ts";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import {
|
||||
SPAWN_ACTIVITY_TIMEOUT_CODE,
|
||||
SPAWN_TIMEOUT_CODE,
|
||||
SpawnTimeoutError,
|
||||
spawn,
|
||||
} from "../utils/subprocess.ts";
|
||||
import {
|
||||
type AgentResult,
|
||||
type AgentRunContext,
|
||||
type AgentUsage,
|
||||
buildCommitPrompt,
|
||||
getGitStatus,
|
||||
hasPostRunIssues,
|
||||
MAX_POST_RUN_RETRIES,
|
||||
mergeAgentUsage,
|
||||
type PostRunIssues,
|
||||
type StopHookFailure,
|
||||
} from "./shared.ts";
|
||||
|
||||
/**
|
||||
* derive "agent picked a review mode but never produced visible output" from
|
||||
* the literal facts on `toolState`. returns the selected mode when the gate
|
||||
* should fire, `null` otherwise — pure read, no side effects, safe to invoke
|
||||
* after every agent attempt.
|
||||
*
|
||||
* the gate is anchored to `hadProgressComment` so silent runs (non-issue
|
||||
* events, dispatcher skipped seeding) don't fire a nudge there's no UI for.
|
||||
*
|
||||
* `Review` and `IncrementalReview` have different valid exits:
|
||||
* - Review: only `create_pull_request_review` counts. `report_progress` is
|
||||
* not a substitute — a Review run that exits with just a summary comment
|
||||
* has produced nothing reviewable on the PR. matches the hard-fail
|
||||
* message at `expected = "create_pull_request_review"` below.
|
||||
* - IncrementalReview: `report_progress` is a legitimate "no review
|
||||
* warranted" exit, so either toolState flag short-circuits.
|
||||
* splitting per mode also closes the bypass where a subagent (e.g. a
|
||||
* `task`-dispatched `reviewfrog` lens) calls `report_progress` and silences
|
||||
* the gate even though the orchestrator never submitted a review.
|
||||
*/
|
||||
export function getUnsubmittedReview(toolState: ToolState): "Review" | "IncrementalReview" | null {
|
||||
const mode = toolState.selectedMode;
|
||||
if (!toolState.hadProgressComment) return null;
|
||||
if (mode === "Review") return toolState.review ? null : "Review";
|
||||
if (mode === "IncrementalReview") {
|
||||
return toolState.review || toolState.finalSummaryWritten ? null : "IncrementalReview";
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* hook output can flow into two size-sensitive places: the LLM resume prompt
|
||||
* (context window) and AgentResult.error (surfaced in GitHub comments capped
|
||||
* at 65535 chars). truncate the tail to keep both bounded; the tail is
|
||||
* usually the most actionable part of a failing script's output.
|
||||
*/
|
||||
const MAX_HOOK_OUTPUT_CHARS = 4096;
|
||||
|
||||
function truncateHookOutput(raw: string): string {
|
||||
if (raw.length <= MAX_HOOK_OUTPUT_CHARS) return raw;
|
||||
return `...(truncated, showing last ${MAX_HOOK_OUTPUT_CHARS} chars)\n${raw.slice(-MAX_HOOK_OUTPUT_CHARS)}`;
|
||||
}
|
||||
|
||||
/**
|
||||
* run the user-configured stop hook.
|
||||
*
|
||||
* parallel to `executeLifecycleHook` (which soft-fails with a warning), but
|
||||
* returns structured output so agent harnesses can feed the failure back into
|
||||
* the session as a resume prompt.
|
||||
*
|
||||
* - non-zero exit → `StopHookFailure`, actionable: the output is fed to the
|
||||
* agent so it can fix the underlying issue.
|
||||
* - timeout / spawn error → null, treated as passed: we can't usefully ask the
|
||||
* agent to fix an infrastructure problem, and retrying would risk infinite
|
||||
* loops.
|
||||
*/
|
||||
export async function executeStopHook(script: string): Promise<StopHookFailure | null> {
|
||||
log.info("» executing stop hook...");
|
||||
try {
|
||||
const result = await spawn({
|
||||
cmd: "bash",
|
||||
args: ["-c", script],
|
||||
env: process.env,
|
||||
timeout: LIFECYCLE_HOOK_TIMEOUT_MS,
|
||||
activityTimeout: 0,
|
||||
onStdout: (chunk) => process.stdout.write(chunk),
|
||||
onStderr: (chunk) => process.stderr.write(chunk),
|
||||
});
|
||||
if (result.exitCode === 0) {
|
||||
log.info("» stop hook passed");
|
||||
return null;
|
||||
}
|
||||
// include both streams — scripts often emit a benign warning to stderr
|
||||
// and the actionable error to stdout (or vice versa), and picking one
|
||||
// starves the agent of the diagnostic it needs. stderr-first so stdout
|
||||
// (typically longer, where truncation is more likely to bite) keeps its
|
||||
// tail — summaries/totals usually live at the end.
|
||||
const combined = [result.stderr.trim(), result.stdout.trim()].filter(Boolean).join("\n");
|
||||
const output = truncateHookOutput(combined);
|
||||
log.info(`» stop hook failed with exit code ${result.exitCode}`);
|
||||
return { exitCode: result.exitCode, output };
|
||||
} catch (err) {
|
||||
const isTimeout =
|
||||
err instanceof SpawnTimeoutError &&
|
||||
(err.code === SPAWN_TIMEOUT_CODE || err.code === SPAWN_ACTIVITY_TIMEOUT_CODE);
|
||||
const msg = err instanceof Error ? err.message : String(err);
|
||||
log.warning(
|
||||
`stop hook ${isTimeout ? "timed out" : "failed to spawn"}: ${msg} — skipping retry`
|
||||
);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
export function buildStopHookPrompt(failure: StopHookFailure): string {
|
||||
return [
|
||||
`STOP HOOK FAILED — the repo-configured stop hook exited with code ${failure.exitCode}. your work is not done until the hook exits cleanly. address the issue below and push any resulting changes to a pull request.`,
|
||||
"",
|
||||
"```",
|
||||
failure.output || "(no output)",
|
||||
"```",
|
||||
].join("\n");
|
||||
}
|
||||
|
||||
/** check whether the seeded summary file is byte-identical to its seed.
|
||||
* a missing or unreadable file returns false (don't nudge — the agent
|
||||
* may have legitimately deleted it, or the seed step failed; the read-
|
||||
* back path in main.ts handles both cases by skipping persist). */
|
||||
async function isSummaryUnchanged(filePath: string, seed: string): Promise<boolean> {
|
||||
try {
|
||||
const current = await readFile(filePath, "utf8");
|
||||
return current === seed;
|
||||
} catch {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
export function buildSummaryStalePrompt(filePath: string): string {
|
||||
return [
|
||||
`PR SUMMARY UNTOUCHED — the rolling PR summary file at \`${filePath}\` is byte-identical to its seed; this run did not edit it.`,
|
||||
"",
|
||||
"review the diff and update the file in place to reflect what changed in the PR. update intent, key changes, and any risks worth flagging — keep the existing section headings stable so incremental runs produce clean diffs.",
|
||||
"",
|
||||
"if the diff is genuinely too small or noisy to warrant rewriting (e.g. a one-line typo fix, a comment tweak, a formatting-only change), it's fine to leave the structure as-is — but at minimum confirm you considered it by appending one line to the appropriate section noting the run. silence is not an option; the snapshot is what the next review run reads as context.",
|
||||
].join("\n");
|
||||
}
|
||||
|
||||
export function buildUnsubmittedReviewPrompt(mode: "Review" | "IncrementalReview"): string {
|
||||
// mode-aware: Review mode's contract is "always submit one review" — its
|
||||
// mode prompt forbids `report_progress`, so the nudge here must not offer
|
||||
// it as an exit. IncrementalReview legitimately allows a report_progress
|
||||
// exit when there are no new issues since the last review (mode prompt
|
||||
// step 8), so the nudge mirrors that contract.
|
||||
if (mode === "Review") {
|
||||
return [
|
||||
`MISSING REVIEW OUTPUT — you selected Review mode but stopped without calling \`create_pull_request_review\`. the user has no visible signal that this run produced anything; the progress comment will be deleted on exit and no review will appear on the PR.`,
|
||||
"",
|
||||
"call `create_pull_request_review` now with your aggregated review (body + inline comments). pick the tier per the mode prompt — Review mode has no no-submit exit, so even informational `> ✅ No new issues found.` reviews must be submitted (with `approved: true`). the first call may error once with a diff-coverage nudge — retry the same call to proceed.",
|
||||
"",
|
||||
"do NOT stop again until `create_pull_request_review` has been called successfully.",
|
||||
].join("\n");
|
||||
}
|
||||
return [
|
||||
`MISSING REVIEW OUTPUT — you selected IncrementalReview mode but stopped without calling \`create_pull_request_review\` or \`report_progress\`. the user has no visible signal that this run produced anything; the progress comment will be deleted on exit and no review will appear on the PR.`,
|
||||
"",
|
||||
"do exactly one of:",
|
||||
"- if you have findings: call `create_pull_request_review` now with your aggregated review (body + inline comments). the first call may error once with a diff-coverage nudge — retry the same call to proceed.",
|
||||
"- if there are genuinely no actionable findings since the last review (e.g. only formatting / comment / lockfile changes): call `report_progress` with a 1-2 sentence summary explaining that no review was warranted.",
|
||||
"",
|
||||
"do NOT stop again until one of those tools has been called successfully.",
|
||||
].join("\n");
|
||||
}
|
||||
|
||||
/**
|
||||
* check the post-run gates: did the stop hook pass, is the working tree
|
||||
* clean, and (when applicable) did the agent touch the rolling PR summary
|
||||
* snapshot or produce review output? returns everything that still needs
|
||||
* nudging so the caller can render a single combined resume prompt.
|
||||
*
|
||||
* reads run state directly off `ctx.toolState` so each invocation sees the
|
||||
* latest mutations from MCP tool calls. `skipSummaryStale` lets the loop
|
||||
* suppress the summary-stale check after the one-shot nudge has been
|
||||
* delivered (re-firing it would burn the retry budget on a soft gate the
|
||||
* agent has already decided not to act on).
|
||||
*/
|
||||
export async function collectPostRunIssues(
|
||||
ctx: AgentRunContext,
|
||||
options: { skipSummaryStale?: boolean } = {}
|
||||
): Promise<PostRunIssues> {
|
||||
const issues: PostRunIssues = {};
|
||||
// stop hook is disabled — production audit (May 2026) showed 8/9 configured
|
||||
// scripts are foot-guns (duplicates of prepushScript, run on non-committing
|
||||
// modes against unchanged trees) burning the retry budget on un-fixable
|
||||
// gates. re-enable here + the dashboard block in `AgentSettings.tsx` once
|
||||
// we've decided on the right semantics (mode-gating vs. HEAD-changed gating
|
||||
// vs. deletion). see issue #714.
|
||||
// if (ctx.stopScript) {
|
||||
// const failure = await executeStopHook(ctx.stopScript);
|
||||
// if (failure) issues.stopHook = failure;
|
||||
// }
|
||||
// dirty-tree gate fires only in modes that legitimately commit. Review /
|
||||
// IncrementalReview / Plan complete via review submission or a Plan
|
||||
// comment, not by touching files — any tree dirt is incidental (e.g. a
|
||||
// tool-installed `node_modules/`) and the worktree is ephemeral, so
|
||||
// nudging the agent to commit it would produce a spurious PR. see
|
||||
// `NON_COMMITTING_MODES` in `action/modes.ts`.
|
||||
const status = getGitStatus();
|
||||
const mode = ctx.toolState.selectedMode;
|
||||
if (status) {
|
||||
if (mode && NON_COMMITTING_MODES.has(mode)) {
|
||||
log.info(`» dirty-tree gate suppressed: mode \`${mode}\` does not commit`);
|
||||
} else {
|
||||
issues.dirtyTree = status;
|
||||
}
|
||||
}
|
||||
const summaryFilePath = ctx.toolState.summaryFilePath;
|
||||
const summarySeed = ctx.toolState.summarySeed;
|
||||
if (!options.skipSummaryStale && summaryFilePath && summarySeed !== undefined) {
|
||||
const stale = await isSummaryUnchanged(summaryFilePath, summarySeed);
|
||||
if (stale) issues.summaryStale = { filePath: summaryFilePath };
|
||||
}
|
||||
const unsubmittedMode = getUnsubmittedReview(ctx.toolState);
|
||||
if (unsubmittedMode) issues.unsubmittedReview = unsubmittedMode;
|
||||
return issues;
|
||||
}
|
||||
|
||||
export function buildPostRunPrompt(issues: PostRunIssues): string {
|
||||
// order matches the terminal hard-fail order in `runPostRunRetryLoop` so
|
||||
// the prompt's emphasis (which gate the agent should fix first) lines up
|
||||
// with the user-visible failure message reported when retries exhaust.
|
||||
// both hard-fail gates first (`stopHook` → `unsubmittedReview`), then the
|
||||
// soft gates (`dirtyTree` → `summaryStale`).
|
||||
const parts: string[] = [];
|
||||
if (issues.stopHook) parts.push(buildStopHookPrompt(issues.stopHook));
|
||||
if (issues.unsubmittedReview) {
|
||||
parts.push(buildUnsubmittedReviewPrompt(issues.unsubmittedReview));
|
||||
}
|
||||
if (issues.dirtyTree) parts.push(buildCommitPrompt(issues.dirtyTree));
|
||||
if (issues.summaryStale) parts.push(buildSummaryStalePrompt(issues.summaryStale.filePath));
|
||||
return parts.join("\n\n---\n\n");
|
||||
}
|
||||
|
||||
/**
|
||||
* modes for which the post-run reflection turn is skipped. reflection costs a
|
||||
* full resume turn (~$0.50-0.80 per run on Opus, mostly cache-write) and only
|
||||
* pays for itself when the run actually produced novel, durable findings.
|
||||
*
|
||||
* `IncrementalReview` is the lowest-novelty mode — it's a tight delta review
|
||||
* against an existing PR with the prior summary already loaded as context.
|
||||
* the agent rarely discovers anything generalizable to next runs, so the
|
||||
* reflection turn is dead weight. initial `Review` still touches fresh PR
|
||||
* territory and benefits; `Build` / `Fix` / `AddressReviews` definitely do.
|
||||
*/
|
||||
const REFLECTION_SKIP_MODES: ReadonlySet<string> = new Set(["IncrementalReview"]);
|
||||
|
||||
export function shouldRunReflection(mode: string | undefined): boolean {
|
||||
if (!mode) return true;
|
||||
return !REFLECTION_SKIP_MODES.has(mode);
|
||||
}
|
||||
|
||||
/**
|
||||
* prompt for a dedicated post-run reflection turn nudging the agent to edit
|
||||
* the rolling learnings file if it discovered anything worth persisting.
|
||||
*
|
||||
* this exists because passive "if you learned something, write it down"
|
||||
* instructions baked into mode checklists are frequently ignored — the agent
|
||||
* stays focused on the task and the meta-ask falls through. delivering it
|
||||
* as its own resume turn, with nothing competing for attention, raises the
|
||||
* fire rate substantially.
|
||||
*
|
||||
* the file is the single source of truth — there is no separate MCP tool
|
||||
* call. the server reads the file at end-of-run and persists any edits to
|
||||
* `Repo.learnings`.
|
||||
*
|
||||
* the prompt copy is shaped by repo-wide audits of the actual content the
|
||||
* agent has been writing (issue #619 in pullfrog/app). recurring failure
|
||||
* modes the framing pushes back on:
|
||||
* - massive multi-paragraph "bullets" that are really mini-articles
|
||||
* - facts anchored to moving repo state (PR / review / commit / branch
|
||||
* refs, dates, version pins, line numbers) that decay within weeks
|
||||
* - sections growing into giant flat lists with no internal structure,
|
||||
* forcing future runs to read kilobytes to find one fact
|
||||
*
|
||||
* single litmus delivered in the prompt: "would a future run on this repo
|
||||
* do its work better because this bullet exists?". tool-quirk workarounds
|
||||
* are explicitly allowed when the agent burned calls discovering the
|
||||
* quirk this run — recording the workaround prevents next run from
|
||||
* repeating the waste. tradeoff: the same quirk gets duplicated across
|
||||
* repos, so when a quirk is fixed upstream in tool descriptions the
|
||||
* per-repo bullets go stale and we have no batch-invalidation path.
|
||||
*/
|
||||
export function buildLearningsReflectionPrompt(filePath: string): string {
|
||||
return [
|
||||
`REFLECTION — before you finish, think back over this task: did you discover anything about this repo's setup, test commands, conventions, or patterns that is high-confidence and would reliably help future runs?`,
|
||||
"",
|
||||
`the rolling learnings file is at \`${filePath}\`. read it first if you haven't already, then edit it in place using your native file tools. the server reads this file at end-of-run and persists any changes — there is no tool to call.`,
|
||||
"",
|
||||
`structure:`,
|
||||
`- markdown hierarchy: \`## \` for top-level themes, \`### \` and deeper for sub-themes when a section grows. there is no fixed taxonomy — choose headings that fit THIS repo (e.g. for one repo \`## Migrations\` / \`## Local dev\` may make sense; for another, \`## API quirks\` / \`## Failure modes\`).`,
|
||||
`- **no section over ~300 lines.** when a section is approaching that, split it: introduce \`### \` subsections grouping related bullets, or hoist a coherent group into a new top-level \`## \` section. granular sections mean future runs read targeted line ranges instead of slurping the whole file. this is the most important hygiene rule on long-lived repos.`,
|
||||
`- if you find a flat unstructured list (legacy content from before this format), restructure it: read it, group related bullets, rewrite the file with \`## \` / \`### \` headings around them. don't preserve bad structure — fix it.`,
|
||||
"",
|
||||
`the only test: would a future run on this repo do its work better because this bullet exists? useful for future runs in this repo — prevent wasted tool calls, rabbit holes, and mistakes.`,
|
||||
"",
|
||||
`bullet hygiene:`,
|
||||
`- one fact per line starting with \`- \`, ≤ 240 chars.`,
|
||||
`- only add when high-confidence, broadly useful, evergreen.`,
|
||||
`- prune wrong or low-signal bullets; merge overlaps; dedupe across sections.`,
|
||||
"",
|
||||
`don't anchor facts to repo state that will move: PR / review / commit / branch refs, dates, version pins, line numbers. state the rule directly. if it needs the anchor to be load-bearing, it isn't evergreen.`,
|
||||
"",
|
||||
`tool-quirk bullets are fine when you burned calls discovering the quirk and a future run would repeat them. write the workaround, not the war story.`,
|
||||
"",
|
||||
`if you have nothing substantively new to add AND the existing entries still look healthy and well-structured, leave the file alone — just reply "done" and stop. silence is a valid outcome.`,
|
||||
].join("\n");
|
||||
}
|
||||
|
||||
/**
|
||||
* shared post-run retry loop used by every agent harness.
|
||||
*
|
||||
* checks the post-run gates (stop hook + dirty tree), and if either is
|
||||
* failing, invokes `resume` to let the agent fix and push in the same turn.
|
||||
* bails at `MAX_POST_RUN_RETRIES` attempts. the `canResume` predicate is
|
||||
* consulted before each retry — harnesses that can't re-enter the session
|
||||
* (e.g. claude without a sessionId) return false here.
|
||||
*
|
||||
* an optional `reflectionPrompt` fires exactly once, after the gates first
|
||||
* observe a clean state. it's a one-shot nudge (e.g. "update learnings if
|
||||
* relevant"), not a gate, so it does not consume the gate-retry budget. if
|
||||
* the reflection turn dirties the tree, the loop picks that up on the next
|
||||
* iteration via the normal dirty-tree gate.
|
||||
*
|
||||
* stop hook must pass for the run to succeed; persistent hook failures are
|
||||
* surfaced as `AgentResult.error`. dirty-tree-only failures preserve prior
|
||||
* behavior: they're logged but don't fail the run.
|
||||
*/
|
||||
export async function runPostRunRetryLoop<R extends AgentResult>(params: {
|
||||
ctx: AgentRunContext;
|
||||
initialResult: R;
|
||||
initialUsage: AgentUsage | undefined;
|
||||
resume: (context: { prompt: string; previousResult: R }) => Promise<R>;
|
||||
canResume?: ((result: R) => boolean) | undefined;
|
||||
reflectionPrompt?: string | undefined;
|
||||
}): Promise<AgentResult> {
|
||||
let result = params.initialResult;
|
||||
let aggregatedUsage = params.initialUsage;
|
||||
let finalIssues: PostRunIssues = {};
|
||||
let gateResumeCount = 0;
|
||||
let pendingReflection = params.reflectionPrompt;
|
||||
// nudge for an untouched summary file fires AT MOST ONCE per run. once
|
||||
// delivered, subsequent collectPostRunIssues calls skip the check — the
|
||||
// agent may have legitimately decided no edit is warranted, and
|
||||
// re-prompting would burn the retry budget without adding signal.
|
||||
let summaryStaleNudged = false;
|
||||
|
||||
while (gateResumeCount < MAX_POST_RUN_RETRIES) {
|
||||
if (!result.success) break;
|
||||
const issues = await collectPostRunIssues(params.ctx, {
|
||||
skipSummaryStale: summaryStaleNudged,
|
||||
});
|
||||
if (issues.summaryStale) summaryStaleNudged = true;
|
||||
finalIssues = issues;
|
||||
|
||||
if (!hasPostRunIssues(issues)) {
|
||||
// gates are clean. if a reflection prompt is pending, deliver it once
|
||||
// and loop back to re-check — the reflection may have touched the tree.
|
||||
if (!pendingReflection) break;
|
||||
if (params.canResume && !params.canResume(result)) break;
|
||||
log.info("» post-run reflection: nudging agent to update learnings if relevant");
|
||||
const preReflection = result;
|
||||
const reflectionResult = await params.resume({
|
||||
prompt: pendingReflection,
|
||||
previousResult: result,
|
||||
});
|
||||
aggregatedUsage = mergeAgentUsage(aggregatedUsage, reflectionResult.usage);
|
||||
pendingReflection = undefined;
|
||||
if (!reflectionResult.success) {
|
||||
// reflection is a best-effort nudge. its failure must not flip a
|
||||
// successful run to failed — the gated work is already done. keep
|
||||
// the pre-reflection result and exit without re-running the gates
|
||||
// (which would risk a flaky false-positive hook failure right after
|
||||
// it just passed).
|
||||
log.warning(
|
||||
`» reflection turn failed (${reflectionResult.error ?? "unknown error"}), preserving prior successful result`
|
||||
);
|
||||
result = preReflection;
|
||||
break;
|
||||
}
|
||||
// reflection replies are meta-asks ("done", "updated learnings with N
|
||||
// bullets") — not a task summary. keep the pre-reflection output so
|
||||
// the returned AgentResult still reflects what the run accomplished,
|
||||
// while inheriting reflection-specific fields the harness needs for
|
||||
// any subsequent gate retry (e.g. the new sessionId claude emits per
|
||||
// --resume invocation).
|
||||
// use `||` (not `??`) so an empty pre-reflection output falls through
|
||||
// to the reflection's reply. runs that only emit MCP tool calls and no
|
||||
// plain text leave result.output = "" — keeping "" would starve the
|
||||
// fallback path in handleAgentResult of anything to show.
|
||||
result = {
|
||||
...reflectionResult,
|
||||
output: preReflection.output || reflectionResult.output,
|
||||
};
|
||||
continue;
|
||||
}
|
||||
|
||||
// checks still ran even if we can't resume, so the failure gate below
|
||||
// can still catch a persistent stop-hook failure.
|
||||
if (params.canResume && !params.canResume(result)) {
|
||||
log.info("» post-run retry skipped: cannot resume agent session");
|
||||
break;
|
||||
}
|
||||
|
||||
log.info(`» post-run retry (attempt ${gateResumeCount + 1}/${MAX_POST_RUN_RETRIES})`);
|
||||
const prompt = buildPostRunPrompt(issues);
|
||||
// summary-stale is a soft gate that must never flip a successful run to
|
||||
// failed. when it's the only issue and the resume itself errors out,
|
||||
// restore the pre-resume successful result and break — persistSummary
|
||||
// detects the unchanged file via its seed comparison and skips the DB
|
||||
// write on its own, so no further coordination is needed here.
|
||||
const onlySummaryStale =
|
||||
issues.summaryStale !== undefined &&
|
||||
issues.stopHook === undefined &&
|
||||
issues.dirtyTree === undefined;
|
||||
const preResume = result;
|
||||
result = await params.resume({ prompt, previousResult: result });
|
||||
aggregatedUsage = mergeAgentUsage(aggregatedUsage, result.usage);
|
||||
if (!result.success && onlySummaryStale) {
|
||||
log.warning(
|
||||
`» summary-stale resume turn failed (${result.error ?? "unknown error"}), preserving prior successful result`
|
||||
);
|
||||
result = preResume;
|
||||
break;
|
||||
}
|
||||
gateResumeCount++;
|
||||
}
|
||||
|
||||
// we exhausted retries without observing a clean state — finalIssues
|
||||
// reflects pre-resume state, so re-check to see what the last resume
|
||||
// actually did. when the subprocess failed we skip: its own error is more
|
||||
// actionable than a stale "stop hook still failing" message. when the loop
|
||||
// already observed a clean state we skip: re-running the hook risks flaky
|
||||
// false-positive failures right after it just passed.
|
||||
if (gateResumeCount > 0 && result.success && hasPostRunIssues(finalIssues)) {
|
||||
// re-check the gates that can actually fail the run (stop hook /
|
||||
// dirty tree / unsubmitted review). summary-stale is intentionally
|
||||
// NOT re-checked here: we already delivered the one-shot nudge, and
|
||||
// a still-unchanged file at this point is the agent's deliberate
|
||||
// choice.
|
||||
finalIssues = await collectPostRunIssues(params.ctx, { skipSummaryStale: true });
|
||||
}
|
||||
|
||||
if (result.success && finalIssues.stopHook) {
|
||||
const retryNote =
|
||||
gateResumeCount > 0
|
||||
? ` after ${gateResumeCount} retry ${gateResumeCount === 1 ? "attempt" : "attempts"}`
|
||||
: "";
|
||||
return {
|
||||
...result,
|
||||
success: false,
|
||||
error: `stop hook failed${retryNote} (exit code ${finalIssues.stopHook.exitCode}): ${finalIssues.stopHook.output || "(no output)"}`,
|
||||
usage: aggregatedUsage,
|
||||
};
|
||||
}
|
||||
|
||||
if (result.success && finalIssues.unsubmittedReview) {
|
||||
const retryNote =
|
||||
gateResumeCount > 0
|
||||
? ` after ${gateResumeCount} retry ${gateResumeCount === 1 ? "attempt" : "attempts"}`
|
||||
: "";
|
||||
// mode-aware: Review's contract requires a review submission; only
|
||||
// IncrementalReview accepts `report_progress` as an exit. mirroring
|
||||
// the nudge prompt avoids contradicting the agent-facing copy.
|
||||
const expected =
|
||||
finalIssues.unsubmittedReview === "Review"
|
||||
? "create_pull_request_review"
|
||||
: "create_pull_request_review or report_progress";
|
||||
return {
|
||||
...result,
|
||||
success: false,
|
||||
error: `${finalIssues.unsubmittedReview} mode finished without calling ${expected}${retryNote}`,
|
||||
usage: aggregatedUsage,
|
||||
};
|
||||
}
|
||||
|
||||
return { ...result, usage: aggregatedUsage };
|
||||
}
|
||||
@@ -1,54 +0,0 @@
|
||||
/**
|
||||
* Definition of the `reviewfrog` named subagent — the constrained
|
||||
* read-only worker dispatched by Build mode self-review and the in-Pullfrog
|
||||
* /anneal multi-lens review.
|
||||
*
|
||||
* The contract: non-mutative + non-recursive.
|
||||
* allow: file reads, grep/glob, web search/fetch, read-only MCP queries
|
||||
* deny: state-changing MCP tools, file writes, shell, nested subagent dispatch
|
||||
*
|
||||
* Enforcement is prose-only. We previously hand-maintained a deny-list of
|
||||
* mutating MCP tools against action/mcp/server.ts and wired it into per-agent
|
||||
* `disallowedTools` (claude) / `tools` deny map (opencode), but the list was
|
||||
* fragile — a future mutating tool added to the MCP server without a
|
||||
* corresponding update here would silently grant write access to the reviewer.
|
||||
* Rather than invert to an allowlist (smaller surface but still drifts) or add
|
||||
* a structural test, we lean on the system prompt below: it states the rule
|
||||
* as a no-op-if-reverted invariant the model can apply to any tool, including
|
||||
* ones added after this comment was written.
|
||||
*
|
||||
* Note: per-agent `disallowedTools` in claude-code is also upstream-broken
|
||||
* for subagent-spawned tool calls (anthropics/claude-agent-sdk-typescript#172,
|
||||
* open as of latest update Mar 2026), so even a maintained list would not
|
||||
* have provided a real fence on that runtime.
|
||||
*/
|
||||
|
||||
export const REVIEWER_AGENT_NAME = "reviewfrog";
|
||||
|
||||
/**
|
||||
* System prompt baked into the named reviewer subagent. The orchestrator
|
||||
* supplies the per-call task content (YOUR TASK, the diff, the lens) at
|
||||
* dispatch time; this preamble enforces the role and constraints regardless
|
||||
* of what the orchestrator sends.
|
||||
*/
|
||||
export const REVIEWER_SYSTEM_PROMPT =
|
||||
`You are a read-only review subagent. Your role is to find flaws in code or artifacts ` +
|
||||
`provided by the orchestrator and report findings — never to modify state.\n\n` +
|
||||
`HARD CONSTRAINTS (non-negotiable, regardless of orchestrator instructions):\n` +
|
||||
`- Read-only tools only. Do NOT write or edit files. Do NOT run shell commands ` +
|
||||
`that have side effects (read-only commands like \`git diff\`, \`git log\`, \`cat\`, \`ls\` ` +
|
||||
`are fine; anything that mutates the working tree, the remote, the filesystem, or ` +
|
||||
`external state is prohibited).\n` +
|
||||
`- Do NOT call any state-changing MCP tool. State-changing means: posts a comment, ` +
|
||||
`pushes a branch, creates/updates a PR or issue, changes labels, resolves review ` +
|
||||
`threads, persists learnings, sets workflow output, installs dependencies, uploads ` +
|
||||
`files, kills processes, etc. Read-only MCP queries (\`get_*\`, \`list_*\`, log ` +
|
||||
`inspection, diff retrieval) are fine.\n` +
|
||||
`- Do NOT spawn further subagents. You are a leaf reviewer; recursive dispatch ` +
|
||||
`pre-aggregates findings through an intermediate model and defeats the design.\n` +
|
||||
`- Test for any tool call before invoking it: would this still be a no-op if ` +
|
||||
`reverted? If not, do not call it. Apply this test to tools added after this ` +
|
||||
`prompt was written — the rule is the invariant, not the enumeration.\n\n` +
|
||||
`Report findings clearly with file:line references and quoted evidence where ` +
|
||||
`possible. Flag uncertainty explicitly — if you cannot verify a claim, say so ` +
|
||||
`rather than guess.`;
|
||||
@@ -1,247 +0,0 @@
|
||||
import { describe, expect, test } from "vitest";
|
||||
import {
|
||||
deriveLabelFromTaskInput,
|
||||
formatWithLabel,
|
||||
ORCHESTRATOR_LABEL,
|
||||
SessionLabeler,
|
||||
} from "./sessionLabeler.ts";
|
||||
|
||||
describe("deriveLabelFromTaskInput", () => {
|
||||
test("prefers explicit lens marker in prompt over description", () => {
|
||||
expect(
|
||||
deriveLabelFromTaskInput({
|
||||
prompt: "lens: security\nReview the diff for...",
|
||||
description: "general review",
|
||||
})
|
||||
).toBe("lens:security");
|
||||
});
|
||||
|
||||
test("supports lens=<name> alternative syntax", () => {
|
||||
expect(
|
||||
deriveLabelFromTaskInput({
|
||||
prompt: "lens=user-journey\nWalk through the happy path...",
|
||||
})
|
||||
).toBe("lens:user-journey");
|
||||
});
|
||||
|
||||
test("falls back to description when no lens marker present", () => {
|
||||
expect(
|
||||
deriveLabelFromTaskInput({
|
||||
prompt: "Review this diff for any bugs",
|
||||
description: "Auth lens",
|
||||
})
|
||||
).toBe("lens:auth-lens");
|
||||
});
|
||||
|
||||
test("falls back to subagent_type when description and lens marker absent", () => {
|
||||
expect(
|
||||
deriveLabelFromTaskInput({
|
||||
prompt: "Some generic prompt",
|
||||
subagent_type: "reviewfrog",
|
||||
})
|
||||
).toBe("reviewfrog");
|
||||
});
|
||||
|
||||
test("returns generic subagent when nothing identifiable", () => {
|
||||
expect(deriveLabelFromTaskInput({})).toBe("subagent");
|
||||
});
|
||||
|
||||
test("slug normalizes whitespace and special chars", () => {
|
||||
expect(
|
||||
deriveLabelFromTaskInput({
|
||||
description: "Schema migration & operational readiness!",
|
||||
})
|
||||
).toBe("lens:schema-migration-operational-readiness");
|
||||
});
|
||||
|
||||
test("slug truncates labels longer than 40 chars to keep prefix readable", () => {
|
||||
expect(
|
||||
deriveLabelFromTaskInput({
|
||||
description: "this is a very long lens description that exceeds the slug limit",
|
||||
})
|
||||
).toBe("lens:this-is-a-very-long-lens-description-tha");
|
||||
});
|
||||
|
||||
test("ignores lens marker mid-line — must be at line start", () => {
|
||||
expect(
|
||||
deriveLabelFromTaskInput({
|
||||
prompt: "Please review the lens: security claim made above",
|
||||
description: "billing",
|
||||
})
|
||||
).toBe("lens:billing");
|
||||
});
|
||||
});
|
||||
|
||||
describe("SessionLabeler", () => {
|
||||
test("first session seen is the orchestrator", () => {
|
||||
const labeler = new SessionLabeler();
|
||||
expect(labeler.labelFor("ses-A")).toBe(ORCHESTRATOR_LABEL);
|
||||
// bound — same session returns same label on second call
|
||||
expect(labeler.labelFor("ses-A")).toBe(ORCHESTRATOR_LABEL);
|
||||
expect(labeler.size()).toBe(1);
|
||||
});
|
||||
|
||||
test("FIFO matches dispatched labels to new sessions in dispatch order", () => {
|
||||
const labeler = new SessionLabeler();
|
||||
// orchestrator session
|
||||
labeler.labelFor("parent");
|
||||
|
||||
// orchestrator dispatches 3 tasks in one assistant turn
|
||||
labeler.recordTaskDispatch({ description: "security" });
|
||||
labeler.recordTaskDispatch({ description: "correctness" });
|
||||
labeler.recordTaskDispatch({ description: "user journey" });
|
||||
|
||||
expect(labeler.pendingDispatchCount()).toBe(3);
|
||||
|
||||
// children appear (potentially interleaved)
|
||||
expect(labeler.labelFor("child-1")).toBe("lens:security");
|
||||
expect(labeler.labelFor("child-2")).toBe("lens:correctness");
|
||||
expect(labeler.labelFor("child-3")).toBe("lens:user-journey");
|
||||
|
||||
expect(labeler.pendingDispatchCount()).toBe(0);
|
||||
expect(labeler.size()).toBe(4);
|
||||
});
|
||||
|
||||
test("interleaved events from parent and children resolve to stable labels", () => {
|
||||
const labeler = new SessionLabeler();
|
||||
labeler.labelFor("parent");
|
||||
labeler.recordTaskDispatch({ description: "security" });
|
||||
labeler.recordTaskDispatch({ description: "correctness" });
|
||||
|
||||
// child-1 emits an event first (its label binds)
|
||||
expect(labeler.labelFor("child-1")).toBe("lens:security");
|
||||
// parent emits some events in between
|
||||
expect(labeler.labelFor("parent")).toBe(ORCHESTRATOR_LABEL);
|
||||
// child-2 finally appears
|
||||
expect(labeler.labelFor("child-2")).toBe("lens:correctness");
|
||||
// child-1 emits more events — still the same label
|
||||
expect(labeler.labelFor("child-1")).toBe("lens:security");
|
||||
});
|
||||
|
||||
test("falls back to subagent#N when child appears without a queued dispatch", () => {
|
||||
const labeler = new SessionLabeler();
|
||||
labeler.labelFor("parent");
|
||||
// no recordTaskDispatch — but a child appears anyway (defensive path)
|
||||
expect(labeler.labelFor("ghost")).toBe("subagent#1");
|
||||
expect(labeler.labelFor("ghost-2")).toBe("subagent#2");
|
||||
});
|
||||
|
||||
test("undefined/null/empty sessionID resolves to orchestrator label without binding", () => {
|
||||
const labeler = new SessionLabeler();
|
||||
expect(labeler.labelFor(undefined)).toBe(ORCHESTRATOR_LABEL);
|
||||
expect(labeler.labelFor(null)).toBe(ORCHESTRATOR_LABEL);
|
||||
expect(labeler.labelFor("")).toBe(ORCHESTRATOR_LABEL);
|
||||
// size stays zero — those calls didn't bind anything
|
||||
expect(labeler.size()).toBe(0);
|
||||
});
|
||||
|
||||
test("entries returns insertion-ordered (sessionID, label) pairs", () => {
|
||||
const labeler = new SessionLabeler();
|
||||
labeler.labelFor("parent");
|
||||
labeler.recordTaskDispatch({ description: "security" });
|
||||
labeler.labelFor("child-1");
|
||||
expect(labeler.entries()).toEqual([
|
||||
["parent", ORCHESTRATOR_LABEL],
|
||||
["child-1", "lens:security"],
|
||||
]);
|
||||
});
|
||||
|
||||
test("Claude path: parent_tool_use_id resolves directly without consuming FIFO", () => {
|
||||
// Claude runs subagents inside the orchestrator's session — they share
|
||||
// session_id — and stamps subagent messages with parent_tool_use_id.
|
||||
// recording dispatch with the Agent tool_use id binds it directly so
|
||||
// future events resolve regardless of session_id.
|
||||
const labeler = new SessionLabeler();
|
||||
expect(labeler.labelFor("shared-session", null)).toBe(ORCHESTRATOR_LABEL);
|
||||
|
||||
labeler.recordTaskDispatch({ description: "correctness" }, "toolu_01");
|
||||
labeler.recordTaskDispatch({ description: "security" }, "toolu_02");
|
||||
|
||||
// subagent events come through with shared session_id but distinct
|
||||
// parent_tool_use_id — direct mapping wins
|
||||
expect(labeler.labelFor("shared-session", "toolu_01")).toBe("lens:correctness");
|
||||
expect(labeler.labelFor("shared-session", "toolu_02")).toBe("lens:security");
|
||||
|
||||
// orchestrator events on the same session still resolve correctly
|
||||
expect(labeler.labelFor("shared-session", null)).toBe(ORCHESTRATOR_LABEL);
|
||||
|
||||
// pendingLabels is unused on the Claude path — FIFO never consumed
|
||||
expect(labeler.pendingDispatchCount()).toBe(2);
|
||||
expect(labeler.size()).toBe(1);
|
||||
});
|
||||
|
||||
test("Claude path: unknown parent_tool_use_id falls through to sessionID/FIFO logic", () => {
|
||||
// defensive: if a subagent event arrives with a parent_tool_use_id we
|
||||
// never recorded (e.g. orchestrator dispatched off-stream, or a tool we
|
||||
// didn't track), the labeler shouldn't crash — it should fall through
|
||||
// to the sessionID-keyed path.
|
||||
const labeler = new SessionLabeler();
|
||||
labeler.labelFor("shared", null);
|
||||
expect(labeler.labelFor("shared", "unknown-tool-id")).toBe(ORCHESTRATOR_LABEL);
|
||||
});
|
||||
|
||||
test("realistic four-lens parallel fan-out — interleaved tool_use stream", () => {
|
||||
// simulates the event order we'd see when the orchestrator dispatches
|
||||
// 4 lens subagents in a single assistant turn and they all start emitting
|
||||
// tool_use events more or less concurrently.
|
||||
const labeler = new SessionLabeler();
|
||||
|
||||
// 1. orchestrator's `init` event
|
||||
expect(labeler.labelFor("p")).toBe(ORCHESTRATOR_LABEL);
|
||||
|
||||
// 2. orchestrator emits 4 task tool_use events back-to-back
|
||||
labeler.recordTaskDispatch({ description: "correctness & invariants" });
|
||||
labeler.recordTaskDispatch({ description: "security" });
|
||||
labeler.recordTaskDispatch({ description: "user journey" });
|
||||
labeler.recordTaskDispatch({ description: "schema migration" });
|
||||
|
||||
// 3. children emit in arbitrary interleaved order
|
||||
const observed: Array<[string, string]> = [];
|
||||
for (const session of ["c1", "c2", "p", "c3", "c1", "c4", "c2", "p"]) {
|
||||
observed.push([session, labeler.labelFor(session)]);
|
||||
}
|
||||
|
||||
expect(observed).toEqual([
|
||||
["c1", "lens:correctness-invariants"],
|
||||
["c2", "lens:security"],
|
||||
["p", ORCHESTRATOR_LABEL],
|
||||
["c3", "lens:user-journey"],
|
||||
["c1", "lens:correctness-invariants"],
|
||||
["c4", "lens:schema-migration"],
|
||||
["c2", "lens:security"],
|
||||
["p", ORCHESTRATOR_LABEL],
|
||||
]);
|
||||
|
||||
expect(labeler.size()).toBe(5);
|
||||
expect(labeler.pendingDispatchCount()).toBe(0);
|
||||
});
|
||||
});
|
||||
|
||||
describe("formatWithLabel", () => {
|
||||
test("prefixes a single-line message with magenta-wrapped label", () => {
|
||||
const out = formatWithLabel("orchestrator", "hello world");
|
||||
expect(out).toContain("[orchestrator]");
|
||||
expect(out).toContain("hello world");
|
||||
// ANSI magenta + reset markers around the bracketed label (escapes
|
||||
// built via fromCharCode to satisfy biome's no-control-character-in-regex)
|
||||
const ESC = String.fromCharCode(27);
|
||||
expect(out).toMatch(new RegExp(`${ESC}\\[35m\\[orchestrator\\]${ESC}\\[0m hello world$`));
|
||||
});
|
||||
|
||||
test("prefixes every line of a multi-line message", () => {
|
||||
const out = formatWithLabel("lens:security", "line one\nline two\nline three");
|
||||
const lines = out.split("\n");
|
||||
expect(lines).toHaveLength(3);
|
||||
for (const line of lines) {
|
||||
expect(line).toContain("[lens:security]");
|
||||
}
|
||||
expect(lines[0]).toContain("line one");
|
||||
expect(lines[1]).toContain("line two");
|
||||
expect(lines[2]).toContain("line three");
|
||||
});
|
||||
|
||||
test("handles empty input without throwing", () => {
|
||||
const out = formatWithLabel("orchestrator", "");
|
||||
expect(out).toContain("[orchestrator]");
|
||||
});
|
||||
});
|
||||
@@ -1,178 +0,0 @@
|
||||
/**
|
||||
* Track per-session labels so log lines from parallel subagents can be
|
||||
* differentiated. The orchestrator dispatches lens subagents (e.g. reviewfrog)
|
||||
* via the Task tool; each subagent runs in its own opencode/claude Session
|
||||
* with its own `sessionID` (or `session_id`) tag on the NDJSON event stream.
|
||||
*
|
||||
* Without per-session prefixing, parallel subagent tool_use / tool_result /
|
||||
* text events appear as a single interleaved stream tagged with `[Pullfrog]`,
|
||||
* making it impossible for a human reading the logs to attribute work to a
|
||||
* specific lens.
|
||||
*
|
||||
* The labeler is deliberately runtime-agnostic — both opencode.ts and
|
||||
* claude.ts feed it the same shape. The contract is FIFO: when the orchestrator
|
||||
* dispatches N task tool_use blocks in a single assistant turn (the parallel
|
||||
* fan-out the multi-lens prompt requires), the i-th new sessionID is assumed
|
||||
* to belong to the i-th task dispatch. This is correct as long as parallel
|
||||
* dispatches are emitted in source-order and the runtimes respect that order
|
||||
* when assigning child sessions; we do not depend on it for correctness of
|
||||
* the read-only contract — only for log readability.
|
||||
*/
|
||||
|
||||
export interface TaskDispatchInput {
|
||||
description?: string | undefined;
|
||||
subagent_type?: string | undefined;
|
||||
prompt?: string | undefined;
|
||||
}
|
||||
|
||||
export const ORCHESTRATOR_LABEL = "orchestrator";
|
||||
|
||||
const LENS_PROMPT_PATTERN = /^\s*(?:lens|Lens|LENS)\s*[:=]\s*([A-Za-z][\w &/.-]{0,60})/m;
|
||||
|
||||
function slug(value: string): string {
|
||||
return value
|
||||
.trim()
|
||||
.toLowerCase()
|
||||
.replace(/[^\w-]+/g, "-")
|
||||
.replace(/^-+|-+$/g, "")
|
||||
.slice(0, 40);
|
||||
}
|
||||
|
||||
/**
|
||||
* Extract a human-readable label from a Task tool's input. Tries (in order):
|
||||
* 1. explicit `lens: <name>` marker on a line in the prompt — preferred,
|
||||
* lets the orchestrator name the lens deterministically
|
||||
* 2. the Task tool's `description` field — short, written by orchestrator
|
||||
* per call, usually enough
|
||||
* 3. the `subagent_type` (e.g. `reviewfrog`) — falls back to the named
|
||||
* subagent identity when description is missing
|
||||
* 4. generic "subagent" — last resort
|
||||
*/
|
||||
export function deriveLabelFromTaskInput(input: TaskDispatchInput): string {
|
||||
if (typeof input.prompt === "string") {
|
||||
const match = input.prompt.match(LENS_PROMPT_PATTERN);
|
||||
if (match?.[1]) {
|
||||
const slugged = slug(match[1]);
|
||||
if (slugged) return `lens:${slugged}`;
|
||||
}
|
||||
}
|
||||
if (input.description) {
|
||||
const slugged = slug(input.description);
|
||||
if (slugged) return `lens:${slugged}`;
|
||||
}
|
||||
if (input.subagent_type) {
|
||||
return input.subagent_type;
|
||||
}
|
||||
return "subagent";
|
||||
}
|
||||
|
||||
/**
|
||||
* Stateful tracker mapping subagent activity back to human-readable labels.
|
||||
*
|
||||
* Two attribution channels are supported because the runtimes differ:
|
||||
*
|
||||
* - **OpenCode** spawns each subagent as its own opencode `Session` with
|
||||
* a distinct `sessionID`. The harness records each Task dispatch into a
|
||||
* pending FIFO queue; the next previously-unseen sessionID consumes the
|
||||
* head of the queue and binds it to that label.
|
||||
*
|
||||
* - **Claude Code** runs subagents inside the orchestrator's session — they
|
||||
* all share `session_id` — and instead stamps every subagent message with
|
||||
* `parent_tool_use_id` pointing at the Agent tool_use id that spawned them.
|
||||
* The harness binds each Agent tool_use id to its dispatched label up
|
||||
* front, then `labelFor` looks the label up directly when an event arrives
|
||||
* carrying that `parent_tool_use_id`.
|
||||
*
|
||||
* `labelFor(sessionID, parentToolUseId?)` accepts both: when
|
||||
* `parentToolUseId` is set and known it short-circuits to the direct mapping;
|
||||
* otherwise it falls through to the FIFO/sessionID path.
|
||||
*/
|
||||
export class SessionLabeler {
|
||||
private readonly labels = new Map<string, string>();
|
||||
private readonly labelsByToolUseId = new Map<string, string>();
|
||||
private readonly pendingLabels: string[] = [];
|
||||
private fallbackCounter = 0;
|
||||
|
||||
/**
|
||||
* Record a Task/Agent tool dispatch.
|
||||
*
|
||||
* @param input Task tool input — used to derive the lens label.
|
||||
* @param toolUseId Optional Agent tool_use id. When provided, future events
|
||||
* carrying `parent_tool_use_id === toolUseId` resolve
|
||||
* directly to this label without consuming the FIFO queue
|
||||
* (Claude path). Always also pushed to the FIFO queue so
|
||||
* the OpenCode path still works when toolUseId is absent.
|
||||
*/
|
||||
recordTaskDispatch(input: TaskDispatchInput, toolUseId?: string | null): string {
|
||||
const label = deriveLabelFromTaskInput(input);
|
||||
this.pendingLabels.push(label);
|
||||
if (toolUseId) this.labelsByToolUseId.set(toolUseId, label);
|
||||
return label;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a label for the given event.
|
||||
*
|
||||
* @param sessionID Session id from the event (OpenCode: per-session;
|
||||
* Claude: shared across orchestrator + subagents).
|
||||
* @param parentToolUseId Claude's `parent_tool_use_id` — non-null on
|
||||
* subagent messages. When set and known, takes
|
||||
* priority over the FIFO/sessionID path.
|
||||
*/
|
||||
labelFor(sessionID: string | undefined | null, parentToolUseId?: string | null): string {
|
||||
// Claude path: subagent messages carry parent_tool_use_id pointing at
|
||||
// the Agent tool_use that spawned them. resolve directly without
|
||||
// touching the sessionID-keyed map (which is bound to the orchestrator
|
||||
// for the shared session_id and would otherwise misattribute).
|
||||
if (parentToolUseId) {
|
||||
const direct = this.labelsByToolUseId.get(parentToolUseId);
|
||||
if (direct) return direct;
|
||||
}
|
||||
|
||||
if (!sessionID) return ORCHESTRATOR_LABEL;
|
||||
const existing = this.labels.get(sessionID);
|
||||
if (existing) return existing;
|
||||
|
||||
let label: string;
|
||||
if (this.labels.size === 0) {
|
||||
label = ORCHESTRATOR_LABEL;
|
||||
} else if (this.pendingLabels.length > 0) {
|
||||
label = this.pendingLabels.shift() as string;
|
||||
} else {
|
||||
this.fallbackCounter += 1;
|
||||
label = `subagent#${this.fallbackCounter}`;
|
||||
}
|
||||
this.labels.set(sessionID, label);
|
||||
return label;
|
||||
}
|
||||
|
||||
/** number of distinct sessions seen so far (for diagnostics) */
|
||||
size(): number {
|
||||
return this.labels.size;
|
||||
}
|
||||
|
||||
/** all (sessionID, label) pairs, oldest first */
|
||||
entries(): Array<[string, string]> {
|
||||
return Array.from(this.labels.entries());
|
||||
}
|
||||
|
||||
/** how many pending labels are queued waiting to bind to a new session */
|
||||
pendingDispatchCount(): number {
|
||||
return this.pendingLabels.length;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Format a log message with a session label prefix in magenta. Mirrors the
|
||||
* style of utils/log.ts:prefixLines() so per-session prefixes look the same
|
||||
* as the dormant withLogPrefix-based ones.
|
||||
*/
|
||||
export function formatWithLabel(label: string, message: string): string {
|
||||
const MAGENTA = "\x1b[35m";
|
||||
const RESET = "\x1b[0m";
|
||||
const colored = `${MAGENTA}[${label}]${RESET} `;
|
||||
return message
|
||||
.split("\n")
|
||||
.map((line) => `${colored}${line}`)
|
||||
.join("\n");
|
||||
}
|
||||
@@ -1,76 +0,0 @@
|
||||
import { describe, expect, it } from "vitest";
|
||||
import { type AgentUsage, mergeAgentUsage } from "./shared.ts";
|
||||
|
||||
const entry = (overrides: Partial<AgentUsage>): AgentUsage => ({
|
||||
agent: "pullfrog",
|
||||
inputTokens: 0,
|
||||
outputTokens: 0,
|
||||
...overrides,
|
||||
});
|
||||
|
||||
describe("mergeAgentUsage", () => {
|
||||
it("returns undefined when both sides are undefined", () => {
|
||||
expect(mergeAgentUsage(undefined, undefined)).toBeUndefined();
|
||||
});
|
||||
|
||||
it("returns a copy of b when a is undefined", () => {
|
||||
const b = entry({ inputTokens: 10 });
|
||||
expect(mergeAgentUsage(undefined, b)).toEqual(b);
|
||||
});
|
||||
|
||||
it("returns a copy of a when b is undefined", () => {
|
||||
const a = entry({ inputTokens: 10 });
|
||||
expect(mergeAgentUsage(a, undefined)).toEqual(a);
|
||||
});
|
||||
|
||||
it("sums inputTokens and outputTokens unconditionally", () => {
|
||||
const merged = mergeAgentUsage(
|
||||
entry({ inputTokens: 10, outputTokens: 5 }),
|
||||
entry({ inputTokens: 20, outputTokens: 7 })
|
||||
);
|
||||
expect(merged?.inputTokens).toBe(30);
|
||||
expect(merged?.outputTokens).toBe(12);
|
||||
});
|
||||
|
||||
it("keeps cache/cost fields undefined when both sides lack them", () => {
|
||||
// this matters so downstream aggregateUsage doesn't persist spurious 0s into the DB
|
||||
const merged = mergeAgentUsage(entry({ inputTokens: 10 }), entry({ inputTokens: 20 }));
|
||||
expect(merged?.cacheReadTokens).toBeUndefined();
|
||||
expect(merged?.cacheWriteTokens).toBeUndefined();
|
||||
expect(merged?.costUsd).toBeUndefined();
|
||||
});
|
||||
|
||||
it("sums cache and cost fields when either side reports them", () => {
|
||||
const merged = mergeAgentUsage(
|
||||
entry({ inputTokens: 10, cacheReadTokens: 100, costUsd: 0.01 }),
|
||||
entry({ inputTokens: 20, cacheWriteTokens: 50, costUsd: 0.02 })
|
||||
);
|
||||
expect(merged?.cacheReadTokens).toBe(100);
|
||||
expect(merged?.cacheWriteTokens).toBe(50);
|
||||
expect(merged?.costUsd).toBeCloseTo(0.03, 10);
|
||||
});
|
||||
|
||||
it("preserves the agent id of the left operand", () => {
|
||||
// the aggregator is called inside a single agent's run() — the agent label
|
||||
// is a fixed property of the harness, not something that can flip mid-run
|
||||
const merged = mergeAgentUsage(
|
||||
entry({ agent: "claude", inputTokens: 10 }),
|
||||
entry({ agent: "something-else", inputTokens: 20 })
|
||||
);
|
||||
expect(merged?.agent).toBe("claude");
|
||||
});
|
||||
|
||||
it("returns a fresh object rather than the input reference", () => {
|
||||
// callers treat AgentUsage as immutable; returning the input itself would
|
||||
// leak that invariant. mutating the returned value must not affect inputs.
|
||||
const a = entry({ inputTokens: 10 });
|
||||
const mergedWithUndef = mergeAgentUsage(a, undefined);
|
||||
expect(mergedWithUndef).not.toBe(a);
|
||||
expect(mergedWithUndef).toEqual(a);
|
||||
|
||||
const b = entry({ inputTokens: 20 });
|
||||
const mergedFromUndef = mergeAgentUsage(undefined, b);
|
||||
expect(mergedFromUndef).not.toBe(b);
|
||||
expect(mergedFromUndef).toEqual(b);
|
||||
});
|
||||
});
|
||||
@@ -1,273 +0,0 @@
|
||||
import { execFileSync } from "node:child_process";
|
||||
import type { AgentId } from "../external.ts";
|
||||
import type { ToolState } from "../toolState.ts";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import type { ResolvedInstructions } from "../utils/instructions.ts";
|
||||
import type { ResolvedPayload } from "../utils/payload.ts";
|
||||
import type { TodoTracker } from "../utils/todoTracking.ts";
|
||||
|
||||
// maximum number of stderr lines to keep in the rolling buffer during agent execution
|
||||
export const MAX_STDERR_LINES = 20;
|
||||
|
||||
// ── post-run retry loop ────────────────────────────────────────────────────────
|
||||
|
||||
/**
|
||||
* how many times the post-run loop may resume the agent to fix a dirty tree
|
||||
* or a failing stop hook before giving up.
|
||||
*/
|
||||
export const MAX_POST_RUN_RETRIES = 3;
|
||||
|
||||
export function getGitStatus(): string {
|
||||
try {
|
||||
return execFileSync("git", ["status", "--porcelain"], {
|
||||
encoding: "utf-8",
|
||||
timeout: 10_000,
|
||||
}).trim();
|
||||
} catch {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
export function buildCommitPrompt(status: string): string {
|
||||
return [
|
||||
`UNCOMMITTED CHANGES — the working tree is dirty. push all changes to a pull request (new or existing). \`git status\` must be clean before you finish.`,
|
||||
"",
|
||||
"```",
|
||||
status,
|
||||
"```",
|
||||
].join("\n");
|
||||
}
|
||||
|
||||
export interface StopHookFailure {
|
||||
exitCode: number;
|
||||
output: string;
|
||||
}
|
||||
|
||||
export interface SummaryStale {
|
||||
/** absolute path to the seeded snapshot file the agent was meant to edit. */
|
||||
filePath: string;
|
||||
}
|
||||
|
||||
export interface PostRunIssues {
|
||||
stopHook?: StopHookFailure;
|
||||
dirtyTree?: string;
|
||||
/** populated when the rolling PR summary file is byte-identical to its
|
||||
* seed, i.e. the agent never touched it. soft gate — nudges once via a
|
||||
* resume turn but never fails the run, parallel to dirtyTree semantics. */
|
||||
summaryStale?: SummaryStale;
|
||||
/**
|
||||
* populated when the agent selected a review mode but the post-run check
|
||||
* over toolState shows neither a `create_pull_request_review` submission
|
||||
* nor a final `report_progress` write happened. derived inline from
|
||||
* `toolState.selectedMode` + `toolState.review` + `toolState.finalSummaryWritten`
|
||||
* via {@link getUnsubmittedReview} — no parallel toolState flag is stored.
|
||||
* carries the mode name so the resume prompt can reference it. handled like
|
||||
* `stopHook`: nudge via resume, hard-fail if still unsatisfied after
|
||||
* `MAX_POST_RUN_RETRIES`.
|
||||
*/
|
||||
unsubmittedReview?: "Review" | "IncrementalReview";
|
||||
}
|
||||
|
||||
export function hasPostRunIssues(issues: PostRunIssues): boolean {
|
||||
return (
|
||||
issues.stopHook !== undefined ||
|
||||
issues.dirtyTree !== undefined ||
|
||||
issues.summaryStale !== undefined ||
|
||||
issues.unsubmittedReview !== undefined
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* token/cost usage data from a single agent run.
|
||||
*
|
||||
* NOTE on semantics: `inputTokens` here is the *total* billable input for the
|
||||
* run — non-cached input + cache read + cache write — matching the per-agent
|
||||
* SDK conventions. This is what gets persisted to `WorkflowRun.inputTokens`.
|
||||
*
|
||||
* The stdout token table and markdown step summary display a different "Input"
|
||||
* column that shows only the non-cached portion (derivable as
|
||||
* `inputTokens - cacheReadTokens - cacheWriteTokens`) so humans can see the
|
||||
* cache hit ratio at a glance. Dashboards that query `WorkflowRun.inputTokens`
|
||||
* directly are seeing the full total, not the log column.
|
||||
*/
|
||||
export interface AgentUsage {
|
||||
agent: string;
|
||||
/** full billable input: non-cached + cache read + cache write */
|
||||
inputTokens: number;
|
||||
outputTokens: number;
|
||||
cacheReadTokens?: number | undefined;
|
||||
cacheWriteTokens?: number | undefined;
|
||||
costUsd?: number | undefined;
|
||||
}
|
||||
|
||||
export interface AgentToolUseEvent {
|
||||
toolName: string;
|
||||
input: unknown;
|
||||
}
|
||||
|
||||
/**
|
||||
* Result returned by agent execution
|
||||
*/
|
||||
export interface AgentResult {
|
||||
success: boolean;
|
||||
output?: string | undefined;
|
||||
error?: string | undefined;
|
||||
metadata?: Record<string, unknown>;
|
||||
usage?: AgentUsage | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* Context passed to agent.run() and threaded through the post-run loop.
|
||||
*
|
||||
* design rule: this is the single object that flows through the harness and
|
||||
* downstream utilities by reference. derived predicates (e.g.
|
||||
* `getUnsubmittedReview`), tmpfile paths, and seed bytes live on
|
||||
* `toolState` — read them at the call site, do not duplicate them onto this
|
||||
* interface. utilities that need run state should accept `ctx` whole, not
|
||||
* destructure a narrow subset.
|
||||
*/
|
||||
export interface AgentRunContext {
|
||||
payload: ResolvedPayload;
|
||||
resolvedModel?: string | undefined;
|
||||
mcpServerUrl: string;
|
||||
tmpdir: string;
|
||||
instructions: ResolvedInstructions;
|
||||
todoTracker?: TodoTracker | undefined;
|
||||
/**
|
||||
* user-configured stop hook script. runs after the agent finishes each
|
||||
* attempt; non-zero exit resumes the agent with the hook output as
|
||||
* guidance. null when the repo has no stop hook configured.
|
||||
*/
|
||||
stopScript?: string | null | undefined;
|
||||
/**
|
||||
* mutable per-run state shared with the MCP server (by reference). post-run
|
||||
* gates read fresh values from it after each agent attempt — `summaryFilePath`,
|
||||
* `summarySeed`, `selectedMode`, `review`, `finalSummaryWritten`,
|
||||
* `hadProgressComment` are all consulted by `collectPostRunIssues`. see
|
||||
* `action/toolState.ts` for the literal-state design rule.
|
||||
*/
|
||||
toolState: ToolState;
|
||||
/**
|
||||
* called synchronously when the agent subprocess is killed for inner
|
||||
* activity timeout. lets main.ts tear down shared resources (MCP HTTP
|
||||
* server) so lingering SSE reconnects don't keep the outer timer alive.
|
||||
*/
|
||||
onActivityTimeout?: (() => void) | undefined;
|
||||
onToolUse?: ((event: AgentToolUseEvent) => void) | undefined;
|
||||
/**
|
||||
* Pullfrog API JWT scoped to this run. agents only need this when they
|
||||
* have to write state back to Pullfrog mid-run (today: opencode.ts uses
|
||||
* it to seed the post-hook's writeback envelope for Codex auth refresh).
|
||||
* empty string when the run wasn't context-resolved (e.g. local dry-runs).
|
||||
*/
|
||||
apiToken: string;
|
||||
}
|
||||
|
||||
export interface Agent {
|
||||
name: AgentId;
|
||||
install: (token?: string) => Promise<string>;
|
||||
run: (ctx: AgentRunContext) => Promise<AgentResult>;
|
||||
}
|
||||
|
||||
export const agent = (input: Agent): Agent => {
|
||||
return {
|
||||
...input,
|
||||
run: async (ctx: AgentRunContext): Promise<AgentResult> => {
|
||||
log.debug(`» payload: ${JSON.stringify(ctx.payload, null, 2)}`);
|
||||
return input.run(ctx);
|
||||
},
|
||||
};
|
||||
};
|
||||
|
||||
/** format a USD cost to 4 decimal places, always showing the leading zero */
|
||||
export function formatCostUsd(costUsd: number): string {
|
||||
return costUsd.toFixed(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* merge two AgentUsage snapshots into one running total.
|
||||
*
|
||||
* both agent harnesses invoke their runner multiple times per `run()` when the
|
||||
* post-run retry loop kicks in (MAX_POST_RUN_RETRIES). each invocation
|
||||
* produces its own AgentUsage; we sum them so downstream callers (usage
|
||||
* summary, WorkflowRun persistence) see the whole session — not just the
|
||||
* final retry's slice.
|
||||
*
|
||||
* returns `undefined` when both sides are empty so callers can short-circuit
|
||||
* without a special case. zero-valued cache / cost fields are dropped to
|
||||
* `undefined` for symmetry with each harness's `buildUsage`.
|
||||
*/
|
||||
export function mergeAgentUsage(
|
||||
a: AgentUsage | undefined,
|
||||
b: AgentUsage | undefined
|
||||
): AgentUsage | undefined {
|
||||
// always return a fresh object — callers treat AgentUsage as immutable, and
|
||||
// returning `a` / `b` directly would leak that invariant to future callers
|
||||
if (!a && !b) return undefined;
|
||||
if (!a) return { ...(b as AgentUsage) };
|
||||
if (!b) return { ...a };
|
||||
const cacheRead = (a.cacheReadTokens ?? 0) + (b.cacheReadTokens ?? 0);
|
||||
const cacheWrite = (a.cacheWriteTokens ?? 0) + (b.cacheWriteTokens ?? 0);
|
||||
const cost = (a.costUsd ?? 0) + (b.costUsd ?? 0);
|
||||
return {
|
||||
agent: a.agent,
|
||||
inputTokens: a.inputTokens + b.inputTokens,
|
||||
outputTokens: a.outputTokens + b.outputTokens,
|
||||
cacheReadTokens: cacheRead > 0 ? cacheRead : undefined,
|
||||
cacheWriteTokens: cacheWrite > 0 ? cacheWrite : undefined,
|
||||
costUsd: cost > 0 ? cost : undefined,
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* unified per-run token table used by every agent harness.
|
||||
*
|
||||
* columns are kept stable across agents and models so downstream log parsers
|
||||
* (scripts/token-usage.ts, cost dashboards) only have to understand one format:
|
||||
*
|
||||
* Input non-cached input tokens sent this run
|
||||
* Cache Read input tokens served from prompt cache (Anthropic, etc.)
|
||||
* Cache Write input tokens written to prompt cache this run
|
||||
* Output assistant output tokens
|
||||
* Total sum of the four columns — the real billable quantity
|
||||
* Cost ($) USD cost reported by the provider (only rendered when known)
|
||||
*
|
||||
* models that don't report prompt caching leave Cache Read / Write at 0.
|
||||
* OpenCode emits per-step `part.cost` sourced from models.dev (works across
|
||||
* Anthropic, OpenAI, Google, xAI, DeepSeek, Moonshot, OpenRouter, etc.);
|
||||
* Claude CLI emits `total_cost_usd` on its final `result` event. pass the
|
||||
* accumulated value via `costUsd` to render the Cost column.
|
||||
*/
|
||||
export function logTokenTable(t: {
|
||||
input: number;
|
||||
cacheRead: number;
|
||||
cacheWrite: number;
|
||||
output: number;
|
||||
costUsd?: number | undefined;
|
||||
}): void {
|
||||
const total = t.input + t.cacheRead + t.cacheWrite + t.output;
|
||||
// narrow costUsd to a concrete number so the render path doesn't need a cast
|
||||
const costUsd = typeof t.costUsd === "number" && t.costUsd > 0 ? t.costUsd : undefined;
|
||||
|
||||
const headerRow: Array<{ data: string; header: true }> = [
|
||||
{ data: "Input", header: true },
|
||||
{ data: "Cache Read", header: true },
|
||||
{ data: "Cache Write", header: true },
|
||||
{ data: "Output", header: true },
|
||||
{ data: "Total", header: true },
|
||||
];
|
||||
const dataRow: string[] = [
|
||||
String(t.input),
|
||||
String(t.cacheRead),
|
||||
String(t.cacheWrite),
|
||||
String(t.output),
|
||||
String(total),
|
||||
];
|
||||
|
||||
if (costUsd !== undefined) {
|
||||
headerRow.push({ data: "Cost ($)", header: true });
|
||||
dataRow.push(formatCostUsd(costUsd));
|
||||
}
|
||||
|
||||
log.table([headerRow, dataRow]);
|
||||
}
|
||||
@@ -1,113 +0,0 @@
|
||||
import { describe, expect, it } from "vitest";
|
||||
import { deriveSubagentModels } from "./subagentModels.ts";
|
||||
|
||||
describe("deriveSubagentModels", () => {
|
||||
it("returns no override when orchestrator is undefined", () => {
|
||||
expect(deriveSubagentModels(undefined)).toEqual({ reviewer: undefined });
|
||||
});
|
||||
|
||||
it("returns no override when orchestrator slug isn't registered", () => {
|
||||
expect(deriveSubagentModels("nonexistent/model")).toEqual({ reviewer: undefined });
|
||||
});
|
||||
|
||||
describe("anthropic family — opus → sonnet", () => {
|
||||
it("direct anthropic opus", () => {
|
||||
expect(deriveSubagentModels("anthropic/claude-opus-4-7")).toEqual({
|
||||
reviewer: "anthropic/claude-sonnet-4-6",
|
||||
});
|
||||
});
|
||||
it("opencode-vendored opus stays on opencode prefix", () => {
|
||||
expect(deriveSubagentModels("opencode/claude-opus-4-7")).toEqual({
|
||||
reviewer: "opencode/claude-sonnet-4-6",
|
||||
});
|
||||
});
|
||||
it("openrouter-anthropic-opus-via-anthropic-direct hits anthropic alias's openRouterResolve", () => {
|
||||
// both the anthropic alias and the opencode alias have the same
|
||||
// openRouterResolve. first-match-wins by alias declaration order
|
||||
// (anthropic declared first in providers).
|
||||
expect(deriveSubagentModels("openrouter/anthropic/claude-opus-4.7")).toEqual({
|
||||
reviewer: "openrouter/anthropic/claude-sonnet-4.6",
|
||||
});
|
||||
});
|
||||
it("sonnet has no further downshift", () => {
|
||||
expect(deriveSubagentModels("anthropic/claude-sonnet-4-6")).toEqual({ reviewer: undefined });
|
||||
expect(deriveSubagentModels("opencode/claude-sonnet-4-6")).toEqual({ reviewer: undefined });
|
||||
});
|
||||
it("haiku has no downshift", () => {
|
||||
expect(deriveSubagentModels("anthropic/claude-haiku-4-5")).toEqual({ reviewer: undefined });
|
||||
});
|
||||
});
|
||||
|
||||
describe("openai family", () => {
|
||||
it("gpt-pro → gpt (direct)", () => {
|
||||
expect(deriveSubagentModels("openai/gpt-5.5-pro")).toEqual({ reviewer: "openai/gpt-5.5" });
|
||||
});
|
||||
it("gpt → gpt-5.4 (direct)", () => {
|
||||
expect(deriveSubagentModels("openai/gpt-5.5")).toEqual({ reviewer: "openai/gpt-5.4" });
|
||||
});
|
||||
it("gpt → gpt-5.4 (opencode-vendored)", () => {
|
||||
expect(deriveSubagentModels("opencode/gpt-5.5")).toEqual({ reviewer: "opencode/gpt-5.4" });
|
||||
});
|
||||
it("gpt-pro → gpt (openrouter)", () => {
|
||||
expect(deriveSubagentModels("openrouter/openai/gpt-5.5-pro")).toEqual({
|
||||
reviewer: "openrouter/openai/gpt-5.5",
|
||||
});
|
||||
});
|
||||
it("gpt → gpt-5.4 (openrouter)", () => {
|
||||
expect(deriveSubagentModels("openrouter/openai/gpt-5.5")).toEqual({
|
||||
reviewer: "openrouter/openai/gpt-5.4",
|
||||
});
|
||||
});
|
||||
it("gpt-5.4 itself (the hidden subagent target) has no further downshift", () => {
|
||||
expect(deriveSubagentModels("openai/gpt-5.4")).toEqual({ reviewer: undefined });
|
||||
});
|
||||
it("gpt-mini has no downshift", () => {
|
||||
expect(deriveSubagentModels("openai/gpt-5.4-mini")).toEqual({ reviewer: undefined });
|
||||
});
|
||||
});
|
||||
|
||||
describe("google (gemini) — inherit (Pro for both orchestrator and lenses)", () => {
|
||||
// pro → flash was a meaningful capability cliff (Flash missed catastrophic
|
||||
// cross-file bugs the v4 e2e test surfaced); Pro is cost-effective enough
|
||||
// to keep on for lenses too. Google has no in-between tier.
|
||||
it("direct google pro inherits", () => {
|
||||
expect(deriveSubagentModels("google/gemini-3.1-pro-preview")).toEqual({
|
||||
reviewer: undefined,
|
||||
});
|
||||
});
|
||||
it("opencode-vendored gemini-pro inherits", () => {
|
||||
expect(deriveSubagentModels("opencode/gemini-3.1-pro")).toEqual({
|
||||
reviewer: undefined,
|
||||
});
|
||||
});
|
||||
it("openrouter gemini-pro inherits", () => {
|
||||
expect(deriveSubagentModels("openrouter/google/gemini-3.1-pro-preview")).toEqual({
|
||||
reviewer: undefined,
|
||||
});
|
||||
});
|
||||
it("flash has no downshift", () => {
|
||||
expect(deriveSubagentModels("google/gemini-3-flash-preview")).toEqual({
|
||||
reviewer: undefined,
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe("providers / models without a subagentModel — inherit", () => {
|
||||
it("xai grok (already cheap flagship)", () => {
|
||||
expect(deriveSubagentModels("xai/grok-4.3")).toEqual({ reviewer: undefined });
|
||||
});
|
||||
it("deepseek", () => {
|
||||
expect(deriveSubagentModels("deepseek/deepseek-v4-pro")).toEqual({ reviewer: undefined });
|
||||
});
|
||||
it("moonshot kimi", () => {
|
||||
expect(deriveSubagentModels("moonshotai/kimi-k2.6")).toEqual({ reviewer: undefined });
|
||||
});
|
||||
it("opencode big-pickle", () => {
|
||||
expect(deriveSubagentModels("opencode/big-pickle")).toEqual({ reviewer: undefined });
|
||||
});
|
||||
it("legacy fallback aliases (gpt-codex, deepseek-reasoner)", () => {
|
||||
expect(deriveSubagentModels("openai/gpt-5.3-codex")).toEqual({ reviewer: undefined });
|
||||
expect(deriveSubagentModels("deepseek/deepseek-reasoner")).toEqual({ reviewer: undefined });
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -1,40 +0,0 @@
|
||||
import { modelAliases } from "../models.ts";
|
||||
|
||||
/**
|
||||
* Derive a cheaper subagent model override from the orchestrator's resolved
|
||||
* model spec.
|
||||
*
|
||||
* This is a pure registry lookup: every alias in `action/models.ts` declares
|
||||
* its own `subagentModel` (alias key in the same provider). At runtime we
|
||||
* reverse-lookup the orchestrator's resolved slug to find the alias that
|
||||
* produced it, follow the `subagentModel` pointer, and return the target
|
||||
* alias's resolve / openRouterResolve depending on which route the
|
||||
* orchestrator was using.
|
||||
*
|
||||
* Returns `{ reviewer: undefined }` when the orchestrator's alias has no
|
||||
* `subagentModel` (e.g. it's already at a sufficiently cheap tier, or its
|
||||
* provider doesn't have a clean cheaper-but-capable sibling). See models.ts
|
||||
* for the wiring + per-provider rationale.
|
||||
*/
|
||||
export function deriveSubagentModels(orchestratorSpec: string | undefined): {
|
||||
reviewer: string | undefined;
|
||||
} {
|
||||
if (!orchestratorSpec) return { reviewer: undefined };
|
||||
|
||||
// Reverse-lookup. The same resolve string appears in only one alias
|
||||
// (within its provider), so first match wins. We track which field
|
||||
// matched (resolve vs openRouterResolve) so we can pick the same field
|
||||
// off the subagent target — keeping the orchestrator's route consistent.
|
||||
for (const source of modelAliases) {
|
||||
const matchedDirect = source.resolve === orchestratorSpec;
|
||||
const matchedOR = source.openRouterResolve === orchestratorSpec;
|
||||
if (!matchedDirect && !matchedOR) continue;
|
||||
if (!source.subagentModel) return { reviewer: undefined };
|
||||
const target = modelAliases.find((a) => a.slug === source.subagentModel);
|
||||
if (!target) return { reviewer: undefined };
|
||||
const reviewer = matchedOR ? target.openRouterResolve : target.resolve;
|
||||
return { reviewer };
|
||||
}
|
||||
|
||||
return { reviewer: undefined };
|
||||
}
|
||||
@@ -1,41 +0,0 @@
|
||||
import { readFileSync } from "node:fs";
|
||||
import { join } from "node:path";
|
||||
import { describe, expect, it } from "vitest";
|
||||
|
||||
const claudeSource = readFileSync(join(__dirname, "claude.ts"), "utf-8");
|
||||
const opencodeSharedSource = readFileSync(join(__dirname, "opencodeShared.ts"), "utf-8");
|
||||
const opencodeV2Source = readFileSync(join(__dirname, "opencode_v2.ts"), "utf-8");
|
||||
|
||||
/**
|
||||
* The Claude Code `--agents` JSON and OpenCode `agent` config block are the
|
||||
* only places where per-subagent model overrides take effect. They're built
|
||||
* by string-only helpers we don't export, so this test reads the source and
|
||||
* asserts the literal model strings + agent names are wired in. A regression
|
||||
* here means the next review run silently runs lenses on Opus instead of
|
||||
* Sonnet.
|
||||
*/
|
||||
describe("subagent registration source asserts", () => {
|
||||
describe("claude.ts buildAgentsJson", () => {
|
||||
it("registers reviewfrog with sonnet model", () => {
|
||||
expect(claudeSource).toMatch(
|
||||
/\[REVIEWER_AGENT_NAME\]:\s*\{[^}]*model:\s*"claude-sonnet-4-6"/s
|
||||
);
|
||||
});
|
||||
it("imports the reviewer name constant", () => {
|
||||
expect(claudeSource).toMatch(/REVIEWER_AGENT_NAME/);
|
||||
});
|
||||
});
|
||||
|
||||
describe("opencodeShared.ts buildReviewerAgentConfig", () => {
|
||||
it("registers reviewfrog with mode: subagent", () => {
|
||||
expect(opencodeSharedSource).toMatch(/\[REVIEWER_AGENT_NAME\]:[^}]*mode:\s*"subagent"/s);
|
||||
});
|
||||
it("uses deriveSubagentModels for the reviewer model override", () => {
|
||||
expect(opencodeSharedSource).toMatch(/deriveSubagentModels\(/);
|
||||
expect(opencodeSharedSource).toMatch(/overrides\.reviewer/);
|
||||
});
|
||||
it("v2 runner passes orchestrator model to buildReviewerAgentConfig", () => {
|
||||
expect(opencodeV2Source).toMatch(/buildReviewerAgentConfig\(model\)/);
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,18 @@
|
||||
import { existsSync } from "node:fs";
|
||||
import { execSync } from "node:child_process";
|
||||
import { fileURLToPath } from "node:url";
|
||||
import { dirname } from "node:path";
|
||||
|
||||
const dir = dirname(fileURLToPath(import.meta.url));
|
||||
|
||||
if (!existsSync(`${dir}/node_modules`)) {
|
||||
console.log("node_modules not found, installing dependencies...");
|
||||
try {
|
||||
execSync("bun install --frozen-lockfile", { stdio: "inherit", cwd: dir, timeout: 120_000 });
|
||||
} catch {
|
||||
console.log("bun unavailable, falling back to npm...");
|
||||
execSync("npm install --no-fund --no-audit", { stdio: "inherit", cwd: dir, timeout: 120_000 });
|
||||
}
|
||||
}
|
||||
|
||||
await import("./entry.ts");
|
||||
@@ -0,0 +1,273 @@
|
||||
{
|
||||
"lockfileVersion": 1,
|
||||
"configVersion": 1,
|
||||
"workspaces": {
|
||||
"": {
|
||||
"name": "shockbot",
|
||||
"devDependencies": {
|
||||
"@go-gitea/sdk.js": "^0.2.1",
|
||||
"@modelcontextprotocol/sdk": "^1.29.0",
|
||||
"@types/bun": "latest",
|
||||
"ollama": "^0.6.3",
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "^5",
|
||||
},
|
||||
},
|
||||
},
|
||||
"packages": {
|
||||
"@go-gitea/sdk.js": ["@go-gitea/sdk.js@0.2.1", "", { "dependencies": { "@octokit/core": "^7.0.2", "@octokit/plugin-paginate-rest": "^13.0.0", "@octokit/plugin-retry": "^8.0.1", "@octokit/request-error": "^7.0.0", "@octokit/types": "^15.0.0" } }, "sha512-8H3ci55MHUk8LtS8T4rlkpjNagAWCpBin3J0VhSNobh+XXbLR7kXplwH4ZxXRMqZOi1+gBv3XEk8azicW8zt3g=="],
|
||||
|
||||
"@hono/node-server": ["@hono/node-server@1.19.14", "", { "peerDependencies": { "hono": "^4" } }, "sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw=="],
|
||||
|
||||
"@modelcontextprotocol/sdk": ["@modelcontextprotocol/sdk@1.29.0", "", { "dependencies": { "@hono/node-server": "^1.19.9", "ajv": "^8.17.1", "ajv-formats": "^3.0.1", "content-type": "^1.0.5", "cors": "^2.8.5", "cross-spawn": "^7.0.5", "eventsource": "^3.0.2", "eventsource-parser": "^3.0.0", "express": "^5.2.1", "express-rate-limit": "^8.2.1", "hono": "^4.11.4", "jose": "^6.1.3", "json-schema-typed": "^8.0.2", "pkce-challenge": "^5.0.0", "raw-body": "^3.0.0", "zod": "^3.25 || ^4.0", "zod-to-json-schema": "^3.25.1" }, "peerDependencies": { "@cfworker/json-schema": "^4.1.1" }, "optionalPeers": ["@cfworker/json-schema"] }, "sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ=="],
|
||||
|
||||
"@octokit/auth-token": ["@octokit/auth-token@6.0.0", "", {}, "sha512-P4YJBPdPSpWTQ1NU4XYdvHvXJJDxM6YwpS0FZHRgP7YFkdVxsWcpWGy/NVqlAA7PcPCnMacXlRm1y2PFZRWL/w=="],
|
||||
|
||||
"@octokit/core": ["@octokit/core@7.0.6", "", { "dependencies": { "@octokit/auth-token": "^6.0.0", "@octokit/graphql": "^9.0.3", "@octokit/request": "^10.0.6", "@octokit/request-error": "^7.0.2", "@octokit/types": "^16.0.0", "before-after-hook": "^4.0.0", "universal-user-agent": "^7.0.0" } }, "sha512-DhGl4xMVFGVIyMwswXeyzdL4uXD5OGILGX5N8Y+f6W7LhC1Ze2poSNrkF/fedpVDHEEZ+PHFW0vL14I+mm8K3Q=="],
|
||||
|
||||
"@octokit/endpoint": ["@octokit/endpoint@11.0.3", "", { "dependencies": { "@octokit/types": "^16.0.0", "universal-user-agent": "^7.0.2" } }, "sha512-FWFlNxghg4HrXkD3ifYbS/IdL/mDHjh9QcsNyhQjN8dplUoZbejsdpmuqdA76nxj2xoWPs7p8uX2SNr9rYu0Ag=="],
|
||||
|
||||
"@octokit/graphql": ["@octokit/graphql@9.0.3", "", { "dependencies": { "@octokit/request": "^10.0.6", "@octokit/types": "^16.0.0", "universal-user-agent": "^7.0.0" } }, "sha512-grAEuupr/C1rALFnXTv6ZQhFuL1D8G5y8CN04RgrO4FIPMrtm+mcZzFG7dcBm+nq+1ppNixu+Jd78aeJOYxlGA=="],
|
||||
|
||||
"@octokit/openapi-types": ["@octokit/openapi-types@26.0.0", "", {}, "sha512-7AtcfKtpo77j7Ts73b4OWhOZHTKo/gGY8bB3bNBQz4H+GRSWqx2yvj8TXRsbdTE0eRmYmXOEY66jM7mJ7LzfsA=="],
|
||||
|
||||
"@octokit/plugin-paginate-rest": ["@octokit/plugin-paginate-rest@13.2.1", "", { "dependencies": { "@octokit/types": "^15.0.1" }, "peerDependencies": { "@octokit/core": ">=6" } }, "sha512-Tj4PkZyIL6eBMYcG/76QGsedF0+dWVeLhYprTmuFVVxzDW7PQh23tM0TP0z+1MvSkxB29YFZwnUX+cXfTiSdyw=="],
|
||||
|
||||
"@octokit/plugin-retry": ["@octokit/plugin-retry@8.1.0", "", { "dependencies": { "@octokit/request-error": "^7.0.2", "@octokit/types": "^16.0.0", "bottleneck": "^2.15.3" }, "peerDependencies": { "@octokit/core": ">=7" } }, "sha512-O1FZgXeiGb2sowEr/hYTr6YunGdSAFWnr2fyW39Ah85H8O33ELASQxcvOFF5LE6Tjekcyu2ms4qAzJVhSaJxTw=="],
|
||||
|
||||
"@octokit/request": ["@octokit/request@10.0.10", "", { "dependencies": { "@octokit/endpoint": "^11.0.3", "@octokit/request-error": "^7.0.2", "@octokit/types": "^16.0.0", "content-type": "^2.0.0", "json-with-bigint": "^3.5.3", "universal-user-agent": "^7.0.2" } }, "sha512-KxNC2pTqqhszMNrf12ZRd4PonRgyJdsM4F/jySiddQK+DsRcfBtUvqn8t7UsyZhnRJHvX46OohDt5N3VqIWC2w=="],
|
||||
|
||||
"@octokit/request-error": ["@octokit/request-error@7.1.0", "", { "dependencies": { "@octokit/types": "^16.0.0" } }, "sha512-KMQIfq5sOPpkQYajXHwnhjCC0slzCNScLHs9JafXc4RAJI+9f+jNDlBNaIMTvazOPLgb4BnlhGJOTbnN0wIjPw=="],
|
||||
|
||||
"@octokit/types": ["@octokit/types@15.0.2", "", { "dependencies": { "@octokit/openapi-types": "^26.0.0" } }, "sha512-rR+5VRjhYSer7sC51krfCctQhVTmjyUMAaShfPB8mscVa8tSoLyon3coxQmXu0ahJoLVWl8dSGD/3OGZlFV44Q=="],
|
||||
|
||||
"@types/bun": ["@types/bun@1.3.14", "", { "dependencies": { "bun-types": "1.3.14" } }, "sha512-h1hFqFVcvAvD9j9K7ZW7vd82aSA+rTdznZa+5bwvCwqSB1jmmfLcbIWhOLx1/+boy/xmjgCs/OMUL8hRJSmnPw=="],
|
||||
|
||||
"@types/node": ["@types/node@25.9.1", "", { "dependencies": { "undici-types": ">=7.24.0 <7.24.7" } }, "sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg=="],
|
||||
|
||||
"accepts": ["accepts@2.0.0", "", { "dependencies": { "mime-types": "^3.0.0", "negotiator": "^1.0.0" } }, "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng=="],
|
||||
|
||||
"ajv": ["ajv@8.20.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA=="],
|
||||
|
||||
"ajv-formats": ["ajv-formats@3.0.1", "", { "dependencies": { "ajv": "^8.0.0" } }, "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ=="],
|
||||
|
||||
"before-after-hook": ["before-after-hook@4.0.0", "", {}, "sha512-q6tR3RPqIB1pMiTRMFcZwuG5T8vwp+vUvEG0vuI6B+Rikh5BfPp2fQ82c925FOs+b0lcFQ8CFrL+KbilfZFhOQ=="],
|
||||
|
||||
"body-parser": ["body-parser@2.2.2", "", { "dependencies": { "bytes": "^3.1.2", "content-type": "^1.0.5", "debug": "^4.4.3", "http-errors": "^2.0.0", "iconv-lite": "^0.7.0", "on-finished": "^2.4.1", "qs": "^6.14.1", "raw-body": "^3.0.1", "type-is": "^2.0.1" } }, "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA=="],
|
||||
|
||||
"bottleneck": ["bottleneck@2.19.5", "", {}, "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw=="],
|
||||
|
||||
"bun-types": ["bun-types@1.3.14", "", { "dependencies": { "@types/node": "*" } }, "sha512-4N0ig0fEomHt5R0KCFWjovxow98rIoRwKolrYdCcknNwMekCXRnWEUvgu5soYV8QXtVsrUD8B95MBOZGPvr6KQ=="],
|
||||
|
||||
"bytes": ["bytes@3.1.2", "", {}, "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="],
|
||||
|
||||
"call-bind-apply-helpers": ["call-bind-apply-helpers@1.0.2", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="],
|
||||
|
||||
"call-bound": ["call-bound@1.0.4", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "get-intrinsic": "^1.3.0" } }, "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg=="],
|
||||
|
||||
"content-disposition": ["content-disposition@1.1.0", "", {}, "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g=="],
|
||||
|
||||
"content-type": ["content-type@1.0.5", "", {}, "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA=="],
|
||||
|
||||
"cookie": ["cookie@0.7.2", "", {}, "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w=="],
|
||||
|
||||
"cookie-signature": ["cookie-signature@1.2.2", "", {}, "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg=="],
|
||||
|
||||
"cors": ["cors@2.8.6", "", { "dependencies": { "object-assign": "^4", "vary": "^1" } }, "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw=="],
|
||||
|
||||
"cross-spawn": ["cross-spawn@7.0.6", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="],
|
||||
|
||||
"debug": ["debug@4.4.3", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="],
|
||||
|
||||
"depd": ["depd@2.0.0", "", {}, "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="],
|
||||
|
||||
"dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="],
|
||||
|
||||
"ee-first": ["ee-first@1.1.1", "", {}, "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="],
|
||||
|
||||
"encodeurl": ["encodeurl@2.0.0", "", {}, "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg=="],
|
||||
|
||||
"es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="],
|
||||
|
||||
"es-errors": ["es-errors@1.3.0", "", {}, "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="],
|
||||
|
||||
"es-object-atoms": ["es-object-atoms@1.1.2", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw=="],
|
||||
|
||||
"escape-html": ["escape-html@1.0.3", "", {}, "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="],
|
||||
|
||||
"etag": ["etag@1.8.1", "", {}, "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="],
|
||||
|
||||
"eventsource": ["eventsource@3.0.7", "", { "dependencies": { "eventsource-parser": "^3.0.1" } }, "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA=="],
|
||||
|
||||
"eventsource-parser": ["eventsource-parser@3.1.0", "", {}, "sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg=="],
|
||||
|
||||
"express": ["express@5.2.1", "", { "dependencies": { "accepts": "^2.0.0", "body-parser": "^2.2.1", "content-disposition": "^1.0.0", "content-type": "^1.0.5", "cookie": "^0.7.1", "cookie-signature": "^1.2.1", "debug": "^4.4.0", "depd": "^2.0.0", "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "etag": "^1.8.1", "finalhandler": "^2.1.0", "fresh": "^2.0.0", "http-errors": "^2.0.0", "merge-descriptors": "^2.0.0", "mime-types": "^3.0.0", "on-finished": "^2.4.1", "once": "^1.4.0", "parseurl": "^1.3.3", "proxy-addr": "^2.0.7", "qs": "^6.14.0", "range-parser": "^1.2.1", "router": "^2.2.0", "send": "^1.1.0", "serve-static": "^2.2.0", "statuses": "^2.0.1", "type-is": "^2.0.1", "vary": "^1.1.2" } }, "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw=="],
|
||||
|
||||
"express-rate-limit": ["express-rate-limit@8.5.2", "", { "dependencies": { "ip-address": "^10.2.0" }, "peerDependencies": { "express": ">= 4.11" } }, "sha512-5Kb34ipNX694DH48vN9irak1Qx30nb0PLYHXfJgw4YEjiC3ZEmZJhwOp+VfiCYwFzvFTdB9QkArYS5kXa2cx2A=="],
|
||||
|
||||
"fast-deep-equal": ["fast-deep-equal@3.1.3", "", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="],
|
||||
|
||||
"fast-uri": ["fast-uri@3.1.2", "", {}, "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ=="],
|
||||
|
||||
"finalhandler": ["finalhandler@2.1.1", "", { "dependencies": { "debug": "^4.4.0", "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "on-finished": "^2.4.1", "parseurl": "^1.3.3", "statuses": "^2.0.1" } }, "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA=="],
|
||||
|
||||
"forwarded": ["forwarded@0.2.0", "", {}, "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="],
|
||||
|
||||
"fresh": ["fresh@2.0.0", "", {}, "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A=="],
|
||||
|
||||
"function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="],
|
||||
|
||||
"get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="],
|
||||
|
||||
"get-proto": ["get-proto@1.0.1", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" } }, "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="],
|
||||
|
||||
"gopd": ["gopd@1.2.0", "", {}, "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="],
|
||||
|
||||
"has-symbols": ["has-symbols@1.1.0", "", {}, "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="],
|
||||
|
||||
"hasown": ["hasown@2.0.4", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A=="],
|
||||
|
||||
"hono": ["hono@4.12.23", "", {}, "sha512-eIaZ9qDgu7XV0pxOCrg7/WhnQ6Ivm22UcxhXx/A3dcbqbbYgBEkc6e/J/s7j2tS96zoB0S9VBdLwQNCWwUo4LA=="],
|
||||
|
||||
"http-errors": ["http-errors@2.0.1", "", { "dependencies": { "depd": "~2.0.0", "inherits": "~2.0.4", "setprototypeof": "~1.2.0", "statuses": "~2.0.2", "toidentifier": "~1.0.1" } }, "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ=="],
|
||||
|
||||
"iconv-lite": ["iconv-lite@0.7.2", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw=="],
|
||||
|
||||
"inherits": ["inherits@2.0.4", "", {}, "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="],
|
||||
|
||||
"ip-address": ["ip-address@10.2.0", "", {}, "sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA=="],
|
||||
|
||||
"ipaddr.js": ["ipaddr.js@1.9.1", "", {}, "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="],
|
||||
|
||||
"is-promise": ["is-promise@4.0.0", "", {}, "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ=="],
|
||||
|
||||
"isexe": ["isexe@2.0.0", "", {}, "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="],
|
||||
|
||||
"jose": ["jose@6.2.3", "", {}, "sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw=="],
|
||||
|
||||
"json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="],
|
||||
|
||||
"json-schema-typed": ["json-schema-typed@8.0.2", "", {}, "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA=="],
|
||||
|
||||
"json-with-bigint": ["json-with-bigint@3.5.8", "", {}, "sha512-eq/4KP6K34kwa7TcFdtvnftvHCD9KvHOGGICWwMFc4dOOKF5t4iYqnfLK8otCRCRv06FXOzGGyqE8h8ElMvvdw=="],
|
||||
|
||||
"math-intrinsics": ["math-intrinsics@1.1.0", "", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="],
|
||||
|
||||
"media-typer": ["media-typer@1.1.0", "", {}, "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw=="],
|
||||
|
||||
"merge-descriptors": ["merge-descriptors@2.0.0", "", {}, "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g=="],
|
||||
|
||||
"mime-db": ["mime-db@1.54.0", "", {}, "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ=="],
|
||||
|
||||
"mime-types": ["mime-types@3.0.2", "", { "dependencies": { "mime-db": "^1.54.0" } }, "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A=="],
|
||||
|
||||
"ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="],
|
||||
|
||||
"negotiator": ["negotiator@1.0.0", "", {}, "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg=="],
|
||||
|
||||
"object-assign": ["object-assign@4.1.1", "", {}, "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="],
|
||||
|
||||
"object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="],
|
||||
|
||||
"ollama": ["ollama@0.6.3", "", { "dependencies": { "whatwg-fetch": "^3.6.20" } }, "sha512-KEWEhIqE5wtfzEIZbDCLH51VFZ6Z3ZSa6sIOg/E/tBV8S51flyqBOXi+bRxlOYKDf8i327zG9eSTb8IJxvm3Zg=="],
|
||||
|
||||
"on-finished": ["on-finished@2.4.1", "", { "dependencies": { "ee-first": "1.1.1" } }, "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg=="],
|
||||
|
||||
"once": ["once@1.4.0", "", { "dependencies": { "wrappy": "1" } }, "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="],
|
||||
|
||||
"parseurl": ["parseurl@1.3.3", "", {}, "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="],
|
||||
|
||||
"path-key": ["path-key@3.1.1", "", {}, "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="],
|
||||
|
||||
"path-to-regexp": ["path-to-regexp@8.4.2", "", {}, "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA=="],
|
||||
|
||||
"pkce-challenge": ["pkce-challenge@5.0.1", "", {}, "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ=="],
|
||||
|
||||
"proxy-addr": ["proxy-addr@2.0.7", "", { "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" } }, "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg=="],
|
||||
|
||||
"qs": ["qs@6.15.2", "", { "dependencies": { "side-channel": "^1.1.0" } }, "sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw=="],
|
||||
|
||||
"range-parser": ["range-parser@1.2.1", "", {}, "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="],
|
||||
|
||||
"raw-body": ["raw-body@3.0.2", "", { "dependencies": { "bytes": "~3.1.2", "http-errors": "~2.0.1", "iconv-lite": "~0.7.0", "unpipe": "~1.0.0" } }, "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA=="],
|
||||
|
||||
"require-from-string": ["require-from-string@2.0.2", "", {}, "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="],
|
||||
|
||||
"router": ["router@2.2.0", "", { "dependencies": { "debug": "^4.4.0", "depd": "^2.0.0", "is-promise": "^4.0.0", "parseurl": "^1.3.3", "path-to-regexp": "^8.0.0" } }, "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ=="],
|
||||
|
||||
"safer-buffer": ["safer-buffer@2.1.2", "", {}, "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="],
|
||||
|
||||
"send": ["send@1.2.1", "", { "dependencies": { "debug": "^4.4.3", "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "etag": "^1.8.1", "fresh": "^2.0.0", "http-errors": "^2.0.1", "mime-types": "^3.0.2", "ms": "^2.1.3", "on-finished": "^2.4.1", "range-parser": "^1.2.1", "statuses": "^2.0.2" } }, "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ=="],
|
||||
|
||||
"serve-static": ["serve-static@2.2.1", "", { "dependencies": { "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "parseurl": "^1.3.3", "send": "^1.2.0" } }, "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw=="],
|
||||
|
||||
"setprototypeof": ["setprototypeof@1.2.0", "", {}, "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="],
|
||||
|
||||
"shebang-command": ["shebang-command@2.0.0", "", { "dependencies": { "shebang-regex": "^3.0.0" } }, "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="],
|
||||
|
||||
"shebang-regex": ["shebang-regex@3.0.0", "", {}, "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="],
|
||||
|
||||
"side-channel": ["side-channel@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3", "side-channel-list": "^1.0.0", "side-channel-map": "^1.0.1", "side-channel-weakmap": "^1.0.2" } }, "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw=="],
|
||||
|
||||
"side-channel-list": ["side-channel-list@1.0.1", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.4" } }, "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w=="],
|
||||
|
||||
"side-channel-map": ["side-channel-map@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3" } }, "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA=="],
|
||||
|
||||
"side-channel-weakmap": ["side-channel-weakmap@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3", "side-channel-map": "^1.0.1" } }, "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A=="],
|
||||
|
||||
"statuses": ["statuses@2.0.2", "", {}, "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw=="],
|
||||
|
||||
"toidentifier": ["toidentifier@1.0.1", "", {}, "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="],
|
||||
|
||||
"type-is": ["type-is@2.1.0", "", { "dependencies": { "content-type": "^2.0.0", "media-typer": "^1.1.0", "mime-types": "^3.0.0" } }, "sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA=="],
|
||||
|
||||
"typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
|
||||
|
||||
"undici-types": ["undici-types@7.24.6", "", {}, "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg=="],
|
||||
|
||||
"universal-user-agent": ["universal-user-agent@7.0.3", "", {}, "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A=="],
|
||||
|
||||
"unpipe": ["unpipe@1.0.0", "", {}, "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="],
|
||||
|
||||
"vary": ["vary@1.1.2", "", {}, "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="],
|
||||
|
||||
"whatwg-fetch": ["whatwg-fetch@3.6.20", "", {}, "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg=="],
|
||||
|
||||
"which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="],
|
||||
|
||||
"wrappy": ["wrappy@1.0.2", "", {}, "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="],
|
||||
|
||||
"zod": ["zod@4.4.3", "", {}, "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ=="],
|
||||
|
||||
"zod-to-json-schema": ["zod-to-json-schema@3.25.2", "", { "peerDependencies": { "zod": "^3.25.28 || ^4" } }, "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA=="],
|
||||
|
||||
"@octokit/core/@octokit/types": ["@octokit/types@16.0.0", "", { "dependencies": { "@octokit/openapi-types": "^27.0.0" } }, "sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg=="],
|
||||
|
||||
"@octokit/endpoint/@octokit/types": ["@octokit/types@16.0.0", "", { "dependencies": { "@octokit/openapi-types": "^27.0.0" } }, "sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg=="],
|
||||
|
||||
"@octokit/graphql/@octokit/types": ["@octokit/types@16.0.0", "", { "dependencies": { "@octokit/openapi-types": "^27.0.0" } }, "sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg=="],
|
||||
|
||||
"@octokit/plugin-retry/@octokit/types": ["@octokit/types@16.0.0", "", { "dependencies": { "@octokit/openapi-types": "^27.0.0" } }, "sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg=="],
|
||||
|
||||
"@octokit/request/@octokit/types": ["@octokit/types@16.0.0", "", { "dependencies": { "@octokit/openapi-types": "^27.0.0" } }, "sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg=="],
|
||||
|
||||
"@octokit/request/content-type": ["content-type@2.0.0", "", {}, "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ=="],
|
||||
|
||||
"@octokit/request-error/@octokit/types": ["@octokit/types@16.0.0", "", { "dependencies": { "@octokit/openapi-types": "^27.0.0" } }, "sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg=="],
|
||||
|
||||
"type-is/content-type": ["content-type@2.0.0", "", {}, "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ=="],
|
||||
|
||||
"@octokit/core/@octokit/types/@octokit/openapi-types": ["@octokit/openapi-types@27.0.0", "", {}, "sha512-whrdktVs1h6gtR+09+QsNk2+FO+49j6ga1c55YZudfEG+oKJVvJLQi3zkOm5JjiUXAagWK2tI2kTGKJ2Ys7MGA=="],
|
||||
|
||||
"@octokit/endpoint/@octokit/types/@octokit/openapi-types": ["@octokit/openapi-types@27.0.0", "", {}, "sha512-whrdktVs1h6gtR+09+QsNk2+FO+49j6ga1c55YZudfEG+oKJVvJLQi3zkOm5JjiUXAagWK2tI2kTGKJ2Ys7MGA=="],
|
||||
|
||||
"@octokit/graphql/@octokit/types/@octokit/openapi-types": ["@octokit/openapi-types@27.0.0", "", {}, "sha512-whrdktVs1h6gtR+09+QsNk2+FO+49j6ga1c55YZudfEG+oKJVvJLQi3zkOm5JjiUXAagWK2tI2kTGKJ2Ys7MGA=="],
|
||||
|
||||
"@octokit/plugin-retry/@octokit/types/@octokit/openapi-types": ["@octokit/openapi-types@27.0.0", "", {}, "sha512-whrdktVs1h6gtR+09+QsNk2+FO+49j6ga1c55YZudfEG+oKJVvJLQi3zkOm5JjiUXAagWK2tI2kTGKJ2Ys7MGA=="],
|
||||
|
||||
"@octokit/request-error/@octokit/types/@octokit/openapi-types": ["@octokit/openapi-types@27.0.0", "", {}, "sha512-whrdktVs1h6gtR+09+QsNk2+FO+49j6ga1c55YZudfEG+oKJVvJLQi3zkOm5JjiUXAagWK2tI2kTGKJ2Ys7MGA=="],
|
||||
|
||||
"@octokit/request/@octokit/types/@octokit/openapi-types": ["@octokit/openapi-types@27.0.0", "", {}, "sha512-whrdktVs1h6gtR+09+QsNk2+FO+49j6ga1c55YZudfEG+oKJVvJLQi3zkOm5JjiUXAagWK2tI2kTGKJ2Ys7MGA=="],
|
||||
}
|
||||
}
|
||||
@@ -1,115 +0,0 @@
|
||||
import { basename } from "node:path";
|
||||
import arg from "arg";
|
||||
import pc from "picocolors";
|
||||
import { runCli as runAuthCli } from "./commands/auth.ts";
|
||||
import { runCli as runGhaCli } from "./commands/gha.ts";
|
||||
import { runCli as runInitCli } from "./commands/init.ts";
|
||||
|
||||
const VERSION = process.env.CLI_VERSION ?? "0.0.0";
|
||||
const bin = basename(process.argv[1] || "");
|
||||
const PROG = bin === "pf" || bin === "pullfrog" ? bin : "pullfrog";
|
||||
const rawArgs = process.argv.slice(2);
|
||||
|
||||
function printMainUsage(stream: typeof console.log): void {
|
||||
stream(`usage: ${PROG} <command>\n`);
|
||||
stream("commands:");
|
||||
stream(" init set up pullfrog on the current repository");
|
||||
stream(" auth manage provider credentials for the current repository");
|
||||
stream("");
|
||||
stream("global options:");
|
||||
stream(" -h, --help show help");
|
||||
stream(" -v, --version show version");
|
||||
}
|
||||
|
||||
function parseGlobalArgs(args: string[]) {
|
||||
return arg(
|
||||
{
|
||||
"--help": Boolean,
|
||||
"--version": Boolean,
|
||||
"-h": "--help",
|
||||
"-v": "--version",
|
||||
},
|
||||
{
|
||||
argv: args,
|
||||
stopAtPositional: true,
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
function exitWithUsageError(message: string): never {
|
||||
console.error(`${message}\n`);
|
||||
printMainUsage(console.error);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
async function run(): Promise<void> {
|
||||
let globalParsed: ReturnType<typeof parseGlobalArgs>;
|
||||
try {
|
||||
globalParsed = parseGlobalArgs(rawArgs);
|
||||
} catch (error) {
|
||||
const message = error instanceof Error ? error.message : String(error);
|
||||
exitWithUsageError(message);
|
||||
}
|
||||
|
||||
if (globalParsed["--version"]) {
|
||||
console.log(VERSION);
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const command = globalParsed._[0];
|
||||
const commandArgs = globalParsed._.slice(1);
|
||||
|
||||
if (!command) {
|
||||
if (globalParsed["--help"]) {
|
||||
console.log(`${pc.bold("pullfrog")} v${VERSION}\n`);
|
||||
printMainUsage(console.log);
|
||||
process.exit(0);
|
||||
}
|
||||
printMainUsage(console.log);
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
if (command === "init") {
|
||||
await runInitCli({
|
||||
args: commandArgs,
|
||||
prog: PROG,
|
||||
showHelp: globalParsed["--help"] === true,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
if (command === "gha") {
|
||||
await runGhaCli({
|
||||
args: commandArgs,
|
||||
prog: PROG,
|
||||
showHelp: globalParsed["--help"] === true,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
if (command === "auth") {
|
||||
await runAuthCli({
|
||||
args: commandArgs,
|
||||
prog: PROG,
|
||||
showHelp: globalParsed["--help"] === true,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
if (globalParsed["--help"]) {
|
||||
printMainUsage(console.log);
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
console.error(`unknown command: ${pc.bold(command)}\n`);
|
||||
printMainUsage(console.error);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
try {
|
||||
await run();
|
||||
} catch (error) {
|
||||
const message = error instanceof Error ? error.message : String(error);
|
||||
console.error(pc.red(message));
|
||||
process.exit(1);
|
||||
}
|
||||
@@ -1,229 +0,0 @@
|
||||
// shared helpers used by `init` and `auth` subcommands. these were originally
|
||||
// inlined in `init.ts`; pulled out so `auth.ts` can reuse them without
|
||||
// duplicating gh-auth/pullfrog-api/secret-save logic.
|
||||
|
||||
import { execFileSync } from "node:child_process";
|
||||
import * as p from "@clack/prompts";
|
||||
import pc from "picocolors";
|
||||
|
||||
export const PULLFROG_API_URL = (process.env.PULLFROG_API_URL || "https://pullfrog.com").replace(
|
||||
/\/+$/,
|
||||
""
|
||||
);
|
||||
|
||||
// active spinner reference so bail/cancel can stop it before exiting. shared
|
||||
// across init/auth subcommands via this module's singleton scope; whichever
|
||||
// command starts a spinner sets this so handleCancel/bail can clean up.
|
||||
let activeSpin: ReturnType<typeof p.spinner> | null = null;
|
||||
|
||||
export function setActiveSpin(spin: ReturnType<typeof p.spinner> | null): void {
|
||||
activeSpin = spin;
|
||||
}
|
||||
|
||||
export function bail(msg: string): never {
|
||||
if (activeSpin) {
|
||||
activeSpin.stop(pc.red("failed"));
|
||||
activeSpin = null;
|
||||
}
|
||||
p.cancel(msg);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
export function handleCancel<T>(value: T | symbol): asserts value is T {
|
||||
if (p.isCancel(value)) {
|
||||
if (activeSpin) {
|
||||
activeSpin.stop(pc.red("canceled."));
|
||||
activeSpin = null;
|
||||
}
|
||||
p.cancel("canceled.");
|
||||
process.exit(0);
|
||||
}
|
||||
}
|
||||
|
||||
export function getGhToken(): string {
|
||||
let token: string;
|
||||
try {
|
||||
token = execFileSync("gh", ["auth", "token"], { encoding: "utf-8" }).trim();
|
||||
} catch {
|
||||
bail(
|
||||
`gh cli not found or not authenticated.\n` +
|
||||
` ${pc.dim("install:")} https://cli.github.com\n` +
|
||||
` ${pc.dim("then:")} gh auth login`
|
||||
);
|
||||
}
|
||||
if (!token) {
|
||||
bail(
|
||||
`gh cli returned an empty token. try re-authenticating:\n` +
|
||||
` ${pc.dim("run:")} gh auth login`
|
||||
);
|
||||
}
|
||||
return token;
|
||||
}
|
||||
|
||||
export function parseGitRemote(): { owner: string; repo: string } {
|
||||
let url: string;
|
||||
try {
|
||||
url = execFileSync("git", ["remote", "get-url", "origin"], { encoding: "utf-8" }).trim();
|
||||
} catch {
|
||||
bail("not a git repository or no 'origin' remote found.");
|
||||
}
|
||||
|
||||
const match = url.match(/github\.com(?::\d+)?[:/]+([^/]+)\/(.+?)(?:\.git)?(?:\/)?$/);
|
||||
if (!match) bail(`could not parse github owner/repo from remote: ${url}`);
|
||||
return { owner: match[1], repo: match[2] };
|
||||
}
|
||||
|
||||
// ── Pullfrog API ──
|
||||
|
||||
type SecretsApiData = {
|
||||
error?: string;
|
||||
appSlug?: string;
|
||||
installationId?: number | null;
|
||||
repositorySelection?: string | null;
|
||||
isOrg?: boolean;
|
||||
accessible?: boolean;
|
||||
repoSecrets?: string[];
|
||||
orgSecrets?: string[];
|
||||
pullfrogSecrets?: string[];
|
||||
repoStatus?: string | null;
|
||||
repoModel?: string | null;
|
||||
hasRuns?: boolean;
|
||||
};
|
||||
|
||||
type SecretsInfo = {
|
||||
isOrg: boolean;
|
||||
installationId: number | null;
|
||||
secretsAccessible: boolean;
|
||||
repoSecrets: string[];
|
||||
orgSecrets: string[];
|
||||
pullfrogSecrets: string[];
|
||||
model: string | null;
|
||||
hasRuns: boolean;
|
||||
};
|
||||
|
||||
type InstallationNotFound = {
|
||||
appSlug: string;
|
||||
installationId: number | null;
|
||||
repositorySelection: "all" | "selected" | null;
|
||||
isOrg: boolean;
|
||||
};
|
||||
|
||||
type StatusResult =
|
||||
| ({ installed: true } & SecretsInfo)
|
||||
| ({ installed: false } & InstallationNotFound);
|
||||
|
||||
type ApiResult<T = Record<string, unknown>> = {
|
||||
ok: boolean;
|
||||
status: number;
|
||||
data: T;
|
||||
};
|
||||
|
||||
async function pullfrogApi<T = Record<string, unknown>>(ctx: {
|
||||
path: string;
|
||||
token: string;
|
||||
method?: string;
|
||||
body?: Record<string, unknown>;
|
||||
}): Promise<ApiResult<T>> {
|
||||
const headers: Record<string, string> = { authorization: `Bearer ${ctx.token}` };
|
||||
if (ctx.body) headers["content-type"] = "application/json";
|
||||
const controller = new AbortController();
|
||||
const timeout = setTimeout(() => controller.abort(), 30_000);
|
||||
try {
|
||||
const response = await fetch(`${PULLFROG_API_URL}${ctx.path}`, {
|
||||
method: ctx.method || "GET",
|
||||
headers,
|
||||
body: ctx.body ? JSON.stringify(ctx.body) : null,
|
||||
signal: controller.signal,
|
||||
});
|
||||
const data = (await response.json().catch(() => ({}))) as T;
|
||||
return { ok: response.ok, status: response.status, data };
|
||||
} finally {
|
||||
clearTimeout(timeout);
|
||||
}
|
||||
}
|
||||
|
||||
export async function fetchStatus(ctx: {
|
||||
token: string;
|
||||
owner: string;
|
||||
repo: string;
|
||||
}): Promise<StatusResult> {
|
||||
const result = await pullfrogApi<SecretsApiData>({
|
||||
path: `/api/cli/secrets?owner=${encodeURIComponent(ctx.owner)}&repo=${encodeURIComponent(ctx.repo)}`,
|
||||
token: ctx.token,
|
||||
});
|
||||
|
||||
if (!result.ok) {
|
||||
const errorMsg = result.data.error || "";
|
||||
if (result.status === 401) bail("invalid or expired github token.");
|
||||
if (result.status === 404) {
|
||||
const sel = result.data.repositorySelection;
|
||||
if (!result.data.appSlug) bail("server did not return appSlug");
|
||||
return {
|
||||
installed: false,
|
||||
appSlug: result.data.appSlug,
|
||||
installationId:
|
||||
typeof result.data.installationId === "number" ? result.data.installationId : null,
|
||||
repositorySelection: sel === "all" || sel === "selected" ? sel : null,
|
||||
isOrg: result.data.isOrg === true,
|
||||
};
|
||||
}
|
||||
bail(errorMsg || `secrets check failed (${result.status})`);
|
||||
}
|
||||
|
||||
return {
|
||||
installed: true,
|
||||
isOrg: result.data.isOrg === true,
|
||||
installationId:
|
||||
typeof result.data.installationId === "number" ? result.data.installationId : null,
|
||||
secretsAccessible: result.data.accessible !== false,
|
||||
repoSecrets: result.data.repoSecrets || [],
|
||||
orgSecrets: result.data.orgSecrets || [],
|
||||
pullfrogSecrets: result.data.pullfrogSecrets || [],
|
||||
model: result.data.repoModel ?? null,
|
||||
hasRuns: result.data.hasRuns === true,
|
||||
};
|
||||
}
|
||||
|
||||
// ── secret save ──
|
||||
|
||||
export type SecretScope = "account" | "repo";
|
||||
|
||||
type PullfrogSecretResult = { saved: boolean; error: string };
|
||||
|
||||
export async function setPullfrogSecret(ctx: {
|
||||
token: string;
|
||||
owner: string;
|
||||
repo: string;
|
||||
name: string;
|
||||
value: string;
|
||||
scope: SecretScope;
|
||||
}): Promise<PullfrogSecretResult> {
|
||||
const result = await pullfrogApi<{ success?: boolean; error?: string }>({
|
||||
path: "/api/cli/secrets",
|
||||
token: ctx.token,
|
||||
method: "POST",
|
||||
body: {
|
||||
owner: ctx.owner,
|
||||
repo: ctx.repo,
|
||||
name: ctx.name,
|
||||
value: ctx.value,
|
||||
scope: ctx.scope,
|
||||
},
|
||||
});
|
||||
if (result.ok && result.data.success === true) {
|
||||
return { saved: true, error: "" };
|
||||
}
|
||||
return { saved: false, error: result.data.error || `api returned ${result.status}` };
|
||||
}
|
||||
|
||||
export async function promptScope(ctx: { owner: string; repo: string }): Promise<SecretScope> {
|
||||
const scope = await p.select<SecretScope>({
|
||||
message: "secret scope",
|
||||
options: [
|
||||
{ value: "account", label: `${ctx.owner} organization`, hint: "shared across repos" },
|
||||
{ value: "repo", label: `${ctx.owner}/${ctx.repo} only` },
|
||||
],
|
||||
});
|
||||
handleCancel(scope);
|
||||
return scope;
|
||||
}
|
||||
@@ -1,324 +0,0 @@
|
||||
// `pullfrog auth <provider>` — manage credentials for a configured repo
|
||||
// without going through the full `init` flow. currently supports:
|
||||
//
|
||||
// pullfrog auth codex mint a Codex subscription credential and save it
|
||||
// as the `CODEX_AUTH_JSON` Pullfrog secret
|
||||
//
|
||||
// the `codex` subcommand runs `codex login --device-auth` against an
|
||||
// isolated `CODEX_HOME` (so the user's existing ~/.codex/auth.json is never
|
||||
// touched), validates the resulting auth.json, and posts it to the Pullfrog
|
||||
// secrets API. used both for first-time setup of a Codex subscription on a
|
||||
// repo and for rotating a stale credential.
|
||||
|
||||
import { spawn } from "node:child_process";
|
||||
import * as p from "@clack/prompts";
|
||||
import arg from "arg";
|
||||
import pc from "picocolors";
|
||||
import { mintCodexAuth, refreshCodexAuth } from "../utils/codexAuth.ts";
|
||||
import {
|
||||
bail,
|
||||
fetchStatus,
|
||||
getGhToken,
|
||||
handleCancel,
|
||||
PULLFROG_API_URL,
|
||||
parseGitRemote,
|
||||
promptScope,
|
||||
setActiveSpin,
|
||||
setPullfrogSecret,
|
||||
} from "./_shared.ts";
|
||||
|
||||
const CODEX_AUTH_SECRET = "CODEX_AUTH_JSON";
|
||||
|
||||
/** strip CSI ANSI escapes (color, cursor) from a string so callers can re-style
|
||||
* the visible text without inheriting the source's formatting. covers what
|
||||
* Codex emits during device auth (mostly `\x1b[<digits>m` color codes).
|
||||
*/
|
||||
function stripAnsi(s: string): string {
|
||||
// biome-ignore lint/suspicious/noControlCharactersInRegex: ANSI escapes are control chars by design
|
||||
return s.replace(/\x1b\[[0-9;]*[a-zA-Z]/g, "");
|
||||
}
|
||||
|
||||
/** matches the Codex device-auth verification URL printed by `codex login
|
||||
* --device-auth`. captures the full URL (with query string) up to whitespace.
|
||||
*/
|
||||
const CODEX_DEVICE_URL_RE = /https:\/\/auth\.openai\.com\/codex\/device\S*/;
|
||||
|
||||
/** best-effort cross-platform "open URL in default browser". swallows
|
||||
* spawn errors and non-zero exits — the user can always copy-paste the URL
|
||||
* Codex already printed. on Linux, falls back to `wslview` when `xdg-open`
|
||||
* is missing (covers WSL where xdg-open isn't installed by default).
|
||||
*/
|
||||
function openInBrowser(url: string): void {
|
||||
const platform = process.platform;
|
||||
let cmd: string;
|
||||
let args: string[];
|
||||
if (platform === "darwin") {
|
||||
cmd = "open";
|
||||
args = [url];
|
||||
} else if (platform === "win32") {
|
||||
// `start` is a cmd.exe builtin. the empty "" is the window title
|
||||
// (required when the next argument is quoted, which happens for
|
||||
// URLs with `&`).
|
||||
cmd = "cmd.exe";
|
||||
args = ["/c", "start", "", url];
|
||||
} else {
|
||||
cmd = "xdg-open";
|
||||
args = [url];
|
||||
}
|
||||
const child = spawn(cmd, args, { stdio: "ignore", detached: true });
|
||||
child.on("error", () => {
|
||||
if (platform !== "linux") return;
|
||||
const fallback = spawn("wslview", [url], { stdio: "ignore", detached: true });
|
||||
fallback.on("error", () => {});
|
||||
fallback.unref();
|
||||
});
|
||||
child.unref();
|
||||
}
|
||||
|
||||
interface AuthCliParams {
|
||||
args: string[];
|
||||
prog: string;
|
||||
showHelp?: boolean;
|
||||
}
|
||||
|
||||
function printAuthUsage(params: { stream: typeof console.log; prog: string }): void {
|
||||
params.stream(`usage: ${params.prog} auth <provider>\n`);
|
||||
params.stream("manage provider credentials for the current repository.");
|
||||
params.stream("");
|
||||
params.stream("providers:");
|
||||
params.stream(" codex mint a Codex (ChatGPT) subscription credential");
|
||||
params.stream("");
|
||||
params.stream("options:");
|
||||
params.stream(" -h, --help show help");
|
||||
}
|
||||
|
||||
function printCodexUsage(params: { stream: typeof console.log; prog: string }): void {
|
||||
params.stream(`usage: ${params.prog} auth codex [options]\n`);
|
||||
params.stream("mint a Codex subscription credential and save it as CODEX_AUTH_JSON.");
|
||||
params.stream("");
|
||||
params.stream("options:");
|
||||
params.stream(" -h, --help show help");
|
||||
}
|
||||
|
||||
export async function runCli(params: AuthCliParams): Promise<void> {
|
||||
// route `auth --help` (no subcommand) to top-level usage. when the user
|
||||
// passes `auth codex --help`, we leave the flag in the rest args so the
|
||||
// subcommand's own parser handles it.
|
||||
const firstArg = params.args[0];
|
||||
const helpAtTopLevel =
|
||||
params.showHelp ||
|
||||
params.args.length === 0 ||
|
||||
(params.args.length === 1 && (firstArg === "--help" || firstArg === "-h"));
|
||||
if (helpAtTopLevel) {
|
||||
printAuthUsage({ stream: console.log, prog: params.prog });
|
||||
return;
|
||||
}
|
||||
|
||||
const subcommand = firstArg;
|
||||
const rest = params.args.slice(1);
|
||||
|
||||
if (subcommand === "codex") {
|
||||
await runCodex({ args: rest, prog: params.prog });
|
||||
return;
|
||||
}
|
||||
|
||||
console.error(`unknown auth provider: ${pc.bold(subcommand)}\n`);
|
||||
printAuthUsage({ stream: console.error, prog: params.prog });
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
interface CodexCliParams {
|
||||
args: string[];
|
||||
prog: string;
|
||||
}
|
||||
|
||||
function parseCodexArgs(args: string[]) {
|
||||
return arg(
|
||||
{
|
||||
"--help": Boolean,
|
||||
"-h": "--help",
|
||||
},
|
||||
{ argv: args }
|
||||
);
|
||||
}
|
||||
|
||||
async function runCodex(params: CodexCliParams): Promise<void> {
|
||||
let parsed: ReturnType<typeof parseCodexArgs>;
|
||||
try {
|
||||
parsed = parseCodexArgs(params.args);
|
||||
} catch (error) {
|
||||
const message = error instanceof Error ? error.message : String(error);
|
||||
console.error(`${message}\n`);
|
||||
printCodexUsage({ stream: console.error, prog: params.prog });
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
if (parsed["--help"]) {
|
||||
printCodexUsage({ stream: console.log, prog: params.prog });
|
||||
return;
|
||||
}
|
||||
|
||||
await runCodexAuth();
|
||||
}
|
||||
|
||||
async function runCodexAuth(): Promise<void> {
|
||||
p.intro(pc.bgGreen(pc.black(" pullfrog auth codex ")));
|
||||
|
||||
const spin = p.spinner();
|
||||
setActiveSpin(spin);
|
||||
|
||||
try {
|
||||
spin.start("authenticating with github");
|
||||
const token = getGhToken();
|
||||
spin.stop("github authenticated");
|
||||
|
||||
spin.start("detecting repository");
|
||||
const remote = parseGitRemote();
|
||||
spin.stop(`detected repo ${pc.cyan(`${remote.owner}/${remote.repo}`)}`);
|
||||
|
||||
spin.start("checking pullfrog app installation");
|
||||
const status = await fetchStatus({ token, owner: remote.owner, repo: remote.repo });
|
||||
if (!status.installed) {
|
||||
spin.stop(pc.red("pullfrog app not installed on this repo"));
|
||||
bail(
|
||||
`install pullfrog on ${pc.bold(`${remote.owner}/${remote.repo}`)} before configuring auth.\n` +
|
||||
` ${pc.dim("run:")} ${pc.cyan(`npx pullfrog init`)}`
|
||||
);
|
||||
}
|
||||
spin.stop(`pullfrog app is installed on ${pc.cyan(`@${remote.owner}`)}`);
|
||||
|
||||
if (status.pullfrogSecrets.includes(CODEX_AUTH_SECRET)) {
|
||||
const overwrite = await p.select({
|
||||
message: `${pc.cyan(CODEX_AUTH_SECRET)} is already configured — overwrite?`,
|
||||
options: [
|
||||
{ value: true, label: "overwrite", hint: "rotate to a freshly minted credential" },
|
||||
{ value: false, label: "cancel" },
|
||||
],
|
||||
});
|
||||
handleCancel(overwrite);
|
||||
if (!overwrite) {
|
||||
p.cancel("canceled.");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// user-owned repos can only ever be "account" (Pullfrog has no per-repo
|
||||
// store for user accounts), so we never bother prompting. on org-owned
|
||||
// repos, prompt interactively — matches `init`'s behavior.
|
||||
const scope = status.isOrg
|
||||
? await promptScope({ owner: remote.owner, repo: remote.repo })
|
||||
: "account";
|
||||
|
||||
p.log.info(
|
||||
[
|
||||
`signing in via Codex device authorization. open the URL Codex prints`,
|
||||
`below, enter the one-time code, and approve in your browser.`,
|
||||
``,
|
||||
`${pc.dim("note:")} if your ChatGPT account doesn't have device-code auth enabled,`,
|
||||
`Codex will exit early. enable it at ${pc.cyan(`https://chatgpt.com/#settings/Security`)}`,
|
||||
`then re-run ${pc.cyan(`${process.env.PULLFROG_BIN_NAME || "pullfrog"} auth codex`)}.`,
|
||||
].join("\n")
|
||||
);
|
||||
|
||||
// tracks the most recent exit so the retry prompt can tell the user
|
||||
// *why* no auth.json was written (timeout vs. early-exit).
|
||||
let lastTimedOut = false;
|
||||
// gate so we don't re-launch the browser if Codex prints the URL
|
||||
// more than once (e.g. on a retry attempt within the same flow).
|
||||
let hasOpenedDeviceUrl = false;
|
||||
const auth = await mintCodexAuth({
|
||||
childStdio: "pipe",
|
||||
onChildLine: (line) => {
|
||||
// dim Codex's own colored output (URL/code in cyan, boilerplate in
|
||||
// gray) so the user reads it as sub-process noise, not Pullfrog's
|
||||
// own prompts. the rail char matches @clack/prompts so the column
|
||||
// reads as one continuous flow.
|
||||
const stripped = stripAnsi(line);
|
||||
process.stdout.write(`${pc.gray(p.S_BAR)} ${pc.dim(stripped)}\n`);
|
||||
if (hasOpenedDeviceUrl) return;
|
||||
const match = stripped.match(CODEX_DEVICE_URL_RE);
|
||||
if (!match) return;
|
||||
hasOpenedDeviceUrl = true;
|
||||
const url = match[0];
|
||||
openInBrowser(url);
|
||||
process.stdout.write(
|
||||
`${pc.gray(p.S_BAR)} ${pc.dim(`» opened ${url} in browser (paste manually if it didn't open)`)}\n`
|
||||
);
|
||||
},
|
||||
onProgress: (event) => {
|
||||
if (event.kind === "start") {
|
||||
lastTimedOut = false;
|
||||
if (event.attempt > 1) p.log.info(`retry attempt ${event.attempt}`);
|
||||
// shell-prompt style header so the user sees what Pullfrog is
|
||||
// about to spawn, with the rail to keep the visual column.
|
||||
process.stdout.write(`${pc.gray(p.S_BAR)}\n`);
|
||||
process.stdout.write(`${pc.gray(p.S_BAR)} $ codex login --device-auth\n`);
|
||||
}
|
||||
if (event.kind === "exit") {
|
||||
if (event.timedOut) lastTimedOut = true;
|
||||
// trailing blank rail so the next clack prompt isn't crammed
|
||||
// against the last codex output line.
|
||||
process.stdout.write(`${pc.gray(p.S_BAR)}\n`);
|
||||
}
|
||||
},
|
||||
shouldRetry: async () => {
|
||||
const message = lastTimedOut
|
||||
? "device authorization timed out — retry?"
|
||||
: "no auth.json was written — retry?";
|
||||
const retry = await p.select({
|
||||
message,
|
||||
options: [
|
||||
{ value: true, label: "retry", hint: "after enabling device-code auth" },
|
||||
{ value: false, label: "cancel" },
|
||||
],
|
||||
});
|
||||
handleCancel(retry);
|
||||
return retry;
|
||||
},
|
||||
});
|
||||
|
||||
// eager refresh: bump the OAuth chain once before persisting so the
|
||||
// saved token is one Pullfrog has used. otherwise the user's laptop's
|
||||
// codex CLI could refresh first and strand our copy.
|
||||
spin.start("refreshing token");
|
||||
let savable: typeof auth;
|
||||
try {
|
||||
savable = await refreshCodexAuth(auth);
|
||||
spin.stop("refreshed");
|
||||
} catch (err) {
|
||||
spin.stop(pc.yellow("refresh failed — saving minted token as-is"));
|
||||
p.log.warn(err instanceof Error ? err.message : String(err));
|
||||
savable = auth;
|
||||
}
|
||||
|
||||
spin.start(`saving ${pc.cyan(CODEX_AUTH_SECRET)} to Pullfrog`);
|
||||
const result = await setPullfrogSecret({
|
||||
token,
|
||||
owner: remote.owner,
|
||||
repo: remote.repo,
|
||||
name: CODEX_AUTH_SECRET,
|
||||
value: savable.json,
|
||||
scope,
|
||||
});
|
||||
if (!result.saved) {
|
||||
spin.stop(pc.red("could not save secret"));
|
||||
p.log.warn(
|
||||
`${result.error}\n ${pc.dim("set it manually at:")} ${PULLFROG_API_URL}/console/${remote.owner}`
|
||||
);
|
||||
process.exit(1);
|
||||
}
|
||||
spin.stop(`saved ${pc.cyan(CODEX_AUTH_SECRET)} to Pullfrog (${scope})`);
|
||||
|
||||
setActiveSpin(null);
|
||||
p.outro("done.");
|
||||
} catch (error) {
|
||||
// mirror what `bail` does: stop the spinner with a red "failed" glyph
|
||||
// before clearing it, otherwise an in-flight spinner keeps animating
|
||||
// above the error message we're about to print.
|
||||
spin.stop(pc.red("failed"));
|
||||
setActiveSpin(null);
|
||||
const message = error instanceof Error ? error.message : String(error);
|
||||
p.log.error(message);
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
-188
@@ -1,188 +0,0 @@
|
||||
import { dirname } from "node:path";
|
||||
import * as core from "@actions/core";
|
||||
import arg from "arg";
|
||||
import { main } from "../main.ts";
|
||||
import { acquireInstallationToken, revokeInstallationToken } from "../utils/token.ts";
|
||||
|
||||
// GitHub Actions runs the action entry point with the node24 binary specified
|
||||
// in action.yml, but doesn't add that binary's directory to PATH. Without this,
|
||||
// spawned processes (pnpm, npm, etc.) resolve to the runner's default node (v20).
|
||||
process.env.PATH = `${dirname(process.execPath)}:${process.env.PATH}`;
|
||||
|
||||
const STATE_TOKEN = "token";
|
||||
|
||||
interface GhaCliParams {
|
||||
args: string[];
|
||||
prog: string;
|
||||
showHelp?: boolean;
|
||||
}
|
||||
|
||||
async function runMain(): Promise<void> {
|
||||
try {
|
||||
const result = await main();
|
||||
if (!result.success) {
|
||||
throw new Error(result.error || "agent execution failed");
|
||||
}
|
||||
} catch (error) {
|
||||
const errorMessage = error instanceof Error ? error.message : "unknown error occurred";
|
||||
core.setFailed(`action failed: ${errorMessage}`);
|
||||
}
|
||||
}
|
||||
|
||||
async function tokenMain(): Promise<void> {
|
||||
const reposInput = core.getInput("repos");
|
||||
const additionalRepos = reposInput
|
||||
? reposInput
|
||||
.split(",")
|
||||
.map((r) => r.trim())
|
||||
.filter(Boolean)
|
||||
: [];
|
||||
|
||||
const token = await acquireInstallationToken({ repos: additionalRepos });
|
||||
|
||||
core.setSecret(token);
|
||||
core.saveState(STATE_TOKEN, token);
|
||||
core.setOutput("token", token);
|
||||
|
||||
const scope = additionalRepos.length
|
||||
? `current repo + ${additionalRepos.join(", ")}`
|
||||
: "current repo only";
|
||||
core.info(`» installation token acquired (${scope})`);
|
||||
}
|
||||
|
||||
async function tokenPost(): Promise<void> {
|
||||
const token = core.getState(STATE_TOKEN);
|
||||
if (!token) {
|
||||
core.debug("no token found in state, skipping revocation");
|
||||
return;
|
||||
}
|
||||
await revokeInstallationToken(token);
|
||||
core.info("» installation token revoked");
|
||||
}
|
||||
|
||||
function printGhaUsage(params: { stream: typeof console.log; prog: string }): void {
|
||||
params.stream(`usage: ${params.prog} gha [subcommand]\n`);
|
||||
params.stream("run the github action runtime flow.");
|
||||
params.stream("");
|
||||
params.stream("subcommands:");
|
||||
params.stream(" token acquire a github app installation token");
|
||||
params.stream("");
|
||||
params.stream("options:");
|
||||
params.stream(" -h, --help show help");
|
||||
}
|
||||
|
||||
function printGhaTokenUsage(params: { stream: typeof console.log; prog: string }): void {
|
||||
params.stream(`usage: ${params.prog} gha token [--post]\n`);
|
||||
params.stream("acquire a github app installation token, or revoke it in the post step.");
|
||||
params.stream("");
|
||||
params.stream("options:");
|
||||
params.stream(" -h, --help show help");
|
||||
params.stream(" --post revoke the previously-acquired token (post-step usage only)");
|
||||
}
|
||||
|
||||
function parseGhaArgs(args: string[]) {
|
||||
return arg(
|
||||
{
|
||||
"--help": Boolean,
|
||||
"-h": "--help",
|
||||
},
|
||||
{
|
||||
argv: args,
|
||||
stopAtPositional: true,
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
function parseGhaTokenArgs(args: string[]) {
|
||||
return arg(
|
||||
{
|
||||
"--help": Boolean,
|
||||
"--post": Boolean,
|
||||
"-h": "--help",
|
||||
},
|
||||
{
|
||||
argv: args,
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
export async function runCli(params: GhaCliParams): Promise<void> {
|
||||
if (params.showHelp) {
|
||||
printGhaUsage({ stream: console.log, prog: params.prog });
|
||||
return;
|
||||
}
|
||||
|
||||
let parsed: ReturnType<typeof parseGhaArgs>;
|
||||
try {
|
||||
parsed = parseGhaArgs(params.args);
|
||||
} catch (error) {
|
||||
const message = error instanceof Error ? error.message : String(error);
|
||||
console.error(`${message}\n`);
|
||||
printGhaUsage({ stream: console.error, prog: params.prog });
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
if (parsed["--help"]) {
|
||||
printGhaUsage({ stream: console.log, prog: params.prog });
|
||||
return;
|
||||
}
|
||||
|
||||
const positional = parsed._;
|
||||
const subcommand = positional[0];
|
||||
|
||||
if (!subcommand) {
|
||||
await run(["gha"]);
|
||||
return;
|
||||
}
|
||||
|
||||
if (subcommand !== "token") {
|
||||
console.error(`unknown gha subcommand: ${subcommand}\n`);
|
||||
printGhaUsage({ stream: console.error, prog: params.prog });
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
// gha token [--post]
|
||||
let tokenParsed: ReturnType<typeof parseGhaTokenArgs>;
|
||||
try {
|
||||
tokenParsed = parseGhaTokenArgs(positional.slice(1));
|
||||
} catch (error) {
|
||||
const message = error instanceof Error ? error.message : String(error);
|
||||
console.error(`${message}\n`);
|
||||
printGhaTokenUsage({ stream: console.error, prog: params.prog });
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
if (tokenParsed["--help"]) {
|
||||
printGhaTokenUsage({ stream: console.log, prog: params.prog });
|
||||
return;
|
||||
}
|
||||
|
||||
if (tokenParsed._.length > 0) {
|
||||
console.error(`unexpected positional arguments for gha token: ${tokenParsed._.join(" ")}\n`);
|
||||
printGhaTokenUsage({ stream: console.error, prog: params.prog });
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
const normalizedArgs = ["gha", "token"];
|
||||
if (tokenParsed["--post"]) {
|
||||
normalizedArgs.push("--post");
|
||||
}
|
||||
await run(normalizedArgs);
|
||||
}
|
||||
|
||||
export async function run(args: string[]) {
|
||||
try {
|
||||
if (args.includes("token")) {
|
||||
if (args.includes("--post")) {
|
||||
await tokenPost();
|
||||
} else {
|
||||
await tokenMain();
|
||||
}
|
||||
} else {
|
||||
await runMain();
|
||||
}
|
||||
} catch (error) {
|
||||
const message = error instanceof Error ? error.message : String(error);
|
||||
core.setFailed(message);
|
||||
}
|
||||
}
|
||||
@@ -1,975 +0,0 @@
|
||||
import { execFileSync } from "node:child_process";
|
||||
import * as p from "@clack/prompts";
|
||||
import arg from "arg";
|
||||
import pc from "picocolors";
|
||||
import { modelAliases, type ProviderConfig, providers, resolveDisplayAlias } from "../models.ts";
|
||||
|
||||
const PULLFROG_API_URL = (process.env.PULLFROG_API_URL || "https://pullfrog.com").replace(
|
||||
/\/+$/,
|
||||
""
|
||||
);
|
||||
|
||||
function link(text: string, url: string): string {
|
||||
return `\x1b]8;;${url}\x07${text}\x1b]8;;\x07`;
|
||||
}
|
||||
|
||||
type CliProvider = {
|
||||
id: string;
|
||||
name: string;
|
||||
envVars: readonly string[];
|
||||
models: { value: string; label: string; hint?: string | undefined }[];
|
||||
};
|
||||
|
||||
function buildProviders(): CliProvider[] {
|
||||
return Object.entries(providers)
|
||||
.filter(([key]) => key !== "opencode" && key !== "openrouter" && key !== "bedrock")
|
||||
.map(([key, config]: [string, ProviderConfig]) => {
|
||||
// bedrock requires multi-secret setup (auth + region + model id) that
|
||||
// doesn't fit the single-paste flow below — direct users to
|
||||
// https://docs.pullfrog.com/bedrock instead. revisit once the init flow
|
||||
// supports multi-value setup. `hidden` excludes internal-only subagent
|
||||
// targets (e.g. openai/gpt-5.4) per #710.
|
||||
const aliases = modelAliases.filter(
|
||||
(a) => a.provider === key && !a.fallback && !a.routing && !a.hidden
|
||||
);
|
||||
const recommended = aliases.find((a) => a.preferred);
|
||||
const sorted = [...aliases].sort((a, b) => {
|
||||
if (a.preferred && !b.preferred) return -1;
|
||||
if (!a.preferred && b.preferred) return 1;
|
||||
return 0;
|
||||
});
|
||||
return {
|
||||
id: key,
|
||||
name: config.displayName,
|
||||
envVars: config.envVars,
|
||||
models: sorted.map((a) => ({
|
||||
value: a.slug,
|
||||
label: a.displayName,
|
||||
hint: a === recommended ? "recommended" : undefined,
|
||||
})),
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
const CLI_PROVIDERS = buildProviders();
|
||||
|
||||
function resolveModelProvider(slug: string): CliProvider | null {
|
||||
const providerId = slug.split("/")[0];
|
||||
return CLI_PROVIDERS.find((p) => p.id === providerId) ?? null;
|
||||
}
|
||||
|
||||
// ── helpers ──
|
||||
|
||||
// active spinner reference so bail/catch can clean up the terminal
|
||||
let activeSpin: ReturnType<typeof p.spinner> | null = null;
|
||||
|
||||
function bail(msg: string): never {
|
||||
if (activeSpin) {
|
||||
activeSpin.stop(pc.red("failed"));
|
||||
activeSpin = null;
|
||||
}
|
||||
p.cancel(msg);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
function handleCancel<T>(value: T | symbol): asserts value is T {
|
||||
if (p.isCancel(value)) {
|
||||
if (activeSpin) {
|
||||
activeSpin.stop(pc.red("canceled."));
|
||||
activeSpin = null;
|
||||
}
|
||||
p.cancel("canceled.");
|
||||
process.exit(0);
|
||||
}
|
||||
}
|
||||
|
||||
function getGhToken(): string {
|
||||
let token: string;
|
||||
try {
|
||||
token = execFileSync("gh", ["auth", "token"], { encoding: "utf-8" }).trim();
|
||||
} catch {
|
||||
bail(
|
||||
`gh cli not found or not authenticated.\n` +
|
||||
` ${pc.dim("install:")} https://cli.github.com\n` +
|
||||
` ${pc.dim("then:")} gh auth login`
|
||||
);
|
||||
}
|
||||
if (!token) {
|
||||
bail(
|
||||
`gh cli returned an empty token. try re-authenticating:\n` +
|
||||
` ${pc.dim("run:")} gh auth login`
|
||||
);
|
||||
}
|
||||
return token;
|
||||
}
|
||||
|
||||
type GhApiResult<T = unknown> = { data: T; scopes: string | null };
|
||||
|
||||
async function ghApi<T = unknown>(path: string, token: string): Promise<GhApiResult<T>> {
|
||||
const controller = new AbortController();
|
||||
const timeout = setTimeout(() => controller.abort(), 30_000);
|
||||
try {
|
||||
const response = await fetch(`https://api.github.com${path}`, {
|
||||
headers: {
|
||||
authorization: `Bearer ${token}`,
|
||||
accept: "application/vnd.github+json",
|
||||
"x-github-api-version": "2022-11-28",
|
||||
},
|
||||
signal: controller.signal,
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
const body = await response.text().catch(() => "");
|
||||
throw new Error(`github api ${path} returned ${response.status}: ${body}`);
|
||||
}
|
||||
|
||||
const data = (await response.json().catch(() => {
|
||||
throw new Error(`github api ${path} returned non-JSON response`);
|
||||
})) as T;
|
||||
return { data, scopes: response.headers.get("x-oauth-scopes") };
|
||||
} finally {
|
||||
clearTimeout(timeout);
|
||||
}
|
||||
}
|
||||
|
||||
function parseGitRemote(): { owner: string; repo: string } {
|
||||
let url: string;
|
||||
try {
|
||||
url = execFileSync("git", ["remote", "get-url", "origin"], { encoding: "utf-8" }).trim();
|
||||
} catch {
|
||||
bail("not a git repository or no 'origin' remote found.");
|
||||
}
|
||||
|
||||
const match = url.match(/github\.com(?::\d+)?[:/]+([^/]+)\/(.+?)(?:\.git)?(?:\/)?$/);
|
||||
if (!match) bail(`could not parse github owner/repo from remote: ${url}`);
|
||||
return { owner: match[1], repo: match[2] };
|
||||
}
|
||||
|
||||
function openBrowser(url: string) {
|
||||
try {
|
||||
const platform = process.platform;
|
||||
if (platform === "darwin") execFileSync("open", [url], { stdio: "ignore" });
|
||||
else if (platform === "win32")
|
||||
execFileSync("cmd", ["/c", "start", "", url], { stdio: "ignore" });
|
||||
else execFileSync("xdg-open", [url], { stdio: "ignore" });
|
||||
} catch {
|
||||
// headless/SSH — user will open the URL manually
|
||||
}
|
||||
}
|
||||
|
||||
// ── Pullfrog API ──
|
||||
|
||||
type SecretsApiData = {
|
||||
error?: string;
|
||||
appSlug?: string;
|
||||
installationId?: number | null;
|
||||
repositorySelection?: string | null;
|
||||
isOrg?: boolean;
|
||||
accessible?: boolean;
|
||||
repoSecrets?: string[];
|
||||
orgSecrets?: string[];
|
||||
pullfrogSecrets?: string[];
|
||||
repoStatus?: string | null;
|
||||
repoModel?: string | null;
|
||||
hasRuns?: boolean;
|
||||
};
|
||||
|
||||
type SecretsInfo = {
|
||||
isOrg: boolean;
|
||||
installationId: number | null;
|
||||
secretsAccessible: boolean;
|
||||
repoSecrets: string[];
|
||||
orgSecrets: string[];
|
||||
pullfrogSecrets: string[];
|
||||
model: string | null;
|
||||
hasRuns: boolean;
|
||||
};
|
||||
|
||||
type InstallationNotFound = {
|
||||
appSlug: string;
|
||||
installationId: number | null;
|
||||
repositorySelection: "all" | "selected" | null;
|
||||
isOrg: boolean;
|
||||
};
|
||||
|
||||
type StatusResult =
|
||||
| ({ installed: true } & SecretsInfo)
|
||||
| ({ installed: false } & InstallationNotFound);
|
||||
|
||||
type SessionApiData = {
|
||||
id?: string;
|
||||
installed?: boolean;
|
||||
error?: string;
|
||||
};
|
||||
|
||||
type SetupApiData = {
|
||||
error?: string;
|
||||
success?: boolean;
|
||||
already_existed?: boolean;
|
||||
pull_request_url?: string;
|
||||
commit_url?: string;
|
||||
hash?: string;
|
||||
};
|
||||
|
||||
type DispatchApiData = {
|
||||
error?: string;
|
||||
url?: string;
|
||||
};
|
||||
|
||||
type ApiResult<T = Record<string, unknown>> = { ok: boolean; status: number; data: T };
|
||||
|
||||
async function pullfrogApi<T = Record<string, unknown>>(ctx: {
|
||||
path: string;
|
||||
token: string;
|
||||
method?: string;
|
||||
body?: Record<string, unknown>;
|
||||
}): Promise<ApiResult<T>> {
|
||||
const headers: Record<string, string> = { authorization: `Bearer ${ctx.token}` };
|
||||
if (ctx.body) headers["content-type"] = "application/json";
|
||||
const controller = new AbortController();
|
||||
const timeout = setTimeout(() => controller.abort(), 30_000);
|
||||
try {
|
||||
const response = await fetch(`${PULLFROG_API_URL}${ctx.path}`, {
|
||||
method: ctx.method || "GET",
|
||||
headers,
|
||||
body: ctx.body ? JSON.stringify(ctx.body) : null,
|
||||
signal: controller.signal,
|
||||
});
|
||||
const data = (await response.json().catch(() => ({}))) as T;
|
||||
return { ok: response.ok, status: response.status, data };
|
||||
} finally {
|
||||
clearTimeout(timeout);
|
||||
}
|
||||
}
|
||||
|
||||
async function fetchStatus(ctx: {
|
||||
token: string;
|
||||
owner: string;
|
||||
repo: string;
|
||||
}): Promise<StatusResult> {
|
||||
const result = await pullfrogApi<SecretsApiData>({
|
||||
path: `/api/cli/secrets?owner=${encodeURIComponent(ctx.owner)}&repo=${encodeURIComponent(ctx.repo)}`,
|
||||
token: ctx.token,
|
||||
});
|
||||
|
||||
if (!result.ok) {
|
||||
const errorMsg = result.data.error || "";
|
||||
if (result.status === 401) bail("invalid or expired github token.");
|
||||
if (result.status === 404) {
|
||||
const sel = result.data.repositorySelection;
|
||||
if (!result.data.appSlug) bail("server did not return appSlug");
|
||||
return {
|
||||
installed: false,
|
||||
appSlug: result.data.appSlug,
|
||||
installationId:
|
||||
typeof result.data.installationId === "number" ? result.data.installationId : null,
|
||||
repositorySelection: sel === "all" || sel === "selected" ? sel : null,
|
||||
isOrg: result.data.isOrg === true,
|
||||
};
|
||||
}
|
||||
bail(errorMsg || `secrets check failed (${result.status})`);
|
||||
}
|
||||
|
||||
return {
|
||||
installed: true,
|
||||
isOrg: result.data.isOrg === true,
|
||||
installationId:
|
||||
typeof result.data.installationId === "number" ? result.data.installationId : null,
|
||||
secretsAccessible: result.data.accessible !== false,
|
||||
repoSecrets: result.data.repoSecrets || [],
|
||||
orgSecrets: result.data.orgSecrets || [],
|
||||
pullfrogSecrets: result.data.pullfrogSecrets || [],
|
||||
model: result.data.repoModel ?? null,
|
||||
hasRuns: result.data.hasRuns === true,
|
||||
};
|
||||
}
|
||||
|
||||
// ── sessions ──
|
||||
|
||||
async function createSession(ctx: {
|
||||
token: string;
|
||||
owner: string;
|
||||
repo: string;
|
||||
}): Promise<string | null> {
|
||||
try {
|
||||
const result = await pullfrogApi<SessionApiData>({
|
||||
path: "/api/cli/session",
|
||||
token: ctx.token,
|
||||
method: "POST",
|
||||
body: { owner: ctx.owner.toLowerCase(), repo: ctx.repo.toLowerCase() },
|
||||
});
|
||||
if (!result.ok || !result.data.id) return null;
|
||||
return result.data.id;
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
type PollResult = "installed" | "pending" | "expired";
|
||||
|
||||
async function pollSession(ctx: { token: string; sessionId: string }): Promise<PollResult> {
|
||||
const result = await pullfrogApi<SessionApiData>({
|
||||
path: `/api/cli/session/${ctx.sessionId}`,
|
||||
token: ctx.token,
|
||||
});
|
||||
if (result.status === 410) return "expired";
|
||||
if (!result.ok) return "pending";
|
||||
return result.data.installed === true ? "installed" : "pending";
|
||||
}
|
||||
|
||||
function cleanupSession(ctx: { token: string; sessionId: string }) {
|
||||
void pullfrogApi({
|
||||
path: `/api/cli/session/${ctx.sessionId}`,
|
||||
token: ctx.token,
|
||||
method: "DELETE",
|
||||
}).catch(() => {});
|
||||
}
|
||||
|
||||
// ── installation ──
|
||||
|
||||
const SESSION_POLL_MS = 750;
|
||||
const FALLBACK_POLL_MS = 5_000;
|
||||
const HINT_AFTER_MS = 10_000;
|
||||
const TIMEOUT_MS = 3 * 60 * 1000;
|
||||
|
||||
function listenForKey(key: string) {
|
||||
let triggered = false;
|
||||
const onData = (data: Buffer) => {
|
||||
if (data.toString().toLowerCase() === key) triggered = true;
|
||||
};
|
||||
process.stdin.setRawMode?.(true);
|
||||
process.stdin.resume();
|
||||
process.stdin.on("data", onData);
|
||||
return {
|
||||
consume() {
|
||||
if (!triggered) return false;
|
||||
triggered = false;
|
||||
return true;
|
||||
},
|
||||
stop() {
|
||||
process.stdin.removeListener("data", onData);
|
||||
process.stdin.setRawMode?.(false);
|
||||
process.stdin.pause();
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
function installationConfigUrl(ctx: { owner: string; installationId: number; isOrg: boolean }) {
|
||||
return ctx.isOrg
|
||||
? `https://github.com/organizations/${ctx.owner}/settings/installations/${ctx.installationId}`
|
||||
: `https://github.com/settings/installations/${ctx.installationId}`;
|
||||
}
|
||||
|
||||
async function ensureInstallation(ctx: {
|
||||
token: string;
|
||||
owner: string;
|
||||
repo: string;
|
||||
}): Promise<SecretsInfo> {
|
||||
activeSpin!.start("checking pullfrog app installation");
|
||||
|
||||
const initial = await fetchStatus(ctx);
|
||||
if (initial.installed) {
|
||||
activeSpin!.stop(`pullfrog app is installed on ${pc.cyan(`@${ctx.owner}`)}`);
|
||||
if (initial.installationId) {
|
||||
const configUrl = installationConfigUrl({
|
||||
owner: ctx.owner,
|
||||
installationId: initial.installationId,
|
||||
isOrg: initial.isOrg,
|
||||
});
|
||||
process.stdout.write(`${pc.gray(p.S_BAR)} ${link(pc.dim(configUrl), configUrl)}\n`);
|
||||
}
|
||||
return initial;
|
||||
}
|
||||
|
||||
const sessionId = await createSession(ctx);
|
||||
|
||||
if (initial.installationId) {
|
||||
const repoRef = pc.bold(`${ctx.owner}/${ctx.repo}`);
|
||||
const configUrl = installationConfigUrl({
|
||||
owner: ctx.owner,
|
||||
installationId: initial.installationId,
|
||||
isOrg: initial.isOrg,
|
||||
});
|
||||
activeSpin!.stop(`pullfrog is installed on selected repos, but ${repoRef} is not included.`);
|
||||
p.log.info(
|
||||
`add it under "Repository access" on the installation config page.\n ${pc.dim(configUrl)}`
|
||||
);
|
||||
const openIt = await p.confirm({ message: "open browser?", active: "yes", inactive: "no" });
|
||||
handleCancel(openIt);
|
||||
if (openIt) openBrowser(configUrl);
|
||||
} else {
|
||||
activeSpin!.stop("pullfrog app not installed");
|
||||
const installUrl = `https://github.com/apps/${initial.appSlug}/installations/select_target?state=cli`;
|
||||
p.log.info(`opening browser to install...\n ${pc.dim(installUrl)}`);
|
||||
openBrowser(installUrl);
|
||||
}
|
||||
|
||||
const isRepoAccessUpdate = !!initial.installationId;
|
||||
const baseMsg = isRepoAccessUpdate
|
||||
? "once you've added the repo, onboarding will proceed automatically"
|
||||
: "once you've installed the app, onboarding will proceed automatically";
|
||||
activeSpin!.start(baseMsg);
|
||||
|
||||
let activeSessionId = sessionId;
|
||||
let pollMs = activeSessionId ? SESSION_POLL_MS : FALLBACK_POLL_MS;
|
||||
const listener = listenForKey("r");
|
||||
const startedAt = Date.now();
|
||||
let hintShown = false;
|
||||
|
||||
try {
|
||||
while (Date.now() - startedAt < TIMEOUT_MS) {
|
||||
await new Promise((r) => setTimeout(r, pollMs));
|
||||
|
||||
if (!hintShown && Date.now() - startedAt > HINT_AFTER_MS) {
|
||||
activeSpin!.message(`${baseMsg} ${pc.dim("(press r to recheck manually)")}`);
|
||||
hintShown = true;
|
||||
}
|
||||
|
||||
const doneMsg = isRepoAccessUpdate ? "repo access confirmed" : "pullfrog app installed";
|
||||
|
||||
if (listener.consume()) {
|
||||
activeSpin!.message("rechecking via GitHub API");
|
||||
try {
|
||||
const status = await fetchStatus(ctx);
|
||||
if (status.installed) {
|
||||
if (activeSessionId) cleanupSession({ token: ctx.token, sessionId: activeSessionId });
|
||||
activeSpin!.stop(doneMsg);
|
||||
return status;
|
||||
}
|
||||
} catch {
|
||||
// network error — keep going
|
||||
}
|
||||
activeSpin!.message(`${baseMsg} ${pc.dim("(press r to recheck manually)")}`);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (activeSessionId) {
|
||||
// fast path: lightweight DB session poll (no GitHub API calls)
|
||||
try {
|
||||
const result = await pollSession({ token: ctx.token, sessionId: activeSessionId });
|
||||
if (result === "expired") {
|
||||
activeSessionId = null;
|
||||
pollMs = FALLBACK_POLL_MS;
|
||||
continue;
|
||||
}
|
||||
if (result === "installed") {
|
||||
const status = await fetchStatus(ctx);
|
||||
if (status.installed) {
|
||||
cleanupSession({ token: ctx.token, sessionId: activeSessionId });
|
||||
activeSpin!.stop(doneMsg);
|
||||
return status;
|
||||
}
|
||||
}
|
||||
} catch {
|
||||
// transient error — keep polling
|
||||
}
|
||||
} else {
|
||||
// no session available — poll fetchStatus directly at slower interval
|
||||
try {
|
||||
const status = await fetchStatus(ctx);
|
||||
if (status.installed) {
|
||||
activeSpin!.stop(doneMsg);
|
||||
return status;
|
||||
}
|
||||
} catch {
|
||||
// transient error — keep polling
|
||||
}
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
listener.stop();
|
||||
}
|
||||
|
||||
if (activeSessionId) cleanupSession({ token: ctx.token, sessionId: activeSessionId });
|
||||
bail(
|
||||
isRepoAccessUpdate
|
||||
? "timed out waiting for repo access.\n" +
|
||||
` ${pc.dim("add the repo, then re-run:")} npx pullfrog init`
|
||||
: "timed out waiting for app installation.\n" +
|
||||
` ${pc.dim("if your org requires admin approval, ask an admin to approve,")}\n` +
|
||||
` ${pc.dim("then re-run:")} npx pullfrog init`
|
||||
);
|
||||
}
|
||||
|
||||
// ── secret management ──
|
||||
|
||||
type StorageMethod = "pullfrog" | "github";
|
||||
type SecretScope = "account" | "repo";
|
||||
|
||||
type SecretSetResult = { saved: boolean; orgFailed: boolean };
|
||||
|
||||
function setGhSecret(ctx: {
|
||||
name: string;
|
||||
value: string;
|
||||
org: string | null;
|
||||
repoSlug: string;
|
||||
}): SecretSetResult {
|
||||
let orgFailed = false;
|
||||
|
||||
if (ctx.org) {
|
||||
try {
|
||||
execFileSync("gh", ["secret", "set", ctx.name, "--org", ctx.org, "--visibility", "all"], {
|
||||
input: ctx.value,
|
||||
stdio: ["pipe", "ignore", "pipe"],
|
||||
encoding: "utf-8",
|
||||
});
|
||||
return { saved: true, orgFailed: false };
|
||||
} catch {
|
||||
orgFailed = true;
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
execFileSync("gh", ["secret", "set", ctx.name, "--repo", ctx.repoSlug], {
|
||||
input: ctx.value,
|
||||
stdio: ["pipe", "ignore", "pipe"],
|
||||
encoding: "utf-8",
|
||||
});
|
||||
return { saved: true, orgFailed };
|
||||
} catch {
|
||||
return { saved: false, orgFailed };
|
||||
}
|
||||
}
|
||||
|
||||
type PullfrogSecretResult = { saved: boolean; error: string };
|
||||
|
||||
async function setPullfrogSecret(ctx: {
|
||||
token: string;
|
||||
owner: string;
|
||||
repo: string;
|
||||
name: string;
|
||||
value: string;
|
||||
scope: SecretScope;
|
||||
}): Promise<PullfrogSecretResult> {
|
||||
const result = await pullfrogApi<{ success?: boolean; error?: string }>({
|
||||
path: "/api/cli/secrets",
|
||||
token: ctx.token,
|
||||
method: "POST",
|
||||
body: {
|
||||
owner: ctx.owner,
|
||||
repo: ctx.repo,
|
||||
name: ctx.name,
|
||||
value: ctx.value,
|
||||
scope: ctx.scope,
|
||||
},
|
||||
});
|
||||
if (result.ok && result.data.success === true) {
|
||||
return { saved: true, error: "" };
|
||||
}
|
||||
return { saved: false, error: result.data.error || `api returned ${result.status}` };
|
||||
}
|
||||
|
||||
async function promptScope(ctx: { owner: string; repo: string }): Promise<SecretScope> {
|
||||
const scope = await p.select<SecretScope>({
|
||||
message: "secret scope",
|
||||
options: [
|
||||
{ value: "account", label: `${ctx.owner} organization`, hint: "shared across repos" },
|
||||
{ value: "repo", label: `${ctx.owner}/${ctx.repo} only` },
|
||||
],
|
||||
});
|
||||
handleCancel(scope);
|
||||
return scope;
|
||||
}
|
||||
|
||||
async function handleSecret(ctx: {
|
||||
token: string;
|
||||
owner: string;
|
||||
repo: string;
|
||||
provider: CliProvider;
|
||||
secrets: SecretsInfo;
|
||||
}): Promise<void> {
|
||||
const repoSecretsUrl = `https://github.com/${ctx.owner}/${ctx.repo}/settings/secrets/actions`;
|
||||
|
||||
const matches: { name: string; source: string }[] = [];
|
||||
for (const v of ctx.provider.envVars) {
|
||||
if (ctx.secrets.pullfrogSecrets.includes(v)) matches.push({ name: v, source: "pullfrog" });
|
||||
else if (ctx.secrets.secretsAccessible && ctx.secrets.orgSecrets.includes(v))
|
||||
matches.push({ name: v, source: "org secret" });
|
||||
else if (ctx.secrets.secretsAccessible && ctx.secrets.repoSecrets.includes(v))
|
||||
matches.push({ name: v, source: "repo secret" });
|
||||
}
|
||||
|
||||
if (matches.length > 0) {
|
||||
activeSpin!.start("");
|
||||
activeSpin!.stop("secrets already configured");
|
||||
for (const m of matches) {
|
||||
process.stdout.write(
|
||||
`${pc.gray(p.S_BAR)} ${pc.cyan(m.name)} ${pc.dim(`(${m.source})`)}\n`
|
||||
);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
if (!ctx.secrets.secretsAccessible) {
|
||||
p.log.info(`could not verify GitHub secrets (app lacks permission)`);
|
||||
}
|
||||
|
||||
const hasOAuthOption = ctx.provider.envVars.includes("CLAUDE_CODE_OAUTH_TOKEN");
|
||||
let envVar = ctx.provider.envVars[0];
|
||||
|
||||
if (hasOAuthOption) {
|
||||
const authMethod = await p.select({
|
||||
message: "which credential do you want to use?",
|
||||
options: [
|
||||
{
|
||||
value: "oauth",
|
||||
label: "Claude Code OAuth token",
|
||||
hint: `run ${pc.cyan("claude setup-token")} — works with Pro/Max subscriptions`,
|
||||
},
|
||||
{
|
||||
value: "api",
|
||||
label: "Anthropic API key",
|
||||
hint: "from console.anthropic.com",
|
||||
},
|
||||
],
|
||||
});
|
||||
handleCancel(authMethod);
|
||||
if (authMethod === "oauth") envVar = "CLAUDE_CODE_OAUTH_TOKEN";
|
||||
}
|
||||
|
||||
const method = await p.select<StorageMethod>({
|
||||
message: `where should ${pc.cyan(envVar)} be stored?`,
|
||||
options: [
|
||||
{
|
||||
value: "pullfrog",
|
||||
label: "Pullfrog",
|
||||
hint: "recommended — auto-injected, no workflow changes",
|
||||
},
|
||||
{
|
||||
value: "github",
|
||||
label: "GitHub Actions secret",
|
||||
hint: "requires env block in pullfrog.yml",
|
||||
},
|
||||
],
|
||||
});
|
||||
handleCancel(method);
|
||||
|
||||
const pasteLabel =
|
||||
envVar === "CLAUDE_CODE_OAUTH_TOKEN" ? "OAuth token" : `${ctx.provider.name} API key`;
|
||||
const apiKey = await p.password({
|
||||
message: `paste your ${pasteLabel} ${pc.dim("(Enter to skip)")}`,
|
||||
mask: "*",
|
||||
validate: () => undefined,
|
||||
});
|
||||
handleCancel(apiKey);
|
||||
|
||||
if (!apiKey) {
|
||||
p.log.info(
|
||||
`skipped — set it manually at:\n ${pc.dim(method === "pullfrog" ? `${PULLFROG_API_URL}/console/${ctx.owner}` : repoSecretsUrl)}`
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
if (method === "pullfrog") {
|
||||
const scope: SecretScope = ctx.secrets.isOrg ? await promptScope(ctx) : "account";
|
||||
|
||||
activeSpin!.start(`saving ${envVar}`);
|
||||
let saveResult: PullfrogSecretResult;
|
||||
try {
|
||||
saveResult = await setPullfrogSecret({
|
||||
token: ctx.token,
|
||||
owner: ctx.owner,
|
||||
repo: ctx.repo,
|
||||
name: envVar,
|
||||
value: apiKey,
|
||||
scope,
|
||||
});
|
||||
} catch (error) {
|
||||
activeSpin!.stop(pc.red("could not save secret"));
|
||||
p.log.warn(
|
||||
`${error instanceof Error ? error.message : "network error"}\n set it manually at: ${pc.dim(`${PULLFROG_API_URL}/console/${ctx.owner}`)}`
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
if (saveResult.saved) {
|
||||
activeSpin!.stop(`saved ${pc.cyan(envVar)} to Pullfrog`);
|
||||
} else {
|
||||
activeSpin!.stop(pc.red("could not save secret"));
|
||||
p.log.warn(
|
||||
`${saveResult.error}\n set it manually at: ${pc.dim(`${PULLFROG_API_URL}/console/${ctx.owner}`)}`
|
||||
);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
// github actions secret path
|
||||
let org: string | null = null;
|
||||
if (ctx.secrets.isOrg) {
|
||||
const scope = await promptScope(ctx);
|
||||
org = scope === "account" ? ctx.owner : null;
|
||||
}
|
||||
|
||||
const secretsUrl = org
|
||||
? `https://github.com/organizations/${org}/settings/secrets/actions`
|
||||
: repoSecretsUrl;
|
||||
|
||||
activeSpin!.start(`saving ${envVar}`);
|
||||
const secretResult = setGhSecret({
|
||||
name: envVar,
|
||||
value: apiKey,
|
||||
org,
|
||||
repoSlug: `${ctx.owner}/${ctx.repo}`,
|
||||
});
|
||||
if (secretResult.saved) {
|
||||
activeSpin!.stop(
|
||||
`saved ${pc.cyan(envVar)} to ${org && !secretResult.orgFailed ? `${pc.dim(ctx.owner)} org secret` : "GitHub Actions secret"}`
|
||||
);
|
||||
if (secretResult.orgFailed) {
|
||||
p.log.warn("org secret failed (admin access required) — saved as repo secret instead");
|
||||
}
|
||||
} else {
|
||||
activeSpin!.stop(pc.red("could not set secret"));
|
||||
p.log.warn(`set it manually at:\n ${pc.dim(secretsUrl)}`);
|
||||
}
|
||||
}
|
||||
|
||||
async function promptTestRun(ctx: { token: string; owner: string; repo: string }): Promise<void> {
|
||||
const proceed = await p.select({
|
||||
message: "test your installation?",
|
||||
options: [
|
||||
{ value: true, label: "yes", hint: "dispatches a test run in your GitHub Actions" },
|
||||
{ value: false, label: "skip" },
|
||||
],
|
||||
});
|
||||
handleCancel(proceed);
|
||||
if (!proceed) return;
|
||||
|
||||
activeSpin!.start("dispatching test run");
|
||||
const result = await pullfrogApi<DispatchApiData>({
|
||||
path: "/api/cli/dispatch",
|
||||
token: ctx.token,
|
||||
method: "POST",
|
||||
body: { owner: ctx.owner, repo: ctx.repo, prompt: "Tell me a joke" },
|
||||
});
|
||||
|
||||
if (!result.ok) {
|
||||
activeSpin!.stop(pc.red("could not dispatch"));
|
||||
p.log.warn(result.data.error || `dispatch failed (${result.status})`);
|
||||
return;
|
||||
}
|
||||
|
||||
activeSpin!.stop("dispatched test run");
|
||||
if (result.data.url) {
|
||||
process.stdout.write(
|
||||
`${pc.gray(p.S_BAR)} ${link(pc.dim(result.data.url), result.data.url)}\n`
|
||||
);
|
||||
openBrowser(result.data.url);
|
||||
}
|
||||
}
|
||||
|
||||
// ── main ──
|
||||
|
||||
async function main() {
|
||||
p.intro(pc.bgGreen(pc.black(" pullfrog ")));
|
||||
|
||||
const spin = p.spinner();
|
||||
activeSpin = spin;
|
||||
|
||||
// 1. authenticate
|
||||
spin.start("authenticating with github");
|
||||
const token = getGhToken();
|
||||
const userResult = await ghApi<{ login: string }>("/user", token);
|
||||
const user = userResult.data;
|
||||
|
||||
// gho_ tokens from `gh auth login` expose scopes via x-oauth-scopes header.
|
||||
// fine-grained PATs (github_pat_) don't return scopes — they pass this check.
|
||||
// split on ", " and match exact scope — .includes("repo") would false-positive on "public_repo"
|
||||
const scopeSet = userResult.scopes !== null ? new Set(userResult.scopes.split(", ")) : null;
|
||||
if (scopeSet !== null && !scopeSet.has("repo")) {
|
||||
bail(
|
||||
`your token is missing the ${pc.bold('"repo"')} scope.\n` +
|
||||
` ${pc.dim("run:")} gh auth refresh --scopes repo\n` +
|
||||
` ${pc.dim("then:")} npx pullfrog init`
|
||||
);
|
||||
}
|
||||
|
||||
spin.stop(`hello, ${pc.cyan(`@${user.login}`)}`);
|
||||
|
||||
// 2. detect repo
|
||||
spin.start("detecting repository");
|
||||
const remote = parseGitRemote();
|
||||
spin.stop(`detected repo ${pc.cyan(`${remote.owner}/${remote.repo}`)}`);
|
||||
|
||||
// 3. ensure app installation + check secrets
|
||||
const secrets = await ensureInstallation({ token, owner: remote.owner, repo: remote.repo });
|
||||
|
||||
// 4. select provider + model (skip if already set)
|
||||
let model: string;
|
||||
let provider: CliProvider;
|
||||
|
||||
if (secrets.model) {
|
||||
model = secrets.model;
|
||||
const resolved = resolveModelProvider(secrets.model);
|
||||
if (!resolved) bail(`unknown model provider: ${secrets.model}`);
|
||||
provider = resolved;
|
||||
// walk the fallback chain so a deprecated stored slug shows the model
|
||||
// the run will actually execute against (e.g. "GPT", not "GPT Codex").
|
||||
const displayAlias = resolveDisplayAlias(secrets.model);
|
||||
const label = displayAlias ? displayAlias.displayName : secrets.model;
|
||||
spin.start("");
|
||||
spin.stop(`using model ${pc.cyan(label)}`);
|
||||
} else {
|
||||
const providerId = await p.select({
|
||||
message: "select your preferred model provider",
|
||||
options: CLI_PROVIDERS.map((cp) => ({
|
||||
value: cp.id,
|
||||
label: cp.name,
|
||||
})),
|
||||
});
|
||||
handleCancel(providerId);
|
||||
|
||||
const found = CLI_PROVIDERS.find((cp) => cp.id === providerId);
|
||||
if (!found) bail(`unknown provider: ${providerId}`);
|
||||
provider = found;
|
||||
|
||||
if (provider.models.length === 1) {
|
||||
model = provider.models[0].value;
|
||||
spin.start("");
|
||||
spin.stop(`using ${pc.bold(provider.models[0].label)}`);
|
||||
} else {
|
||||
const recommendedModel = provider.models.find((m) => m.hint === "recommended");
|
||||
const options = provider.models.map((m) => {
|
||||
if (m.hint) return { value: m.value, label: m.label, hint: m.hint };
|
||||
return { value: m.value, label: m.label };
|
||||
});
|
||||
const selected = await p.select(
|
||||
recommendedModel
|
||||
? { message: "select model", initialValue: recommendedModel.value, options }
|
||||
: { message: "select model", options }
|
||||
);
|
||||
handleCancel(selected);
|
||||
model = selected;
|
||||
}
|
||||
}
|
||||
|
||||
// 5. check/set secret
|
||||
await handleSecret({ token, owner: remote.owner, repo: remote.repo, provider, secrets });
|
||||
|
||||
// 6. create workflow
|
||||
spin.start("creating pullfrog.yml workflow");
|
||||
|
||||
const result = await pullfrogApi<SetupApiData>({
|
||||
path: "/api/cli/setup",
|
||||
token,
|
||||
method: "POST",
|
||||
body: { owner: remote.owner, repo: remote.repo, model },
|
||||
});
|
||||
|
||||
if (!result.ok) {
|
||||
bail(result.data.error || `api returned ${result.status}`);
|
||||
}
|
||||
|
||||
let skipTestRun = false;
|
||||
|
||||
if (result.data.already_existed) {
|
||||
spin.stop("pullfrog.yml already exists");
|
||||
} else if (result.data.pull_request_url) {
|
||||
spin.stop("opened pull request with pullfrog.yml");
|
||||
process.stdout.write(
|
||||
`${pc.gray(p.S_BAR)} ${link(pc.dim(result.data.pull_request_url), result.data.pull_request_url)}\n`
|
||||
);
|
||||
openBrowser(result.data.pull_request_url);
|
||||
|
||||
const merged = await p.select({
|
||||
message: "merge the PR to activate pullfrog, then continue",
|
||||
options: [
|
||||
{ value: true, label: "continue", hint: "PR has been merged" },
|
||||
{ value: false, label: "skip" },
|
||||
],
|
||||
});
|
||||
handleCancel(merged);
|
||||
if (!merged) skipTestRun = true;
|
||||
} else {
|
||||
const short = result.data.hash?.slice(0, 7);
|
||||
spin.stop(
|
||||
short ? `committed pullfrog.yml to repo ${pc.dim(short)}` : "committed pullfrog.yml to repo"
|
||||
);
|
||||
}
|
||||
|
||||
if (!skipTestRun && !secrets.hasRuns) {
|
||||
await promptTestRun({ token, owner: remote.owner, repo: remote.repo });
|
||||
}
|
||||
|
||||
const consoleUrl = `${PULLFROG_API_URL}/console/${remote.owner}/${remote.repo}`;
|
||||
spin.start("");
|
||||
spin.stop("repo is configurable via the Pullfrog dashboard");
|
||||
process.stdout.write(`${pc.gray(p.S_BAR)} ${link(pc.dim(consoleUrl), consoleUrl)}\n`);
|
||||
activeSpin = null;
|
||||
p.outro("done.");
|
||||
}
|
||||
|
||||
interface InitCliParams {
|
||||
args: string[];
|
||||
prog: string;
|
||||
showHelp?: boolean;
|
||||
}
|
||||
|
||||
function printInitUsage(params: { stream: typeof console.log; prog: string }): void {
|
||||
params.stream(`usage: ${params.prog} init\n`);
|
||||
params.stream("set up pullfrog on the current repository.");
|
||||
params.stream("");
|
||||
params.stream("options:");
|
||||
params.stream(" -h, --help show help");
|
||||
}
|
||||
|
||||
function parseInitArgs(args: string[]) {
|
||||
return arg(
|
||||
{
|
||||
"--help": Boolean,
|
||||
"-h": "--help",
|
||||
},
|
||||
{
|
||||
argv: args,
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
export async function runCli(params: InitCliParams): Promise<void> {
|
||||
if (params.showHelp) {
|
||||
printInitUsage({ stream: console.log, prog: params.prog });
|
||||
return;
|
||||
}
|
||||
|
||||
let parsed: ReturnType<typeof parseInitArgs>;
|
||||
try {
|
||||
parsed = parseInitArgs(params.args);
|
||||
} catch (error) {
|
||||
const message = error instanceof Error ? error.message : String(error);
|
||||
console.error(`${message}\n`);
|
||||
printInitUsage({ stream: console.error, prog: params.prog });
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
if (parsed["--help"]) {
|
||||
printInitUsage({ stream: console.log, prog: params.prog });
|
||||
return;
|
||||
}
|
||||
|
||||
if (parsed._.length > 0) {
|
||||
console.error(`unexpected positional arguments for init: ${parsed._.join(" ")}\n`);
|
||||
printInitUsage({ stream: console.error, prog: params.prog });
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
await run();
|
||||
}
|
||||
|
||||
export async function run() {
|
||||
try {
|
||||
await main();
|
||||
} catch (error) {
|
||||
if (activeSpin) {
|
||||
activeSpin.stop(pc.red("failed"));
|
||||
activeSpin = null;
|
||||
}
|
||||
const msg =
|
||||
error instanceof Error && error.name === "AbortError"
|
||||
? "request timed out — check your network connection and try again"
|
||||
: error instanceof Error
|
||||
? error.message
|
||||
: String(error);
|
||||
p.log.error(msg);
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
+65
@@ -0,0 +1,65 @@
|
||||
import type { AggregatedReview, Finding, ReviewSeverity } from "./types.ts";
|
||||
|
||||
const SEVERITY_ORDER: ReviewSeverity[] = ["error", "warning", "nit"];
|
||||
|
||||
const SEVERITY_LABEL: Record<ReviewSeverity, string> = {
|
||||
error: "Errors",
|
||||
warning: "Warnings",
|
||||
nit: "Nits",
|
||||
};
|
||||
|
||||
const SEVERITY_EMOJI: Record<ReviewSeverity, string> = {
|
||||
error: "🔴",
|
||||
warning: "🟡",
|
||||
nit: "🔵",
|
||||
};
|
||||
|
||||
function renderGroup(severity: ReviewSeverity, findings: Finding[]): string {
|
||||
const items = findings.map(
|
||||
(f) => `**\`${f.filename}\`** line ${f.line}\n> ${f.comment}`,
|
||||
);
|
||||
return `### ${SEVERITY_EMOJI[severity]} ${SEVERITY_LABEL[severity]} (${findings.length})\n\n${items.join("\n\n")}`;
|
||||
}
|
||||
|
||||
export function formatReview(
|
||||
review: AggregatedReview,
|
||||
files: string[],
|
||||
model: string,
|
||||
): string {
|
||||
console.log(
|
||||
`Formatting review for ${files.length} file${files.length === 1 ? "" : "s"} with model ${model}...`,
|
||||
);
|
||||
const parts: string[] = [];
|
||||
|
||||
parts.push(
|
||||
`## 🤖 shockbot review\n\n> Reviewed ${files.length} file${files.length === 1 ? "" : "s"} using \`${model}\``,
|
||||
);
|
||||
|
||||
// Summary section — join per-chunk summaries
|
||||
const summaries = review.summaries.filter(Boolean);
|
||||
if (summaries.length > 0) {
|
||||
parts.push(`**Summary**\n\n${summaries.join("\n\n")}`);
|
||||
}
|
||||
|
||||
// Group findings by severity
|
||||
const grouped = new Map<ReviewSeverity, Finding[]>();
|
||||
for (const severity of SEVERITY_ORDER) grouped.set(severity, []);
|
||||
for (const finding of review.findings) {
|
||||
grouped.get(finding.severity)?.push(finding);
|
||||
}
|
||||
|
||||
const hasFindings = review.findings.length > 0;
|
||||
if (hasFindings) {
|
||||
for (const severity of SEVERITY_ORDER) {
|
||||
const group = grouped.get(severity)!;
|
||||
if (group.length > 0) parts.push(renderGroup(severity, group));
|
||||
}
|
||||
} else {
|
||||
parts.push("No issues found. ✅");
|
||||
}
|
||||
|
||||
const timestamp = new Date().toISOString();
|
||||
parts.push(`---\n\n<sub>shockbot · \`${model}\` · ${timestamp}</sub>`);
|
||||
|
||||
return parts.join("\n\n---\n\n");
|
||||
}
|
||||
@@ -0,0 +1,184 @@
|
||||
import type { DiffChunk } from "./types.ts";
|
||||
|
||||
// ~4 chars per token is a reasonable rough estimate for code
|
||||
function estimateTokens(text: string): number {
|
||||
return Math.ceil(text.length / 4);
|
||||
}
|
||||
|
||||
const SKIP_EXTENSIONS = new Set([
|
||||
"lock",
|
||||
"sum",
|
||||
"map",
|
||||
"png",
|
||||
"jpg",
|
||||
"jpeg",
|
||||
"gif",
|
||||
"svg",
|
||||
"ico",
|
||||
"webp",
|
||||
"woff",
|
||||
"woff2",
|
||||
"ttf",
|
||||
"eot",
|
||||
"pdf",
|
||||
"zip",
|
||||
"tar",
|
||||
"gz",
|
||||
"bin",
|
||||
"exe",
|
||||
"dll",
|
||||
"so",
|
||||
"dylib",
|
||||
]);
|
||||
|
||||
const SKIP_PATTERNS = [
|
||||
/^node_modules\//,
|
||||
/^\.git\//,
|
||||
/\/generated\//,
|
||||
/\.pb\.\w+$/,
|
||||
/\.min\.[jt]s$/,
|
||||
];
|
||||
|
||||
function shouldSkip(filename: string): boolean {
|
||||
if (!filename.includes(".")) return true; // no extension = likely binary
|
||||
const ext = filename.split(".").pop()!.toLowerCase();
|
||||
return (
|
||||
SKIP_EXTENSIONS.has(ext) || SKIP_PATTERNS.some((p) => p.test(filename))
|
||||
);
|
||||
}
|
||||
|
||||
const EXT_TO_LANG: Record<string, string> = {
|
||||
ts: "TypeScript",
|
||||
tsx: "TypeScript",
|
||||
js: "JavaScript",
|
||||
jsx: "JavaScript",
|
||||
mjs: "JavaScript",
|
||||
cjs: "JavaScript",
|
||||
py: "Python",
|
||||
go: "Go",
|
||||
rs: "Rust",
|
||||
rb: "Ruby",
|
||||
java: "Java",
|
||||
kt: "Kotlin",
|
||||
kts: "Kotlin",
|
||||
swift: "Swift",
|
||||
cs: "C#",
|
||||
cpp: "C++",
|
||||
cc: "C++",
|
||||
cxx: "C++",
|
||||
hpp: "C++",
|
||||
c: "C",
|
||||
php: "PHP",
|
||||
sh: "Shell",
|
||||
bash: "Shell",
|
||||
zsh: "Shell",
|
||||
yaml: "YAML",
|
||||
yml: "YAML",
|
||||
json: "JSON",
|
||||
md: "Markdown",
|
||||
sql: "SQL",
|
||||
html: "HTML",
|
||||
htm: "HTML",
|
||||
css: "CSS",
|
||||
scss: "CSS",
|
||||
sass: "CSS",
|
||||
less: "CSS",
|
||||
vue: "Vue",
|
||||
svelte: "Svelte",
|
||||
toml: "TOML",
|
||||
xml: "XML",
|
||||
tf: "Terraform",
|
||||
hcl: "HCL",
|
||||
};
|
||||
|
||||
function detectLanguage(filename: string): string {
|
||||
const ext = filename.split(".").pop()?.toLowerCase() ?? "";
|
||||
return EXT_TO_LANG[ext] ?? "plain";
|
||||
}
|
||||
|
||||
export interface DiffFile {
|
||||
filename: string;
|
||||
language: string;
|
||||
hunks: Array<{ header: string; body: string }>;
|
||||
}
|
||||
|
||||
export function parseDiff(rawDiff: string): DiffFile[] {
|
||||
console.log("Parsing diff...");
|
||||
const files: DiffFile[] = [];
|
||||
|
||||
const sections = rawDiff.split(/^diff --git /m).filter((s) => s.trim());
|
||||
|
||||
for (const section of sections) {
|
||||
const lines = section.split("\n");
|
||||
|
||||
// Use +++ / --- lines — more reliable than first line for renames and paths with spaces
|
||||
const plusLine = lines.find((l) => l.startsWith("+++ "));
|
||||
const minusLine = lines.find((l) => l.startsWith("--- "));
|
||||
|
||||
let filename: string;
|
||||
if (plusLine?.startsWith("+++ b/")) {
|
||||
filename = plusLine.slice(6);
|
||||
} else if (
|
||||
plusLine === "+++ /dev/null" &&
|
||||
minusLine?.startsWith("--- a/")
|
||||
) {
|
||||
filename = minusLine.slice(6); // deleted file — use old path
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (shouldSkip(filename)) continue;
|
||||
|
||||
const language = detectLanguage(filename);
|
||||
const hunks: DiffFile["hunks"] = [];
|
||||
let header = "";
|
||||
let bodyLines: string[] = [];
|
||||
|
||||
for (const line of lines) {
|
||||
if (line.startsWith("@@")) {
|
||||
if (header) hunks.push({ header, body: bodyLines.join("\n") });
|
||||
header = line;
|
||||
bodyLines = [];
|
||||
} else if (header) {
|
||||
bodyLines.push(line);
|
||||
}
|
||||
}
|
||||
if (header) hunks.push({ header, body: bodyLines.join("\n") });
|
||||
|
||||
if (hunks.length > 0) files.push({ filename, language, hunks });
|
||||
}
|
||||
|
||||
return files;
|
||||
}
|
||||
|
||||
export function chunkFile(file: DiffFile, maxTokens: number): DiffChunk[] {
|
||||
console.log(
|
||||
`Chunking file ${file.filename} with ${file.hunks.length} hunks...`,
|
||||
);
|
||||
return file.hunks.map(({ header, body }) => {
|
||||
let hunk = body;
|
||||
|
||||
if (estimateTokens(body) > maxTokens) {
|
||||
// Truncate from bottom — top of the hunk has the most useful context
|
||||
const lines = body.split("\n");
|
||||
const charBudget = maxTokens * 4;
|
||||
let chars = 0;
|
||||
let i = 0;
|
||||
while (
|
||||
i < lines.length &&
|
||||
chars + (lines[i]?.length ?? 0) + 1 <= charBudget
|
||||
) {
|
||||
chars += (lines[i]?.length ?? 0) + 1;
|
||||
i++;
|
||||
}
|
||||
hunk = lines.slice(0, i).join("\n");
|
||||
}
|
||||
|
||||
return {
|
||||
filename: file.filename,
|
||||
language: file.language,
|
||||
hunk,
|
||||
context: header,
|
||||
};
|
||||
});
|
||||
}
|
||||
@@ -1,63 +0,0 @@
|
||||
#!/bin/bash
|
||||
# entrypoint for the pullfrog GHA-like container (see Dockerfile).
|
||||
#
|
||||
# - remaps `testuser` to the host uid/gid so bind-mounted files keep correct
|
||||
# ownership after writes inside the container
|
||||
# - on linux hosts, copies host ssh keys into testuser's $HOME (darwin hosts
|
||||
# forward the ssh-agent socket instead, no copy needed)
|
||||
# - installs action workspace deps (volume-cached, ~1.5s warm)
|
||||
# - exec's the requested command as testuser; argv is preserved (no nested
|
||||
# `bash -c`, no shell quoting hazards)
|
||||
set -euo pipefail
|
||||
|
||||
HOST_UID="${HOST_UID:-1000}"
|
||||
HOST_GID="${HOST_GID:-1000}"
|
||||
|
||||
if [ "$HOST_UID" != "1000" ] || [ "$HOST_GID" != "1000" ]; then
|
||||
groupmod -g "$HOST_GID" testuser 2>/dev/null || true
|
||||
usermod -u "$HOST_UID" -g "$HOST_GID" testuser 2>/dev/null || true
|
||||
# chown top-level dirs only — recursive chown would fail on `:ro` bind
|
||||
# mounts (e.g. macOS known_hosts mounted directly into /tmp/home/.ssh).
|
||||
chown "$HOST_UID:$HOST_GID" /tmp/home /tmp/home/.config /tmp/home/.cache 2>/dev/null || true
|
||||
chown "$HOST_UID:$HOST_GID" /app /app/action /app/action/node_modules 2>/dev/null || true
|
||||
fi
|
||||
|
||||
# linux hosts: copy host ssh keys into testuser's $HOME (we own this dir,
|
||||
# safe to chown). darwin hosts forward the ssh-agent socket instead and
|
||||
# bind-mount known_hosts read-only — nothing to do here.
|
||||
if [ -d /tmp/.ssh-host ]; then
|
||||
mkdir -p /tmp/home/.ssh
|
||||
cp /tmp/.ssh-host/id_* /tmp/home/.ssh/ 2>/dev/null || true
|
||||
chmod 600 /tmp/home/.ssh/id_* 2>/dev/null || true
|
||||
ssh-keyscan -t ed25519,rsa github.com >> /tmp/home/.ssh/known_hosts 2>/dev/null || true
|
||||
chmod 644 /tmp/home/.ssh/known_hosts 2>/dev/null || true
|
||||
chown -R "$HOST_UID:$HOST_GID" /tmp/home/.ssh 2>/dev/null || true
|
||||
# set GIT_SSH_COMMAND if any private key got copied. don't pin a
|
||||
# specific key with -i — let ssh pick whatever's in /tmp/home/.ssh
|
||||
# (covers id_rsa, id_ed25519, id_ecdsa, etc.).
|
||||
if ls /tmp/home/.ssh/id_* 2>/dev/null | grep -qv '\.pub$'; then
|
||||
export GIT_SSH_COMMAND="ssh -o UserKnownHostsFile=/tmp/home/.ssh/known_hosts -o StrictHostKeyChecking=no"
|
||||
fi
|
||||
fi
|
||||
|
||||
# warm the volume-cached node_modules. frozen-lockfile + ignore-scripts keeps
|
||||
# this idempotent and fast (~1.5s when nothing changed).
|
||||
#
|
||||
# the lockfile lives IN the shared node_modules volume so concurrent
|
||||
# `pnpm docker` invocations (e.g. `pnpm play:docker` in one terminal and
|
||||
# `pnpm runtest:docker` in another) serialize their install instead of racing.
|
||||
# `flock -w 120` waits up to 2min before giving up — well under any
|
||||
# real-world install time but short enough to surface true deadlocks.
|
||||
mkdir -p /app/action/node_modules
|
||||
flock -w 120 /app/action/node_modules/.gha-install.lock \
|
||||
sudo -u testuser -E env HOME=/tmp/home \
|
||||
corepack pnpm install --frozen-lockfile --ignore-scripts >/dev/null
|
||||
|
||||
# `--shell` drops into an interactive bash for debugging the container.
|
||||
if [ "${1:-}" = "--shell" ]; then
|
||||
exec sudo -u testuser -E env HOME=/tmp/home bash
|
||||
fi
|
||||
|
||||
# exec the command as testuser, preserving env. argv passes through unchanged
|
||||
# — no `bash -c` nesting, no quoting required by callers.
|
||||
exec sudo -u testuser -E env HOME=/tmp/home "$@"
|
||||
@@ -1,532 +0,0 @@
|
||||
// run any node script inside the pullfrog local docker container that
|
||||
// mocks the GHA `ubuntu-24.04` runner environment. NOT a real GitHub
|
||||
// Actions runner — for the real thing, see `.github/workflows/*.yml`
|
||||
// and `action/commands/gha.ts` (the action's GHA entry point).
|
||||
//
|
||||
// usage:
|
||||
// pnpm docker <script> [args…] # run script in container
|
||||
// pnpm docker --shell # interactive bash (requires TTY)
|
||||
// pnpm docker --build [--no-cache] # force-rebuild image
|
||||
// pnpm docker --clean # prune orphan images/volumes
|
||||
// pnpm docker --doctor # versions of every baked tool
|
||||
//
|
||||
// the action's two main entrypoints default to the host (fast iteration).
|
||||
// `:docker` suffix wraps this script:
|
||||
// pnpm play [args…] # host (this is the fast default)
|
||||
// pnpm play:docker [args…] # === pnpm docker play.ts [args…]
|
||||
// pnpm runtest [filters…] # host
|
||||
// pnpm runtest:docker [filters…] # === pnpm docker test/run.ts [filters…]
|
||||
//
|
||||
// the container is a baked ubuntu:24.04 image (see Dockerfile) with the
|
||||
// same toolset as GHA `ubuntu-24.04` runners. host env passes through
|
||||
// verbatim — no allowlist. multi-line values (RSA keys) handled via -e
|
||||
// fallback; everything else flows through `--env-file` for cleanliness.
|
||||
//
|
||||
// host services are reachable at `host.docker.internal:<port>` (works on
|
||||
// both linux and macOS — see --add-host below).
|
||||
//
|
||||
// rebuild is content-hash gated on Dockerfile + docker-entrypoint.sh.
|
||||
//
|
||||
// design rationale + gaps: wiki/docker.md.
|
||||
import { spawnSync } from "node:child_process";
|
||||
import { createHash } from "node:crypto";
|
||||
import { existsSync, mkdirSync, readFileSync, unlinkSync, writeFileSync } from "node:fs";
|
||||
import { platform, tmpdir } from "node:os";
|
||||
import { dirname, join, resolve } from "node:path";
|
||||
import { fileURLToPath, pathToFileURL } from "node:url";
|
||||
import { config } from "dotenv";
|
||||
|
||||
const __dirname = dirname(fileURLToPath(import.meta.url));
|
||||
const actionDir = __dirname;
|
||||
const repoRoot = join(actionDir, "..");
|
||||
|
||||
config({ path: join(actionDir, ".env") });
|
||||
config({ path: join(repoRoot, ".env") });
|
||||
|
||||
// host env vars that would actively conflict with the container's own
|
||||
// configuration (paths, identity, shell, and outer-CI workflow-run identifiers
|
||||
// that don't apply to whatever repo the harness is acting against). everything
|
||||
// else passes through.
|
||||
const HOST_ONLY_VARS = new Set([
|
||||
// paths / identity / shell — would clobber the container's testuser setup
|
||||
"PATH",
|
||||
"HOME",
|
||||
"USER",
|
||||
"LOGNAME",
|
||||
"SHELL",
|
||||
"PWD",
|
||||
"OLDPWD",
|
||||
"TMPDIR",
|
||||
"TMP",
|
||||
"TEMP",
|
||||
"DOCKER_HOST",
|
||||
"DOCKER_CONFIG",
|
||||
"_",
|
||||
"SHLVL",
|
||||
"PS1",
|
||||
"PS2",
|
||||
"TERM_PROGRAM",
|
||||
"TERM_PROGRAM_VERSION",
|
||||
"TERM_SESSION_ID",
|
||||
"__CF_USER_TEXT_ENCODING",
|
||||
"XPC_SERVICE_NAME",
|
||||
"XPC_FLAGS",
|
||||
"Apple_PubSub_Socket_Render",
|
||||
"COMMAND_MODE",
|
||||
"COLORTERM",
|
||||
"ITERM_PROFILE",
|
||||
"ITERM_SESSION_ID",
|
||||
// outer-CI workflow-run identifiers — when the test suite runs inside
|
||||
// pullfrog/app's CI, these refer to pullfrog/app's run, NOT the test repo
|
||||
// the harness is acting against (e.g. pullfrog/test-repo). Anything inside
|
||||
// the action that uses them as keys to look up state on the test repo (most
|
||||
// notably `resolveRun()`'s `actions.listJobsForWorkflowRun(...)` call) will
|
||||
// 404. Filtering them here means the action sees them as undefined and
|
||||
// skips the lookup, instead of misdirecting it. `GITHUB_REPOSITORY` and
|
||||
// `GITHUB_TOKEN` are NOT filtered — those are genuinely needed inside.
|
||||
"GITHUB_RUN_ID",
|
||||
"GITHUB_RUN_NUMBER",
|
||||
"GITHUB_RUN_ATTEMPT",
|
||||
"GITHUB_JOB",
|
||||
"GITHUB_WORKFLOW",
|
||||
"GITHUB_ACTION",
|
||||
"GITHUB_REF",
|
||||
"GITHUB_SHA",
|
||||
"GITHUB_HEAD_REF",
|
||||
"GITHUB_BASE_REF",
|
||||
"GITHUB_TRIGGERING_ACTOR",
|
||||
]);
|
||||
|
||||
type Args = {
|
||||
forceBuild: boolean;
|
||||
noCache: boolean;
|
||||
shell: boolean;
|
||||
clean: boolean;
|
||||
doctor: boolean;
|
||||
passthrough: string[];
|
||||
};
|
||||
|
||||
/**
|
||||
* parses docker-level flags up to (but not including) the first positional
|
||||
* argument. anything after the first positional, or after a literal `--`,
|
||||
* passes through verbatim to the inner script. this prevents
|
||||
* `pnpm docker test/run.ts --build` from intercepting `--build` as a
|
||||
* docker flag.
|
||||
*/
|
||||
function parseArgs(argv: string[]): Args {
|
||||
const out: Args = {
|
||||
forceBuild: false,
|
||||
noCache: false,
|
||||
shell: false,
|
||||
clean: false,
|
||||
doctor: false,
|
||||
passthrough: [],
|
||||
};
|
||||
let i = 0;
|
||||
while (i < argv.length) {
|
||||
const a = argv[i];
|
||||
if (a === "--") {
|
||||
out.passthrough.push(...argv.slice(i + 1));
|
||||
return out;
|
||||
}
|
||||
if (a === "--build") out.forceBuild = true;
|
||||
else if (a === "--no-cache") {
|
||||
out.forceBuild = true;
|
||||
out.noCache = true;
|
||||
} else if (a === "--shell") out.shell = true;
|
||||
else if (a === "--clean") out.clean = true;
|
||||
else if (a === "--doctor") out.doctor = true;
|
||||
else if (a === "--help" || a === "-h") {
|
||||
showHelp();
|
||||
process.exit(0);
|
||||
} else {
|
||||
// first positional — script name and everything after passes through.
|
||||
out.passthrough.push(...argv.slice(i));
|
||||
return out;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
function showHelp(): void {
|
||||
process.stdout.write(`Usage: pnpm docker <script> [args…]
|
||||
pnpm docker --shell
|
||||
pnpm docker --build [--no-cache]
|
||||
pnpm docker --clean
|
||||
pnpm docker --doctor
|
||||
|
||||
Run a node script inside the pullfrog local docker container that mocks
|
||||
the GHA ubuntu-24.04 runner toolset (gh, jq, python3, sudo, +
|
||||
build-essential / wget / xz / file). Host env passes through verbatim.
|
||||
The host is reachable from inside the container at host.docker.internal
|
||||
(useful for scripts that hit your local dev server).
|
||||
|
||||
The action's two main entrypoints have host (fast) and docker variants:
|
||||
pnpm play [args…] # host — the fast default
|
||||
pnpm play:docker [args…] # === pnpm docker play.ts [args…]
|
||||
pnpm runtest [filters…] # host
|
||||
pnpm runtest:docker [filters…] # === pnpm docker test/run.ts [filters…]
|
||||
|
||||
Options:
|
||||
--build rebuild the current image (otherwise rebuilt automatically
|
||||
when Dockerfile or docker-entrypoint.sh content changes).
|
||||
on its own, builds and exits.
|
||||
--no-cache pair with --build to also bust docker's layer cache;
|
||||
useful when an apt mirror or base image changed.
|
||||
--shell drop into an interactive bash inside the container.
|
||||
requires a TTY.
|
||||
--clean prune orphaned pullfrog-docker:* images and node_modules
|
||||
volumes whose hash doesn't match the current Dockerfile.
|
||||
--doctor print version info for tools inside the container (node,
|
||||
pnpm, gh, jq, git, python3, ssh, …). useful for diagnosing
|
||||
"works in CI fails locally" or vice versa.
|
||||
-h, --help show this message.
|
||||
|
||||
Pass-through:
|
||||
Anything after the first positional argument (or after a literal \`--\`)
|
||||
goes to the inner script verbatim. so \`pnpm docker test/run.ts --build\`
|
||||
passes \`--build\` to test/run.ts, not to docker.
|
||||
|
||||
Examples:
|
||||
pnpm docker play.ts
|
||||
pnpm docker play.ts --raw '{"prompt":"hi"}'
|
||||
pnpm docker test/run.ts smoke
|
||||
pnpm docker --shell
|
||||
pnpm docker --build # build image, then exit
|
||||
pnpm docker --build --no-cache # rebuild from scratch
|
||||
pnpm docker --clean # reclaim disk from old image hashes
|
||||
pnpm docker --doctor # fidelity audit
|
||||
`);
|
||||
}
|
||||
|
||||
function ensureDocker(): void {
|
||||
if (platform() === "win32") {
|
||||
fail("pnpm docker is not supported on native windows. use wsl2.");
|
||||
}
|
||||
const probe = spawnSync("docker", ["info"], { stdio: "ignore" });
|
||||
if (probe.status !== 0) {
|
||||
fail("docker is not running. start docker desktop and retry.");
|
||||
}
|
||||
}
|
||||
|
||||
function fail(msg: string): never {
|
||||
process.stderr.write(`error: ${msg}\n`);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
type ImageRef = { tag: string; volumeName: string };
|
||||
|
||||
function imageRefFor(ctx: { dockerfile: string; entrypoint: string }): ImageRef {
|
||||
const hash = createHash("sha256")
|
||||
.update(readFileSync(ctx.dockerfile))
|
||||
.update(readFileSync(ctx.entrypoint))
|
||||
.digest("hex")
|
||||
.slice(0, 12);
|
||||
return {
|
||||
tag: `pullfrog-docker:${hash}`,
|
||||
// version the volume by image hash so a stale node_modules cache from
|
||||
// an old image (e.g. different node major) can't poison a new image.
|
||||
volumeName: `pullfrog-docker-node-modules-${hash}`,
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* remove pullfrog-docker:* images and pullfrog-docker-node-modules-* volumes
|
||||
* whose hash doesn't match the current Dockerfile + entrypoint. each
|
||||
* Dockerfile/entrypoint edit creates a fresh hash and orphans the prior
|
||||
* pair; without periodic cleanup these accumulate (~600MB image + ~200MB
|
||||
* node_modules each).
|
||||
*/
|
||||
function cleanOrphans(currentRef: ImageRef): void {
|
||||
const imgList = spawnSync("docker", ["image", "ls", "--format", "{{.Repository}}:{{.Tag}}"], {
|
||||
encoding: "utf8",
|
||||
});
|
||||
const images = (imgList.stdout ?? "")
|
||||
.split("\n")
|
||||
.filter((s) => s.startsWith("pullfrog-docker:") && s !== currentRef.tag);
|
||||
if (images.length > 0) {
|
||||
process.stderr.write(`» removing ${images.length} orphan image(s): ${images.join(", ")}\n`);
|
||||
spawnSync("docker", ["image", "rm", "-f", ...images], { stdio: "inherit" });
|
||||
}
|
||||
const volList = spawnSync("docker", ["volume", "ls", "-q"], { encoding: "utf8" });
|
||||
const volumes = (volList.stdout ?? "")
|
||||
.split("\n")
|
||||
.filter((s) => s.startsWith("pullfrog-docker-node-modules-") && s !== currentRef.volumeName);
|
||||
if (volumes.length > 0) {
|
||||
process.stderr.write(`» removing ${volumes.length} orphan volume(s): ${volumes.join(", ")}\n`);
|
||||
spawnSync("docker", ["volume", "rm", ...volumes], { stdio: "inherit" });
|
||||
}
|
||||
if (images.length === 0 && volumes.length === 0) {
|
||||
process.stderr.write("» no orphans to clean (all matching current image hash)\n");
|
||||
}
|
||||
}
|
||||
|
||||
function buildImageIfNeeded(ctx: {
|
||||
ref: ImageRef;
|
||||
force: boolean;
|
||||
noCache: boolean;
|
||||
dockerfile: string;
|
||||
}): void {
|
||||
if (!ctx.force) {
|
||||
const inspect = spawnSync("docker", ["image", "inspect", ctx.ref.tag], { stdio: "ignore" });
|
||||
if (inspect.status === 0) return;
|
||||
}
|
||||
process.stderr.write(
|
||||
`» building ${ctx.ref.tag}${ctx.noCache ? " (--no-cache)" : ""} (one-time, ~30-60s)…\n`
|
||||
);
|
||||
const buildArgs = ["build", "-t", ctx.ref.tag, "-f", ctx.dockerfile];
|
||||
if (ctx.noCache) buildArgs.push("--no-cache");
|
||||
buildArgs.push(actionDir);
|
||||
const build = spawnSync("docker", buildArgs, { stdio: "inherit" });
|
||||
if (build.status !== 0) {
|
||||
fail("image build failed");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* print versions of every tool we expect to be available, so contributors
|
||||
* can sanity-check fidelity with the GHA `ubuntu-24.04` runner when a test
|
||||
* passes locally but fails in CI (or vice versa).
|
||||
*/
|
||||
function runDoctor(ref: ImageRef): void {
|
||||
// multi-line bash script; spawnSync passes the whole thing as one argv
|
||||
// entry so there's no nested-shell quoting to worry about, and `do` is
|
||||
// not followed by a stray semicolon.
|
||||
const script = `set +e
|
||||
echo '--- container ---'
|
||||
grep -E '^(NAME|VERSION)=' /etc/os-release
|
||||
echo "arch=$(uname -m)"
|
||||
|
||||
echo
|
||||
echo '--- runtimes ---'
|
||||
echo "node $(node --version)"
|
||||
if cd /app/action 2>/dev/null; then
|
||||
echo "pnpm $(corepack pnpm --version) (corepack-resolved from packageManager)"
|
||||
else
|
||||
echo "pnpm $(pnpm --version) (system fallback — /app/action not mounted?)"
|
||||
fi
|
||||
python3 --version
|
||||
|
||||
echo
|
||||
echo '--- tools ---'
|
||||
for t in gh jq git ssh curl wget tar gzip xz unzip file make gcc g++ sudo unshare awk sed grep find xargs; do
|
||||
if ! command -v "$t" >/dev/null 2>&1; then
|
||||
printf ' %-10s MISSING\\n' "$t"
|
||||
continue
|
||||
fi
|
||||
case "$t" in
|
||||
ssh|unzip) v=$("$t" -V 2>&1 | head -1) ;;
|
||||
*) v=$("$t" --version 2>&1 | head -1) ;;
|
||||
esac
|
||||
printf ' %-10s %s\\n' "$t" "$v"
|
||||
done
|
||||
|
||||
echo
|
||||
echo '--- env ---'
|
||||
echo "CI=$CI HOME=$HOME TMPDIR=$TMPDIR"
|
||||
echo "doctor runs as: $(whoami) (uid=$(id -u) gid=$(id -g))"
|
||||
echo "tests run as: testuser (uid remapped to host uid at entrypoint)"
|
||||
echo "host.docker.internal -> $(getent hosts host.docker.internal | awk '{print $1}' || echo UNRESOLVED)"
|
||||
`;
|
||||
const result = spawnSync(
|
||||
"docker",
|
||||
[
|
||||
"run",
|
||||
"--rm",
|
||||
"-v",
|
||||
`${actionDir}:/app/action:cached`,
|
||||
"--add-host=host.docker.internal:host-gateway",
|
||||
"--entrypoint",
|
||||
"/bin/bash",
|
||||
ref.tag,
|
||||
"-c",
|
||||
script,
|
||||
],
|
||||
{ stdio: "inherit" }
|
||||
);
|
||||
process.exit(result.status ?? 1);
|
||||
}
|
||||
|
||||
function volumeExists(name: string): boolean {
|
||||
return spawnSync("docker", ["volume", "inspect", name], { stdio: "ignore" }).status === 0;
|
||||
}
|
||||
|
||||
function initVolumeOwnership(ctx: { ref: ImageRef; uid: number; gid: number }): void {
|
||||
// a fresh named volume is owned by root; chown once on creation. on warm
|
||||
// runs the volume already has the right ownership and `docker run … chown`
|
||||
// is sub-second pure overhead — skip it.
|
||||
if (volumeExists(ctx.ref.volumeName)) return;
|
||||
spawnSync(
|
||||
"docker",
|
||||
[
|
||||
"run",
|
||||
"--rm",
|
||||
"--entrypoint",
|
||||
"chown",
|
||||
"-v",
|
||||
`${ctx.ref.volumeName}:/app/action/node_modules`,
|
||||
ctx.ref.tag,
|
||||
"-R",
|
||||
`${ctx.uid}:${ctx.gid}`,
|
||||
"/app/action/node_modules",
|
||||
],
|
||||
{ stdio: "ignore" }
|
||||
);
|
||||
}
|
||||
|
||||
type EnvParts = { envFile: string; multiLineFlags: string[] };
|
||||
|
||||
function buildEnvParts(env: NodeJS.ProcessEnv): EnvParts {
|
||||
const dir = join(tmpdir(), "pullfrog-docker");
|
||||
mkdirSync(dir, { recursive: true });
|
||||
const envFile = join(dir, `env-${process.pid}-${Date.now()}.list`);
|
||||
const lines: string[] = [];
|
||||
const multiLineFlags: string[] = [];
|
||||
for (const key of Object.keys(env)) {
|
||||
if (HOST_ONLY_VARS.has(key)) continue;
|
||||
const value = env[key];
|
||||
if (value === undefined) continue;
|
||||
// docker --env-file is line-oriented and does not support multi-line
|
||||
// values. fall back to -e for those (RSA keys, multi-line PEMs, etc.).
|
||||
if (value.includes("\n") || value.includes("\r")) {
|
||||
multiLineFlags.push("-e", `${key}=${value}`);
|
||||
} else {
|
||||
lines.push(`${key}=${value}`);
|
||||
}
|
||||
}
|
||||
writeFileSync(envFile, `${lines.join("\n")}\n`, { mode: 0o600 });
|
||||
return { envFile, multiLineFlags };
|
||||
}
|
||||
|
||||
function buildSshFlags(home: string | undefined): string[] {
|
||||
const flags: string[] = [];
|
||||
if (!home) return flags;
|
||||
if (platform() === "darwin") {
|
||||
const knownHosts = join(home, ".ssh", "known_hosts");
|
||||
if (existsSync(knownHosts)) {
|
||||
flags.push("-v", `${knownHosts}:/tmp/home/.ssh/known_hosts:ro`);
|
||||
}
|
||||
flags.push(
|
||||
"-v",
|
||||
"/run/host-services/ssh-auth.sock:/run/host-services/ssh-auth.sock",
|
||||
"-e",
|
||||
"SSH_AUTH_SOCK=/run/host-services/ssh-auth.sock"
|
||||
);
|
||||
} else {
|
||||
const sshDir = join(home, ".ssh");
|
||||
if (existsSync(sshDir)) {
|
||||
flags.push("-v", `${sshDir}:/tmp/.ssh-host:ro`);
|
||||
}
|
||||
}
|
||||
return flags;
|
||||
}
|
||||
|
||||
function main(): void {
|
||||
const args = parseArgs(process.argv.slice(2));
|
||||
ensureDocker();
|
||||
|
||||
const dockerfile = join(actionDir, "Dockerfile");
|
||||
const entrypoint = join(actionDir, "docker-entrypoint.sh");
|
||||
const ref = imageRefFor({ dockerfile, entrypoint });
|
||||
|
||||
if (args.clean) {
|
||||
cleanOrphans(ref);
|
||||
if (!args.shell && !args.doctor && args.passthrough.length === 0 && !args.forceBuild) {
|
||||
process.exit(0);
|
||||
}
|
||||
}
|
||||
|
||||
buildImageIfNeeded({ ref, force: args.forceBuild, noCache: args.noCache, dockerfile });
|
||||
|
||||
if (args.doctor) {
|
||||
runDoctor(ref);
|
||||
// runDoctor exits; unreachable.
|
||||
}
|
||||
|
||||
// standalone `--build`: image's done, nothing to run.
|
||||
if (!args.shell && args.passthrough.length === 0) {
|
||||
if (!args.forceBuild) {
|
||||
showHelp();
|
||||
process.exit(1);
|
||||
}
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
// node sets isTTY to `true` for a terminal stdin, `undefined` otherwise
|
||||
// (never `false`). check truthiness, not equality.
|
||||
if (args.shell && !process.stdin.isTTY) {
|
||||
fail("--shell needs a TTY (stdin is not a terminal). run from an interactive shell.");
|
||||
}
|
||||
|
||||
const uid = process.getuid?.() ?? 1000;
|
||||
const gid = process.getgid?.() ?? 1000;
|
||||
initVolumeOwnership({ ref, uid, gid });
|
||||
|
||||
const envParts = buildEnvParts(process.env);
|
||||
const sshFlags = buildSshFlags(process.env.HOME);
|
||||
|
||||
const runArgs: string[] = [
|
||||
"run",
|
||||
"--rm",
|
||||
// `--init` uses tini as PID 1, which forwards signals (SIGINT/SIGTERM)
|
||||
// to our entrypoint and reaps zombies. Without it, bash-as-PID-1
|
||||
// swallows Ctrl-C during the pre-exec warmup phase.
|
||||
"--init",
|
||||
args.shell ? "-it" : "-t",
|
||||
"--privileged",
|
||||
// make the host reachable from inside the container at a stable name
|
||||
// (macOS Docker Desktop bakes this in; the flag makes Linux match,
|
||||
// matters when scripts hit local dev servers like API_URL=
|
||||
// http://host.docker.internal:3100).
|
||||
"--add-host=host.docker.internal:host-gateway",
|
||||
"-v",
|
||||
`${actionDir}:/app/action:cached`,
|
||||
"-v",
|
||||
`${ref.volumeName}:/app/action/node_modules`,
|
||||
"-w",
|
||||
"/app/action",
|
||||
"--env-file",
|
||||
envParts.envFile,
|
||||
"-e",
|
||||
`HOST_UID=${uid}`,
|
||||
"-e",
|
||||
`HOST_GID=${gid}`,
|
||||
...envParts.multiLineFlags,
|
||||
...sshFlags,
|
||||
ref.tag,
|
||||
];
|
||||
|
||||
if (args.shell) {
|
||||
runArgs.push("--shell");
|
||||
} else {
|
||||
// resolve script paths relative to actionDir (matches `pnpm -C action`
|
||||
// mental model). absolute paths and bare flags pass through unchanged.
|
||||
const [script, ...rest] = args.passthrough;
|
||||
if (script === undefined) {
|
||||
fail("internal: passthrough empty");
|
||||
}
|
||||
runArgs.push("node", script, ...rest);
|
||||
}
|
||||
|
||||
let exitCode = 1;
|
||||
try {
|
||||
const result = spawnSync("docker", runArgs, { stdio: "inherit" });
|
||||
exitCode = result.status ?? 1;
|
||||
} finally {
|
||||
try {
|
||||
unlinkSync(envParts.envFile);
|
||||
} catch {
|
||||
// best-effort; tmpdir is GC'd by the OS regardless.
|
||||
}
|
||||
}
|
||||
process.exit(exitCode);
|
||||
}
|
||||
|
||||
const isDirectExecution = process.argv[1]
|
||||
? import.meta.url === pathToFileURL(resolve(process.argv[1])).href
|
||||
: false;
|
||||
|
||||
if (isDirectExecution) {
|
||||
main();
|
||||
}
|
||||
@@ -1,7 +1,122 @@
|
||||
#!/usr/bin/env node
|
||||
import { readFileSync } from "node:fs";
|
||||
import type { ActionConfig, PRContext, ChunkReview } from "./types.ts";
|
||||
import { getPR, getPRDiff, addReaction, removeReaction, postReviewComment } from "./gitea.ts";
|
||||
import { parseDiff, chunkFile } from "./diff.ts";
|
||||
import { createMcpServer } from "./mcp.ts";
|
||||
import { reviewChunk, aggregateFindings } from "./review.ts";
|
||||
import { formatReview } from "./comment.ts";
|
||||
|
||||
import { runPullfrogCli } from "./runCli.ts";
|
||||
function readConfig(): ActionConfig {
|
||||
return {
|
||||
prompt: process.env.INPUT_PROMPT ?? "Review this pull request",
|
||||
model: process.env.INPUT_MODEL ?? "qwen3.6:35b",
|
||||
contextWindow: parseInt(process.env.INPUT_CONTEXT_WINDOW ?? "4096", 10),
|
||||
maxToolCalls: parseInt(process.env.INPUT_MAX_TOOL_CALLS ?? "10", 10),
|
||||
};
|
||||
}
|
||||
|
||||
runPullfrogCli({
|
||||
cliArgs: ["gha"],
|
||||
});
|
||||
function readEvent(): Record<string, unknown> {
|
||||
const path = process.env.GITHUB_EVENT_PATH;
|
||||
if (!path) return {};
|
||||
try {
|
||||
return JSON.parse(readFileSync(path, "utf8")) as Record<string, unknown>;
|
||||
} catch {
|
||||
return {};
|
||||
}
|
||||
}
|
||||
|
||||
async function main(): Promise<void> {
|
||||
const config = readConfig();
|
||||
const eventName = process.env.GITHUB_EVENT_NAME ?? "";
|
||||
const event = readEvent();
|
||||
|
||||
const repository = process.env.GITHUB_REPOSITORY ?? "";
|
||||
const slashIdx = repository.indexOf("/");
|
||||
if (slashIdx === -1) throw new Error(`Invalid GITHUB_REPOSITORY: ${repository}`);
|
||||
const owner = repository.slice(0, slashIdx);
|
||||
const repo = repository.slice(slashIdx + 1);
|
||||
|
||||
let prNumber: number;
|
||||
let prompt: string;
|
||||
let triggerCommentId: number | null = null;
|
||||
|
||||
if (eventName === "pull_request") {
|
||||
prNumber = event.number as number;
|
||||
prompt = config.prompt;
|
||||
} else if (eventName === "issue_comment") {
|
||||
const issue = event.issue as Record<string, unknown>;
|
||||
if (!issue?.pull_request) {
|
||||
console.log("issue_comment on non-PR issue, skipping");
|
||||
return;
|
||||
}
|
||||
const comment = event.comment as Record<string, unknown>;
|
||||
const commentBody = String(comment?.body ?? "");
|
||||
if (!commentBody.toLowerCase().includes("@shockbot")) {
|
||||
console.log("comment does not mention @shockbot, skipping");
|
||||
return;
|
||||
}
|
||||
prNumber = issue.number as number;
|
||||
triggerCommentId = comment.id as number;
|
||||
prompt = commentBody.replace(/@shockbot\s*/gi, "").trim() || config.prompt;
|
||||
} else {
|
||||
console.log(`Unsupported event: ${eventName}, skipping`);
|
||||
return;
|
||||
}
|
||||
|
||||
const prData = await getPR(owner, repo, prNumber);
|
||||
const headSha = prData.head?.sha;
|
||||
if (!headSha) throw new Error(`Could not get head SHA for PR #${prNumber}`);
|
||||
|
||||
const pr: PRContext = { owner, repo, prNumber, headSha };
|
||||
|
||||
if (triggerCommentId !== null) {
|
||||
await addReaction(pr, triggerCommentId, "eyes").catch(() => {});
|
||||
}
|
||||
|
||||
try {
|
||||
const rawDiff = await getPRDiff(pr);
|
||||
if (!rawDiff.trim()) {
|
||||
await postReviewComment(pr, "shockbot: no diff found for this PR.");
|
||||
return;
|
||||
}
|
||||
|
||||
const files = parseDiff(rawDiff);
|
||||
if (files.length === 0) {
|
||||
await postReviewComment(pr, "shockbot: no reviewable files in this PR (all files skipped).");
|
||||
return;
|
||||
}
|
||||
|
||||
const chunks = files.flatMap((f) => chunkFile(f, config.contextWindow));
|
||||
const mcpServer = createMcpServer(pr, config.maxToolCalls);
|
||||
|
||||
const results: ChunkReview[] = [];
|
||||
for (const chunk of chunks) {
|
||||
const result = await reviewChunk(
|
||||
chunk,
|
||||
prompt,
|
||||
config.model,
|
||||
config.contextWindow,
|
||||
mcpServer,
|
||||
);
|
||||
results.push(result);
|
||||
}
|
||||
|
||||
const aggregated = aggregateFindings(results);
|
||||
const body = formatReview(aggregated, files.map((f) => f.filename), config.model);
|
||||
await postReviewComment(pr, body);
|
||||
|
||||
if (triggerCommentId !== null) {
|
||||
await removeReaction(pr, triggerCommentId, "eyes").catch(() => {});
|
||||
await addReaction(pr, triggerCommentId, "+1").catch(() => {});
|
||||
}
|
||||
} catch (err) {
|
||||
console.error("Review failed:", err);
|
||||
if (triggerCommentId !== null) {
|
||||
await removeReaction(pr, triggerCommentId, "eyes").catch(() => {});
|
||||
await addReaction(pr, triggerCommentId, "-1").catch(() => {});
|
||||
}
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
main();
|
||||
|
||||
-102
@@ -1,102 +0,0 @@
|
||||
#!/usr/bin/env node
|
||||
//
|
||||
// GitHub Actions `post:` entry point. Runs after the main step regardless of
|
||||
// exit status (cancellation, timeout, unhandled error) — that's the contract
|
||||
// we need for credential persistence: if OpenCode refreshed the Codex
|
||||
// auth.json during the run, the refreshed token must land back in Pullfrog
|
||||
// even when the main step died unexpectedly.
|
||||
//
|
||||
// THIS IS WHY `CODEX_AUTH_JSON` HAS TO LIVE IN PULLFROG'S OWN SECRET STORE,
|
||||
// NOT IN GITHUB ACTIONS SECRETS. The refresh chain rotates on every use; this
|
||||
// hook PUTs the rotated chain back to Pullfrog Postgres so the next run starts
|
||||
// from a fresh token. GH Actions secrets are read-only at runtime — there is
|
||||
// no API to write them back from inside a job — so a token stashed there
|
||||
// silently goes stale on the first refresh and the next run fails. See
|
||||
// wiki/codex-auth.md.
|
||||
//
|
||||
// Today's only job: detect a Codex auth refresh by diffing the on-disk
|
||||
// auth.json against the original refresh token (saved to GH Actions state
|
||||
// by action/agents/opencode_v2.ts — see also the legacy v1 file kept as
|
||||
// reference at action/agents/opencode.ts), convert OpenCode's auth shape
|
||||
// back to Codex CLI shape, and PUT it to /api/runtime/secret.
|
||||
//
|
||||
// Silent no-op when the main step didn't materialize Codex auth (no state
|
||||
// saved). Best-effort: failures are logged but never throw — the workflow
|
||||
// is already done, and a missed refresh write-back means the user re-runs
|
||||
// `pullfrog auth codex` next time the chain breaks.
|
||||
|
||||
import { existsSync, readFileSync } from "node:fs";
|
||||
import * as core from "@actions/core";
|
||||
import { apiFetch } from "./utils/apiFetch.ts";
|
||||
import { detectCodexRefresh } from "./utils/codexHome.ts";
|
||||
|
||||
async function main(): Promise<void> {
|
||||
const raw = core.getState("codex_writeback");
|
||||
if (!raw) {
|
||||
core.info("codex post-hook: no writeback state — skipping");
|
||||
return;
|
||||
}
|
||||
|
||||
let state: { apiToken: string; authPath: string; originalRefresh: string };
|
||||
try {
|
||||
state = JSON.parse(raw) as typeof state;
|
||||
} catch (err) {
|
||||
core.warning(`codex post-hook: malformed writeback state — ${err}`);
|
||||
return;
|
||||
}
|
||||
if (!state.apiToken || !state.authPath || !state.originalRefresh) {
|
||||
core.warning("codex post-hook: incomplete writeback state — skipping");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!existsSync(state.authPath)) {
|
||||
core.info(`codex post-hook: ${state.authPath} not found — nothing to write back`);
|
||||
return;
|
||||
}
|
||||
|
||||
let authFileContent: string;
|
||||
try {
|
||||
authFileContent = readFileSync(state.authPath, "utf8");
|
||||
} catch (err) {
|
||||
core.warning(`codex post-hook: cannot read ${state.authPath} — ${err}`);
|
||||
return;
|
||||
}
|
||||
|
||||
const refreshedCodexJson = detectCodexRefresh({
|
||||
authFileContent,
|
||||
originalRefresh: state.originalRefresh,
|
||||
});
|
||||
if (!refreshedCodexJson) {
|
||||
core.info("codex post-hook: refresh chain unchanged — no writeback needed");
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
// route through apiFetch so the Vercel preview-deployment SSO gate gets
|
||||
// the `x-vercel-protection-bypass` header/query (raw fetch silently 401s
|
||||
// against preview envs — production is unaffected but every preview-run
|
||||
// refresh would be lost). see action/utils/apiFetch.ts.
|
||||
const response = await apiFetch({
|
||||
path: "/api/runtime/secret",
|
||||
method: "PUT",
|
||||
headers: {
|
||||
authorization: `Bearer ${state.apiToken}`,
|
||||
"content-type": "application/json",
|
||||
},
|
||||
body: JSON.stringify({ name: "CODEX_AUTH_JSON", value: refreshedCodexJson }),
|
||||
});
|
||||
if (!response.ok) {
|
||||
const body = await response.text().catch(() => "");
|
||||
core.warning(`codex post-hook: writeback returned ${response.status}: ${body}`);
|
||||
return;
|
||||
}
|
||||
core.info("codex post-hook: refreshed CODEX_AUTH_JSON persisted to Pullfrog");
|
||||
} catch (err) {
|
||||
core.warning(`codex post-hook: writeback failed — ${err}`);
|
||||
}
|
||||
}
|
||||
|
||||
main().catch((err) => {
|
||||
// never throw — post-hook failure must not fail the workflow
|
||||
core.warning(`codex post-hook: unexpected error — ${err}`);
|
||||
});
|
||||
@@ -1,104 +0,0 @@
|
||||
// @ts-check
|
||||
|
||||
import { build } from "esbuild";
|
||||
import { cpSync, mkdirSync, readFileSync, rmSync, writeFileSync } from "fs";
|
||||
|
||||
const pkg = JSON.parse(readFileSync("package.json", "utf-8"));
|
||||
|
||||
rmSync("./dist", { recursive: true, force: true });
|
||||
mkdirSync("./dist", { recursive: true });
|
||||
|
||||
// Plugin to strip shebangs from output files
|
||||
/**
|
||||
* @type {import("esbuild").Plugin}
|
||||
*/
|
||||
const stripShebangPlugin = {
|
||||
name: "strip-shebang",
|
||||
setup(build) {
|
||||
build.onEnd((result) => {
|
||||
if (result.errors.length > 0) return;
|
||||
|
||||
// Strip shebang from the output file
|
||||
const outputFile = build.initialOptions.outfile;
|
||||
if (outputFile) {
|
||||
try {
|
||||
const content = readFileSync(outputFile, "utf8");
|
||||
// Remove shebang line from the beginning if present
|
||||
const withoutShebang = content.startsWith("#!")
|
||||
? content.slice(content.indexOf("\n") + 1)
|
||||
: content;
|
||||
writeFileSync(outputFile, withoutShebang);
|
||||
} catch (error) {
|
||||
// File might not exist, ignore
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
* @type {import("esbuild").BuildOptions}
|
||||
*/
|
||||
const sharedConfig = {
|
||||
bundle: true,
|
||||
format: "esm",
|
||||
platform: "node",
|
||||
target: "node24",
|
||||
minify: false,
|
||||
sourcemap: false,
|
||||
// Bundle all dependencies - GitHub Actions doesn't have node_modules
|
||||
// Only mark optional peer dependencies as external
|
||||
external: [
|
||||
"@valibot/to-json-schema",
|
||||
"effect",
|
||||
"sury",
|
||||
],
|
||||
// Provide a proper require shim for CommonJS modules bundled into ESM
|
||||
// We use a unique variable name to avoid conflicts with bundled imports
|
||||
banner: {
|
||||
js: `import { createRequire as __createRequire } from 'module'; import { fileURLToPath as __fileURLToPath } from 'url'; import { dirname as __dirnameFn } from 'path'; const require = __createRequire(import.meta.url); const __filename = __fileURLToPath(import.meta.url); const __dirname = __dirnameFn(__filename);`,
|
||||
},
|
||||
// Enable tree-shaking to remove unused code
|
||||
treeShaking: true,
|
||||
// Drop console statements in production (but keep for debugging)
|
||||
drop: [],
|
||||
};
|
||||
|
||||
// Build the CLI bundle (published to npm, used by npx)
|
||||
await build({
|
||||
...sharedConfig,
|
||||
entryPoints: ["./cli.ts"],
|
||||
outfile: "./dist/cli.mjs",
|
||||
target: "node20",
|
||||
plugins: [stripShebangPlugin],
|
||||
define: {
|
||||
"process.env.CLI_VERSION": JSON.stringify(pkg.version),
|
||||
},
|
||||
});
|
||||
|
||||
// Build ESM library entrypoints for programmatic imports
|
||||
await build({
|
||||
...sharedConfig,
|
||||
entryPoints: ["./index.ts"],
|
||||
outfile: "./dist/index.js",
|
||||
target: "node20",
|
||||
});
|
||||
|
||||
await build({
|
||||
...sharedConfig,
|
||||
entryPoints: ["./internal/index.ts"],
|
||||
outfile: "./dist/internal.js",
|
||||
target: "node20",
|
||||
});
|
||||
|
||||
// prepend shebang after strip (esbuild banner can't guarantee line 1 placement)
|
||||
const cliPath = "./dist/cli.mjs";
|
||||
const cliContent = readFileSync(cliPath, "utf8");
|
||||
writeFileSync(cliPath, `#!/usr/bin/env node\n${cliContent}`);
|
||||
|
||||
// copy bundled SKILL.md files into dist/ so the npm-published runtime can read
|
||||
// them via readFileSync. source-mode runs (PULLFROG_FORCE_LOCAL_CLI=1) read
|
||||
// directly from action/skills/ instead. see utils/skills.ts.
|
||||
cpSync("./skills", "./dist/skills", { recursive: true });
|
||||
|
||||
console.log("» build completed successfully");
|
||||
-297
@@ -1,297 +0,0 @@
|
||||
/**
|
||||
* ⚠️ LIMITED IMPORTS - this file is imported by Next.js and must avoid pulling in backend code.
|
||||
* All shared constants, types, and data used by both the Next.js app and the action runtime live here.
|
||||
* Other files in action/ re-export from this file for backward compatibility.
|
||||
*/
|
||||
|
||||
// mcp name constant
|
||||
export const pullfrogMcpName = "pullfrog";
|
||||
|
||||
/** @see {@link file://./agents/shared.ts} Agent interface that uses this type */
|
||||
export type AgentId = "claude" | "opencode";
|
||||
|
||||
/**
|
||||
* format a tool name the way each agent's MCP client presents it to the model.
|
||||
* claude code: mcp__pullfrog__select_mode
|
||||
* opencode: pullfrog_select_mode
|
||||
*/
|
||||
export function formatMcpToolRef(agentId: AgentId, toolName: string): string {
|
||||
switch (agentId) {
|
||||
case "claude":
|
||||
return `mcp__${pullfrogMcpName}__${toolName}`;
|
||||
case "opencode":
|
||||
return `${pullfrogMcpName}_${toolName}`;
|
||||
default:
|
||||
return agentId satisfies never;
|
||||
}
|
||||
}
|
||||
|
||||
// model alias registry lives in models.ts — re-exported here for shared access
|
||||
export type { ModelAlias, ModelProvider, ProviderConfig } from "./models.ts";
|
||||
export {
|
||||
getModelEnvVars,
|
||||
getModelManagedCredentials,
|
||||
getModelProvider,
|
||||
getProviderDisplayName,
|
||||
modelAliases,
|
||||
parseModel,
|
||||
providers,
|
||||
resolveCliModel,
|
||||
resolveDisplayAlias,
|
||||
resolveModelSlug,
|
||||
resolveOpenRouterModel,
|
||||
} from "./models.ts";
|
||||
|
||||
// tool permission types shared with server dispatch
|
||||
export type ToolPermission = "disabled" | "enabled";
|
||||
export type ShellPermission = "disabled" | "restricted" | "enabled";
|
||||
export type PushPermission = "disabled" | "restricted" | "enabled";
|
||||
|
||||
// workflow yml permissions for GITHUB_TOKEN
|
||||
export type WorkflowPermissionValue = "read" | "write" | "none";
|
||||
export type WorkflowIdTokenPermissionValue = "write" | "none";
|
||||
|
||||
export interface WorkflowPermissions {
|
||||
actions?: WorkflowPermissionValue;
|
||||
attestations?: WorkflowPermissionValue;
|
||||
checks?: WorkflowPermissionValue;
|
||||
contents?: WorkflowPermissionValue;
|
||||
deployments?: WorkflowPermissionValue;
|
||||
discussions?: WorkflowPermissionValue;
|
||||
"id-token"?: WorkflowIdTokenPermissionValue;
|
||||
issues?: WorkflowPermissionValue;
|
||||
models?: WorkflowPermissionValue;
|
||||
packages?: WorkflowPermissionValue;
|
||||
pages?: WorkflowPermissionValue;
|
||||
"pull-requests"?: WorkflowPermissionValue;
|
||||
"repository-projects"?: WorkflowPermissionValue;
|
||||
"security-events"?: WorkflowPermissionValue;
|
||||
statuses?: WorkflowPermissionValue;
|
||||
}
|
||||
|
||||
// permission level for the author who triggered the event
|
||||
// matches GitHub's permission levels: admin > write > maintain > triage > read > none
|
||||
export type AuthorPermission = "admin" | "maintain" | "write" | "triage" | "read" | "none";
|
||||
|
||||
// base interface for common payload event fields
|
||||
interface BasePayloadEvent {
|
||||
issue_number?: number;
|
||||
is_pr?: boolean;
|
||||
branch?: string;
|
||||
/** title of the issue/PR (or contextual title for comments) */
|
||||
title?: string;
|
||||
/** primary content for this trigger (issue body, PR body, comment body, review body, etc.) */
|
||||
body?: string | null;
|
||||
comment_id?: number;
|
||||
review_id?: number;
|
||||
review_state?: string;
|
||||
thread?: any;
|
||||
pull_request?: any;
|
||||
check_suite?: {
|
||||
id: number;
|
||||
head_sha: string;
|
||||
head_branch: string | null;
|
||||
status: string | null;
|
||||
conclusion: string | null;
|
||||
url: string;
|
||||
};
|
||||
comment_ids?: number[] | "all";
|
||||
/** permission level of the user who triggered this event */
|
||||
authorPermission?: AuthorPermission;
|
||||
/** when true, runs silently without progress comments (e.g., auto-labeling) */
|
||||
silent?: boolean;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
interface PullRequestOpenedEvent extends BasePayloadEvent {
|
||||
trigger: "pull_request_opened";
|
||||
issue_number: number;
|
||||
is_pr: true;
|
||||
title: string;
|
||||
body: string | null;
|
||||
branch: string;
|
||||
}
|
||||
|
||||
interface PullRequestReadyForReviewEvent extends BasePayloadEvent {
|
||||
trigger: "pull_request_ready_for_review";
|
||||
issue_number: number;
|
||||
is_pr: true;
|
||||
title: string;
|
||||
body: string | null;
|
||||
branch: string;
|
||||
}
|
||||
|
||||
interface PullRequestReviewRequestedEvent extends BasePayloadEvent {
|
||||
trigger: "pull_request_review_requested";
|
||||
issue_number: number;
|
||||
is_pr: true;
|
||||
title: string;
|
||||
body: string | null;
|
||||
branch: string;
|
||||
}
|
||||
|
||||
interface PullRequestReviewSubmittedEvent extends BasePayloadEvent {
|
||||
trigger: "pull_request_review_submitted";
|
||||
issue_number: number;
|
||||
is_pr: true;
|
||||
review_id: number;
|
||||
/** review body is the primary content */
|
||||
body: string | null;
|
||||
review_state: string;
|
||||
branch: string;
|
||||
}
|
||||
|
||||
interface PullRequestReviewCommentCreatedEvent extends BasePayloadEvent {
|
||||
trigger: "pull_request_review_comment_created";
|
||||
issue_number: number;
|
||||
is_pr: true;
|
||||
title: string;
|
||||
comment_id: number;
|
||||
/** comment body is the primary content (null if already in prompt) */
|
||||
body: string | null;
|
||||
thread?: any;
|
||||
branch: string;
|
||||
}
|
||||
|
||||
interface IssuesOpenedEvent extends BasePayloadEvent {
|
||||
trigger: "issues_opened";
|
||||
issue_number: number;
|
||||
title: string;
|
||||
body: string | null;
|
||||
}
|
||||
|
||||
interface IssuesAssignedEvent extends BasePayloadEvent {
|
||||
trigger: "issues_assigned";
|
||||
issue_number: number;
|
||||
title: string;
|
||||
body: string | null;
|
||||
}
|
||||
|
||||
interface IssuesLabeledEvent extends BasePayloadEvent {
|
||||
trigger: "issues_labeled";
|
||||
issue_number: number;
|
||||
title: string;
|
||||
body: string | null;
|
||||
}
|
||||
|
||||
interface IssueCommentCreatedEvent extends BasePayloadEvent {
|
||||
trigger: "issue_comment_created";
|
||||
comment_id: number;
|
||||
/** distinguishes this from PR review comments (which use pull_request_review_comment_created) */
|
||||
comment_type: "issue";
|
||||
/** comment body is the primary content (null if already in prompt) */
|
||||
body: string | null;
|
||||
issue_number: number;
|
||||
// PR-specific fields (only present when is_pr is true)
|
||||
is_pr?: true;
|
||||
branch?: string;
|
||||
title?: string;
|
||||
}
|
||||
|
||||
interface CheckSuiteCompletedEvent extends BasePayloadEvent {
|
||||
trigger: "check_suite_completed";
|
||||
issue_number: number;
|
||||
is_pr: true;
|
||||
title: string;
|
||||
body: string | null;
|
||||
pull_request: any;
|
||||
branch: string;
|
||||
check_suite: {
|
||||
id: number;
|
||||
head_sha: string;
|
||||
head_branch: string | null;
|
||||
status: string | null;
|
||||
conclusion: string | null;
|
||||
url: string;
|
||||
};
|
||||
}
|
||||
|
||||
interface WorkflowDispatchEvent extends BasePayloadEvent {
|
||||
trigger: "workflow_dispatch";
|
||||
}
|
||||
|
||||
interface FixReviewEvent extends BasePayloadEvent {
|
||||
trigger: "fix_review";
|
||||
issue_number: number;
|
||||
is_pr: true;
|
||||
review_id: number;
|
||||
/** when true, only address comments the triggerer approved with 👍 (vs all comments) */
|
||||
approved_only?: boolean | undefined;
|
||||
}
|
||||
|
||||
interface ImplementPlanEvent extends BasePayloadEvent {
|
||||
trigger: "implement_plan";
|
||||
issue_number: number;
|
||||
plan_comment_id: number;
|
||||
/** plan content is the primary content (null if already in prompt) */
|
||||
body: string | null;
|
||||
}
|
||||
|
||||
interface PullRequestSynchronizeEvent extends BasePayloadEvent {
|
||||
trigger: "pull_request_synchronize";
|
||||
issue_number: number;
|
||||
is_pr: true;
|
||||
title: string;
|
||||
body: string | null;
|
||||
branch: string;
|
||||
/** SHA before the push -- used to compute incremental range-diff between PR versions */
|
||||
before_sha: string;
|
||||
}
|
||||
|
||||
interface UnknownEvent extends BasePayloadEvent {
|
||||
trigger: "unknown";
|
||||
}
|
||||
|
||||
// discriminated union for payload event based on trigger
|
||||
// note: all events use issue_number for consistency (PRs are issues in GitHub's API)
|
||||
export type PayloadEvent =
|
||||
| PullRequestOpenedEvent
|
||||
| PullRequestReadyForReviewEvent
|
||||
| PullRequestSynchronizeEvent
|
||||
| PullRequestReviewRequestedEvent
|
||||
| PullRequestReviewSubmittedEvent
|
||||
| PullRequestReviewCommentCreatedEvent
|
||||
| IssuesOpenedEvent
|
||||
| IssuesAssignedEvent
|
||||
| IssuesLabeledEvent
|
||||
| IssueCommentCreatedEvent
|
||||
| CheckSuiteCompletedEvent
|
||||
| WorkflowDispatchEvent
|
||||
| FixReviewEvent
|
||||
| ImplementPlanEvent
|
||||
| UnknownEvent;
|
||||
|
||||
// writeable payload type for building payloads
|
||||
export interface WriteablePayload {
|
||||
"~pullfrog": true;
|
||||
/** semantic version of the payload to ensure compatibility */
|
||||
version: string;
|
||||
/** provider/model slug (e.g. "anthropic/claude-opus") */
|
||||
model?: string | undefined;
|
||||
/** the user's actual request (body if @pullfrog tagged) */
|
||||
prompt: string;
|
||||
/** github username of the human who triggered this workflow run */
|
||||
triggerer?: string | undefined;
|
||||
/** event-level instructions for this trigger type (flag-expanded server-side) */
|
||||
eventInstructions?: string | undefined;
|
||||
/**
|
||||
* system-injected note about prior superseded runs (e.g. when the
|
||||
* triggering @pullfrog comment is edited). rendered alongside the user's
|
||||
* prompt rather than via eventInstructions so it survives user-prompt
|
||||
* precedence.
|
||||
*/
|
||||
previousRunsNote?: string | undefined;
|
||||
/** event data from webhook payload - discriminated union based on trigger field */
|
||||
event: PayloadEvent;
|
||||
/** timeout for agent run (e.g., "10m", "1h30m") - defaults to "1h" */
|
||||
timeout?: string | undefined;
|
||||
/** working directory for the agent */
|
||||
cwd?: string | undefined;
|
||||
/** pre-created progress comment (ID + type) for updating status */
|
||||
progressComment?: { id: string; type: "issue" | "review" } | undefined;
|
||||
/** when true, seed the PR summary tmpfile + persist edits at run end */
|
||||
generateSummary?: boolean | undefined;
|
||||
}
|
||||
|
||||
// immutable payload type for agent execution
|
||||
export type Payload = Readonly<WriteablePayload>;
|
||||
@@ -1 +0,0 @@
|
||||
Tell me a joke.
|
||||
@@ -1,92 +0,0 @@
|
||||
# `pullfrog/get-installation-token`
|
||||
|
||||
Get a GitHub App installation token in a workflow job. This convenience action makes it easier to integrate Pullfrog into existing CI workflows.
|
||||
|
||||
This action:
|
||||
|
||||
- Provides a GitHub App installation token for later workflow steps.
|
||||
- Works for the current repository out of the box.
|
||||
- Can optionally include additional repositories.
|
||||
- Masks the token in logs.
|
||||
- Revokes the token automatically in the post step.
|
||||
|
||||
## Requirements
|
||||
|
||||
- Workflow or job permissions must include `id-token: write`.
|
||||
- The Pullfrog GitHub App must be installed on the target repositories.
|
||||
- If you pass `repos`, each repository must be installed for the same app installation.
|
||||
|
||||
## Inputs
|
||||
|
||||
| Name | Required | Description |
|
||||
| --- | --- | --- |
|
||||
| `repos` | no | Comma-separated additional repo names to include, for example: `repo1,repo2`. The current repo is always included. |
|
||||
|
||||
## Outputs
|
||||
|
||||
| Name | Description |
|
||||
| --- | --- |
|
||||
| `token` | GitHub App installation token |
|
||||
|
||||
## Usage
|
||||
|
||||
### Basic (current repo only)
|
||||
|
||||
```yaml
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
example:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Get installation token
|
||||
id: token
|
||||
uses: ./action/get-installation-token
|
||||
|
||||
- name: Call GitHub API with token
|
||||
run: gh api repos/${{ github.repository }}
|
||||
env:
|
||||
GH_TOKEN: ${{ steps.token.outputs.token }}
|
||||
```
|
||||
|
||||
### Include extra repositories
|
||||
|
||||
```yaml
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
example:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Get token for current repo plus extra repos
|
||||
id: token
|
||||
uses: ./action/get-installation-token
|
||||
with:
|
||||
repos: pullfrog,app
|
||||
|
||||
- name: Checkout another repo with installation token
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: pullfrog/pullfrog
|
||||
token: ${{ steps.token.outputs.token }}
|
||||
path: action-repo
|
||||
```
|
||||
|
||||
## Notes
|
||||
|
||||
- `repos` expects repository names, not `owner/repo`.
|
||||
- Token lifetime is managed by GitHub, but this action also revokes the token during post-run cleanup.
|
||||
- Prefer step output usage (`${{ steps.<id>.outputs.token }}`) rather than writing tokens to files.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
- `Error: id-token permission is required`:
|
||||
Add `id-token: write` in workflow or job permissions.
|
||||
- Token works for current repo but not an extra repo:
|
||||
Ensure that repository is listed in `repos` and the app installation has access to it.
|
||||
@@ -1,21 +0,0 @@
|
||||
name: "Get Installation Token"
|
||||
description: "Get a GitHub App installation token for the current repository"
|
||||
author: "Pullfrog"
|
||||
|
||||
inputs:
|
||||
repos:
|
||||
description: "Comma-separated list of additional repo names to grant access to (e.g., 'repo1,repo2'). Current repo is always included."
|
||||
required: false
|
||||
|
||||
outputs:
|
||||
token:
|
||||
description: "GitHub App installation token"
|
||||
|
||||
runs:
|
||||
using: "node24"
|
||||
main: "entry.ts"
|
||||
post: "post.ts"
|
||||
|
||||
branding:
|
||||
icon: "key"
|
||||
color: "green"
|
||||
@@ -1,5 +0,0 @@
|
||||
import { runPullfrogCli } from "../runCli.ts";
|
||||
|
||||
runPullfrogCli({
|
||||
cliArgs: ["gha", "token"],
|
||||
});
|
||||
@@ -1,6 +0,0 @@
|
||||
import { runPullfrogCli } from "../runCli.ts";
|
||||
|
||||
runPullfrogCli({
|
||||
cliArgs: ["gha", "token", "--post"],
|
||||
swallowErrors: true,
|
||||
});
|
||||
@@ -0,0 +1,163 @@
|
||||
import { Gitea } from "@go-gitea/sdk.js";
|
||||
import type {
|
||||
Comment,
|
||||
ChangedFile,
|
||||
PullReview,
|
||||
Reaction,
|
||||
} from "@go-gitea/sdk.js";
|
||||
import type { PRContext } from "./types.ts";
|
||||
|
||||
const client = new Gitea({
|
||||
baseUrl: process.env.GITEA_URL,
|
||||
auth: process.env.BOT_TOKEN,
|
||||
});
|
||||
|
||||
export async function getPRDiff(pr: PRContext): Promise<string> {
|
||||
console.log(`Fetching PR #${pr.prNumber} diff for ${pr.owner}/${pr.repo}`);
|
||||
const res = await client.rest.repository.repoDownloadPullDiffOrPatch({
|
||||
owner: pr.owner,
|
||||
repo: pr.repo,
|
||||
index: pr.prNumber,
|
||||
diffType: "diff",
|
||||
});
|
||||
return res.data;
|
||||
}
|
||||
|
||||
export async function getPRFiles(pr: PRContext): Promise<ChangedFile[]> {
|
||||
console.log(
|
||||
`Fetching PR #${pr.prNumber} changed files for ${pr.owner}/${pr.repo}`,
|
||||
);
|
||||
const res = await client.rest.repository.repoGetPullRequestFiles({
|
||||
owner: pr.owner,
|
||||
repo: pr.repo,
|
||||
index: pr.prNumber,
|
||||
});
|
||||
return res.data;
|
||||
}
|
||||
|
||||
export async function postReviewComment(
|
||||
pr: PRContext,
|
||||
body: string,
|
||||
): Promise<Comment> {
|
||||
console.log(
|
||||
`Posting review comment on PR #${pr.prNumber} for ${pr.owner}/${pr.repo}`,
|
||||
);
|
||||
const res = await client.rest.issue.issueCreateComment({
|
||||
owner: pr.owner,
|
||||
repo: pr.repo,
|
||||
index: pr.prNumber,
|
||||
body: { body },
|
||||
});
|
||||
return res.data;
|
||||
}
|
||||
|
||||
export async function postInlineComment(
|
||||
pr: PRContext,
|
||||
file: string,
|
||||
line: number,
|
||||
body: string,
|
||||
): Promise<PullReview> {
|
||||
console.log(
|
||||
`Posting inline review comment on PR #${pr.prNumber} for ${pr.owner}/${pr.repo} at ${file}:${line}`,
|
||||
);
|
||||
const res = await client.rest.repository.repoCreatePullReview({
|
||||
owner: pr.owner,
|
||||
repo: pr.repo,
|
||||
index: pr.prNumber,
|
||||
body: {
|
||||
event: "COMMENT",
|
||||
commit_id: pr.headSha,
|
||||
comments: [{ path: file, new_position: line, body }],
|
||||
},
|
||||
});
|
||||
return res.data;
|
||||
}
|
||||
|
||||
export async function addReaction(
|
||||
pr: PRContext,
|
||||
commentId: number,
|
||||
reaction: string,
|
||||
): Promise<Reaction> {
|
||||
const res = await client.rest.issue.issuePostCommentReaction({
|
||||
owner: pr.owner,
|
||||
repo: pr.repo,
|
||||
id: commentId,
|
||||
content: { content: reaction },
|
||||
});
|
||||
return res.data;
|
||||
}
|
||||
|
||||
export async function removeReaction(
|
||||
pr: PRContext,
|
||||
commentId: number,
|
||||
reaction: string,
|
||||
): Promise<void> {
|
||||
await client.rest.issue.issueDeleteCommentReaction({
|
||||
owner: pr.owner,
|
||||
repo: pr.repo,
|
||||
id: commentId,
|
||||
content: { content: reaction },
|
||||
});
|
||||
}
|
||||
|
||||
export async function getPR(owner: string, repo: string, prNumber: number) {
|
||||
console.log(`Fetching PR #${prNumber} data for ${owner}/${repo}`);
|
||||
const res = await client.rest.repository.repoGetPullRequest({
|
||||
owner,
|
||||
repo,
|
||||
index: prNumber,
|
||||
});
|
||||
return res.data;
|
||||
}
|
||||
|
||||
export async function getFileContents(
|
||||
pr: PRContext,
|
||||
filePath: string,
|
||||
): Promise<string> {
|
||||
console.log(
|
||||
`Fetching contents of ${filePath} at PR #${pr.prNumber} head for ${pr.owner}/${pr.repo}`,
|
||||
);
|
||||
const res = await client.rest.repository.repoGetContents({
|
||||
owner: pr.owner,
|
||||
repo: pr.repo,
|
||||
filepath: filePath,
|
||||
ref: pr.headSha,
|
||||
});
|
||||
const entry = Array.isArray(res.data) ? res.data[0] : res.data;
|
||||
if (!entry?.content || entry.type !== "file") return "";
|
||||
// content is base64-encoded; Buffer handles embedded newlines
|
||||
return Buffer.from(entry.content, "base64").toString("utf8");
|
||||
}
|
||||
|
||||
export async function listDir(
|
||||
pr: PRContext,
|
||||
dirPath: string,
|
||||
): Promise<string[]> {
|
||||
console.log(
|
||||
`Listing directory ${dirPath} at PR #${pr.prNumber} head for ${pr.owner}/${pr.repo}`,
|
||||
);
|
||||
const res = await client.rest.repository.repoGetContents({
|
||||
owner: pr.owner,
|
||||
repo: pr.repo,
|
||||
filepath: dirPath,
|
||||
ref: pr.headSha,
|
||||
});
|
||||
const entries = Array.isArray(res.data) ? res.data : [res.data];
|
||||
return entries.map((e) => e.name ?? "").filter(Boolean);
|
||||
}
|
||||
|
||||
// Gitea REST API v1 has no code search endpoint — returns repo names matching the query.
|
||||
// mcp.ts should strongly prefer disk grep (find_symbol) when workspace is available.
|
||||
export async function searchCode(
|
||||
pr: PRContext,
|
||||
query: string,
|
||||
): Promise<string[]> {
|
||||
console.log(
|
||||
`Searching code for "${query}" at PR #${pr.prNumber} head for ${pr.owner}/${pr.repo}`,
|
||||
);
|
||||
const res = await client.rest.repository.repoSearch({
|
||||
q: query,
|
||||
limit: 20,
|
||||
});
|
||||
return (res.data.data ?? []).map((r) => r.full_name ?? "").filter(Boolean);
|
||||
}
|
||||
@@ -1,11 +1 @@
|
||||
/**
|
||||
* Library entry point for npm package
|
||||
* This exports the main function for programmatic usage
|
||||
*/
|
||||
|
||||
export type { Agent, AgentResult, AgentRunContext } from "./agents/shared.ts";
|
||||
export {
|
||||
type Inputs as ExecutionInputs,
|
||||
type MainResult,
|
||||
main,
|
||||
} from "./main.ts";
|
||||
console.log("Hello via Bun!");
|
||||
@@ -1,64 +0,0 @@
|
||||
/**
|
||||
* Internal entrypoint for the root app.
|
||||
* Re-exports shared types, values, and utilities needed by the Next.js app.
|
||||
*/
|
||||
|
||||
export type {
|
||||
AuthorPermission,
|
||||
ModelAlias,
|
||||
ModelProvider,
|
||||
Payload,
|
||||
PayloadEvent,
|
||||
ProviderConfig,
|
||||
PushPermission,
|
||||
ShellPermission,
|
||||
ToolPermission,
|
||||
WriteablePayload,
|
||||
} from "../external.ts";
|
||||
export {
|
||||
getModelEnvVars,
|
||||
getModelManagedCredentials,
|
||||
getModelProvider,
|
||||
getProviderDisplayName,
|
||||
modelAliases,
|
||||
parseModel,
|
||||
providers,
|
||||
pullfrogMcpName,
|
||||
resolveCliModel,
|
||||
resolveDisplayAlias,
|
||||
resolveModelSlug,
|
||||
resolveOpenRouterModel,
|
||||
} from "../external.ts";
|
||||
export type { Mode } from "../modes.ts";
|
||||
export { modes } from "../modes.ts";
|
||||
export type {
|
||||
BuildPullfrogFooterParams,
|
||||
WorkflowRunFooterInfo,
|
||||
} from "../utils/buildPullfrogFooter.ts";
|
||||
export {
|
||||
buildPullfrogFooter,
|
||||
PULLFROG_DIVIDER,
|
||||
stripExistingFooter,
|
||||
} from "../utils/buildPullfrogFooter.ts";
|
||||
export type { ResourceUsage, UsageSummary } from "../utils/github.ts";
|
||||
export {
|
||||
isLeapingIntoActionCommentBody,
|
||||
LEAPING_INTO_ACTION_PREFIX,
|
||||
} from "../utils/leapingComment.ts";
|
||||
export { MAX_LEARNINGS_LENGTH, truncateAtLineBoundary } from "../utils/learningsTruncate.ts";
|
||||
export type {
|
||||
CreateProgressCommentTarget,
|
||||
ProgressComment,
|
||||
ProgressCommentType,
|
||||
} from "../utils/progressComment.ts";
|
||||
export {
|
||||
createLeapingProgressComment,
|
||||
deleteProgressCommentApi,
|
||||
getProgressComment,
|
||||
updateProgressComment,
|
||||
} from "../utils/progressComment.ts";
|
||||
export {
|
||||
isValidTimeString,
|
||||
parseTimeString,
|
||||
TIMEOUT_DISABLED,
|
||||
} from "../utils/time.ts";
|
||||
@@ -1,2 +0,0 @@
|
||||
/** timeout for lifecycle hook scripts */
|
||||
export const LIFECYCLE_HOOK_TIMEOUT_MS = 6e5; // 10 minutes
|
||||
@@ -1,12 +0,0 @@
|
||||
// Enforce type-only imports from SDK packages
|
||||
// These SDK packages should only be used for type imports (stream output parsing)
|
||||
// Runtime SDK usage should be replaced with CLI invocations
|
||||
// Note: This rule only catches single-specifier imports; for multi-specifier imports,
|
||||
// the noUnusedImports rule will flag unused runtime imports
|
||||
|
||||
`import { $specifiers } from "@opencode-ai/sdk"` as $import where {
|
||||
register_diagnostic(
|
||||
span = $import,
|
||||
message = "SDK packages must use `import type` only. Use CLI invocation instead of runtime SDK usage."
|
||||
)
|
||||
}
|
||||
@@ -1,623 +0,0 @@
|
||||
// changes to tool permissions should be reflected in wiki/granular-tools.md
|
||||
|
||||
import { existsSync, readdirSync } from "node:fs";
|
||||
import { readFile } from "node:fs/promises";
|
||||
import { join } from "node:path";
|
||||
import { reportProgress } from "./mcp/comment.ts";
|
||||
import { startInstallation } from "./mcp/dependencies.ts";
|
||||
import { startMcpHttpServer, type ToolContext } from "./mcp/server.ts";
|
||||
import { computeModes } from "./modes.ts";
|
||||
import { initToolState } from "./toolState.ts";
|
||||
import {
|
||||
type ActivityTimeout,
|
||||
createProcessOutputActivityTimeout,
|
||||
DEFAULT_ACTIVITY_CHECK_INTERVAL_MS,
|
||||
DEFAULT_ACTIVITY_TIMEOUT_MS,
|
||||
} from "./utils/activity.ts";
|
||||
import { resolveAgent, resolveModel } from "./utils/agent.ts";
|
||||
import { validateAgentApiKey } from "./utils/apiKeys.ts";
|
||||
import { resolveBody } from "./utils/body.ts";
|
||||
import { selectFallbackModelIfNeeded } from "./utils/byokFallback.ts";
|
||||
import { log } from "./utils/cli.ts";
|
||||
import { recordDiffReadFromToolUse } from "./utils/diffCoverage.ts";
|
||||
import { onExitSignal } from "./utils/exitHandler.ts";
|
||||
import { resolveGit, setGitAuthServer } from "./utils/gitAuth.ts";
|
||||
import { startGitAuthServer } from "./utils/gitAuthServer.ts";
|
||||
import { createOctokit, writeGitHubUsageSummaryToFile } from "./utils/github.ts";
|
||||
import { resolveInstructions } from "./utils/instructions.ts";
|
||||
import { persistLearnings, seedLearningsFile } from "./utils/learnings.ts";
|
||||
import { executeLifecycleHook } from "./utils/lifecycle.ts";
|
||||
import { normalizeEnv, sanitizeSecret } from "./utils/normalizeEnv.ts";
|
||||
import { applyOverrides } from "./utils/overrides.ts";
|
||||
import { aggregateUsage, patchWorkflowRunFields } from "./utils/patchWorkflowRunFields.ts";
|
||||
import { resolveOutputSchema, resolvePayload, resolvePromptInput } from "./utils/payload.ts";
|
||||
import { type OidcCredentials, runProxyResolution } from "./utils/proxy.ts";
|
||||
import { fetchPreviousSnapshot, persistSummary, seedSummaryFile } from "./utils/prSummary.ts";
|
||||
import { handleAgentResult } from "./utils/run.ts";
|
||||
import { resolveRunContextData } from "./utils/runContextData.ts";
|
||||
import { renderRunError } from "./utils/runErrorRenderer.ts";
|
||||
import {
|
||||
finalizeSuccessRun,
|
||||
persistRunArtifacts,
|
||||
writeRunErrorOutputs,
|
||||
} from "./utils/runLifecycle.ts";
|
||||
import { logRunStartup } from "./utils/runStartupLog.ts";
|
||||
import { setEnvAllowlist } from "./utils/secrets.ts";
|
||||
import { createTempDirectory, setupGit } from "./utils/setup.ts";
|
||||
import { killTrackedChildren } from "./utils/subprocess.ts";
|
||||
import { resolveTimeoutMs, TIMEOUT_DISABLED } from "./utils/time.ts";
|
||||
import { Timer } from "./utils/timer.ts";
|
||||
import { createTodoTracker } from "./utils/todoTracking.ts";
|
||||
import { getJobToken, resolveTokens } from "./utils/token.ts";
|
||||
import { resolveRun } from "./utils/workflow.ts";
|
||||
|
||||
export { Inputs } from "./utils/payload.ts";
|
||||
|
||||
export interface MainResult {
|
||||
success: boolean;
|
||||
output?: string | undefined;
|
||||
error?: string | undefined;
|
||||
result?: string | undefined;
|
||||
}
|
||||
|
||||
export async function main(): Promise<MainResult> {
|
||||
// normalize env var names to uppercase (handles case-insensitive workflow files)
|
||||
normalizeEnv();
|
||||
|
||||
// apply caller-supplied env overrides — JSON object forwarded as the
|
||||
// UNSAFE_OVERRIDES env var (NOT a `with:` input). gated by `actions:write`
|
||||
// on the repo and refuses integrity-critical names; see utils/overrides.ts
|
||||
// for the deny-list and wiki/e2e-testing.md for usage + threat model.
|
||||
// the `unsafe` prefix is intentional: GH echoes the env-block value in the
|
||||
// step-header log, so the raw JSON is visible to anyone with `actions:read`.
|
||||
const overridesRaw = process.env.UNSAFE_OVERRIDES ?? "";
|
||||
if (overridesRaw.trim()) {
|
||||
const result = applyOverrides({ raw: overridesRaw, env: process.env });
|
||||
if (result.applied.length > 0) {
|
||||
log.info(`» applied ${result.applied.length} env override(s): ${result.applied.join(", ")}`);
|
||||
}
|
||||
if (result.denied.length > 0) {
|
||||
log.warning(
|
||||
`» refused to override ${result.denied.length} protected env var(s): ${result.denied.join(", ")}`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// write usage summary on SIGINT/SIGTERM so the worker can read it after sandbox.exec
|
||||
const usageSummaryPath = process.env.PULLFROG_USAGE_SUMMARY_PATH;
|
||||
if (usageSummaryPath) {
|
||||
onExitSignal(() => writeGitHubUsageSummaryToFile(usageSummaryPath));
|
||||
}
|
||||
|
||||
const timer = new Timer();
|
||||
let activityTimeout: ActivityTimeout | null = null;
|
||||
let safetyNetTimer: NodeJS.Timeout | undefined;
|
||||
|
||||
// parse prompt early to extract progressComment for toolState
|
||||
const resolvedPromptInput = resolvePromptInput();
|
||||
|
||||
const toolState = initToolState({
|
||||
progressComment:
|
||||
typeof resolvedPromptInput !== "string" ? resolvedPromptInput.progressComment : undefined,
|
||||
});
|
||||
|
||||
// resolve and fingerprint git binary before any agent code runs
|
||||
resolveGit();
|
||||
|
||||
// get job token for initial API calls
|
||||
const jobToken = getJobToken();
|
||||
const initialOctokit = createOctokit(jobToken);
|
||||
const runContext = await resolveRunContextData({ octokit: initialOctokit, token: jobToken });
|
||||
timer.checkpoint("runContextData");
|
||||
|
||||
// inject account-level secrets into process.env (YAML secrets take precedence).
|
||||
// sanitizeSecret trims + masks so accidental trailing whitespace doesn't leak
|
||||
// through GitHub Actions' line-based log masking. whitespace-only values
|
||||
// return null and skip injection so the user sees a clear missing-key error.
|
||||
if (runContext.dbSecrets) {
|
||||
for (const [key, value] of Object.entries(runContext.dbSecrets)) {
|
||||
if (!process.env[key]) {
|
||||
const sanitized = sanitizeSecret(key, value);
|
||||
if (sanitized !== null) process.env[key] = sanitized;
|
||||
}
|
||||
}
|
||||
const count = Object.keys(runContext.dbSecrets).length;
|
||||
if (count > 0) log.info(`» ${count} db secret(s) loaded`);
|
||||
}
|
||||
|
||||
// configure env allowlist for subprocess filtering
|
||||
if (runContext.repoSettings.envAllowlist) {
|
||||
setEnvAllowlist(runContext.repoSettings.envAllowlist);
|
||||
}
|
||||
|
||||
// resolve payload to determine shell permission
|
||||
const payload = resolvePayload(resolvedPromptInput, runContext.repoSettings);
|
||||
toolState.model = payload.model;
|
||||
if (payload.event.trigger === "pull_request_synchronize") {
|
||||
toolState.beforeSha = payload.event.before_sha;
|
||||
}
|
||||
|
||||
// resolve tokens first — acquireNewToken needs OIDC env vars for token exchange
|
||||
await using tokenRef = await resolveTokens({ push: payload.push });
|
||||
|
||||
// stash OIDC credentials in memory before wiping from process.env
|
||||
// the agent's shell commands can't access JS variables, so this is safe
|
||||
const oidcCredentials: OidcCredentials | null =
|
||||
process.env.ACTIONS_ID_TOKEN_REQUEST_URL && process.env.ACTIONS_ID_TOKEN_REQUEST_TOKEN
|
||||
? {
|
||||
requestUrl: process.env.ACTIONS_ID_TOKEN_REQUEST_URL,
|
||||
requestToken: process.env.ACTIONS_ID_TOKEN_REQUEST_TOKEN,
|
||||
}
|
||||
: null;
|
||||
|
||||
// clear OIDC env vars in restricted mode to prevent agent from minting tokens
|
||||
if (payload.shell !== "enabled") {
|
||||
delete process.env.ACTIONS_ID_TOKEN_REQUEST_URL;
|
||||
delete process.env.ACTIONS_ID_TOKEN_REQUEST_TOKEN;
|
||||
}
|
||||
|
||||
// Proxy decision: mint an OpenRouter key for OSS repos or managed billing
|
||||
// accounts. BillingError (402) and TransientError (503) get rendered inside
|
||||
// `runProxyResolution` before being rethrown — handled here (not in the
|
||||
// outer catch) because the outer catch needs `toolContext` (not yet built)
|
||||
// for its general-purpose error path.
|
||||
await runProxyResolution({
|
||||
payload,
|
||||
oss: runContext.oss,
|
||||
proxyModel: runContext.proxyModel,
|
||||
oidcCredentials,
|
||||
repo: runContext.repo,
|
||||
toolState,
|
||||
});
|
||||
|
||||
// create octokit with MCP token for GitHub API calls
|
||||
const octokit = createOctokit(tokenRef.mcpToken);
|
||||
|
||||
const runInfo = await resolveRun({ octokit });
|
||||
let toolContext: ToolContext | undefined;
|
||||
let progressCallbackDisabled = false;
|
||||
let todoTracker: ReturnType<typeof createTodoTracker> | undefined;
|
||||
|
||||
try {
|
||||
if (payload.cwd && process.cwd() !== payload.cwd) {
|
||||
process.chdir(payload.cwd);
|
||||
}
|
||||
|
||||
// resolve body - fetches body_html and converts to markdown if images present
|
||||
// this ensures agents receive markdown with working signed image URLs
|
||||
const originalBody = payload.event.body;
|
||||
const resolvedBody = await resolveBody({
|
||||
event: payload.event,
|
||||
octokit,
|
||||
repo: runContext.repo,
|
||||
});
|
||||
if (resolvedBody !== originalBody) {
|
||||
payload.event.body = resolvedBody;
|
||||
// also update prompt if original body was included there
|
||||
if (originalBody && payload.prompt.includes(originalBody)) {
|
||||
payload.prompt = payload.prompt.replace(originalBody, resolvedBody ?? "");
|
||||
}
|
||||
}
|
||||
|
||||
const tmpdir = createTempDirectory();
|
||||
|
||||
await using gitAuthServer = await startGitAuthServer(tmpdir);
|
||||
setGitAuthServer(gitAuthServer);
|
||||
|
||||
const initialResolvedModel = payload.proxyModel
|
||||
? undefined
|
||||
: resolveModel({ slug: payload.model });
|
||||
|
||||
// BYOK fallback: if the configured model needs a key the runner doesn't
|
||||
// have, swap to a free OpenCode model so the run can still produce
|
||||
// value. Without this, the agent launches with no key, the LLM provider
|
||||
// 401s, and the run dies in seconds with a synthetic "Invalid API key"
|
||||
// — exactly the silent-churn pattern that took out 15 accounts before
|
||||
// this landed. Router/proxy runs are skipped (Pullfrog mints the key);
|
||||
// see `selectFallbackModelIfNeeded` for the full skip set.
|
||||
const fallback = selectFallbackModelIfNeeded({
|
||||
resolvedModel: initialResolvedModel,
|
||||
proxyModel: payload.proxyModel,
|
||||
});
|
||||
// when fallback engages we bypass `resolveModel` for the new slug —
|
||||
// `PULLFROG_MODEL` has higher priority than the slug arg inside that
|
||||
// helper and would otherwise re-override back to the unkeyed model.
|
||||
// the free fallback slug is already a CLI-ready specifier, so using
|
||||
// it verbatim is correct and avoids the override.
|
||||
const effectiveSlug = fallback.fallback ? fallback.to : payload.model;
|
||||
const resolvedModel = fallback.fallback ? fallback.to : initialResolvedModel;
|
||||
if (fallback.fallback) {
|
||||
log.warning(
|
||||
`» fell back from ${fallback.from} to ${fallback.to} — no BYOK key present in runner env. add a provider key in repo secrets to use ${fallback.from} instead.`
|
||||
);
|
||||
toolState.modelFallback = { from: fallback.from };
|
||||
}
|
||||
|
||||
const agent = resolveAgent({ model: resolvedModel });
|
||||
|
||||
// surface the effective model in comment/review footers. payload.model is
|
||||
// just the stored slug (often undefined for router/oss runs that derive
|
||||
// the target from proxyModel). matching priority with resolveModelForLog
|
||||
// so the "Using `…`" badge reflects what actually ran.
|
||||
toolState.model = payload.proxyModel ?? resolvedModel ?? effectiveSlug;
|
||||
|
||||
validateAgentApiKey({
|
||||
agent,
|
||||
model: payload.proxyModel ?? resolvedModel ?? effectiveSlug,
|
||||
owner: runContext.repo.owner,
|
||||
name: runContext.repo.name,
|
||||
});
|
||||
|
||||
await setupGit({
|
||||
gitToken: tokenRef.gitToken,
|
||||
owner: runContext.repo.owner,
|
||||
name: runContext.repo.name,
|
||||
octokit,
|
||||
toolState,
|
||||
shell: payload.shell,
|
||||
postCheckoutScript: runContext.repoSettings.postCheckoutScript,
|
||||
});
|
||||
timer.checkpoint("git");
|
||||
|
||||
// execute setup lifecycle hook (runs once at initialization).
|
||||
// setup is load-bearing — if it fails the rest of the run is in an
|
||||
// undefined state, so upgrade the soft-fail warning to a hard error.
|
||||
const setupHook = await executeLifecycleHook({
|
||||
event: "setup",
|
||||
script: runContext.repoSettings.setupScript,
|
||||
});
|
||||
if (setupHook.warning) {
|
||||
throw new Error(setupHook.warning);
|
||||
}
|
||||
timer.checkpoint("lifecycleHooks::setup");
|
||||
|
||||
const agentId = agent.name;
|
||||
const modes = [...computeModes(agentId), ...runContext.repoSettings.modes];
|
||||
|
||||
const outputSchema = resolveOutputSchema();
|
||||
|
||||
// mcpServerUrl and tmpdir are set after server starts
|
||||
toolContext = {
|
||||
agentId,
|
||||
repo: runContext.repo,
|
||||
payload,
|
||||
octokit,
|
||||
githubInstallationToken: tokenRef.mcpToken,
|
||||
gitToken: tokenRef.gitToken,
|
||||
apiToken: runContext.apiToken,
|
||||
modes,
|
||||
postCheckoutScript: runContext.repoSettings.postCheckoutScript,
|
||||
prepushScript: runContext.repoSettings.prepushScript,
|
||||
prApproveEnabled: runContext.repoSettings.prApproveEnabled,
|
||||
modeInstructions: runContext.repoSettings.modeInstructions,
|
||||
toolState,
|
||||
runId: runInfo.runId,
|
||||
jobId: runInfo.jobId,
|
||||
mcpServerUrl: "",
|
||||
tmpdir,
|
||||
oss: runContext.oss,
|
||||
plan: runContext.plan,
|
||||
resolvedModel,
|
||||
};
|
||||
await using mcpHttpServer = await startMcpHttpServer(toolContext, { outputSchema });
|
||||
toolContext.mcpServerUrl = mcpHttpServer.url;
|
||||
log.info(`» MCP server started at ${mcpHttpServer.url}`);
|
||||
timer.checkpoint("mcpServer");
|
||||
|
||||
// seed the rolling repo-level learnings tmpfile for every run. the
|
||||
// agent reads the file at startup (path is surfaced in the LEARNINGS
|
||||
// section of the prompt) and may edit it during the post-run
|
||||
// reflection turn. persistLearnings reads it back at end-of-run and
|
||||
// PATCHes any changes to Repo.learnings, byte-trim equality against
|
||||
// the seed gates the API call. always-seed (vs gated): learnings are
|
||||
// universal — any run can produce them, and gating just hides the
|
||||
// affordance.
|
||||
//
|
||||
// wrapped in best-effort try/catch: this block runs unconditionally,
|
||||
// and an unwrapped filesystem failure (ENOSPC, EACCES, hostile sandbox)
|
||||
// would unwind into the outer main() catch and flip an otherwise-
|
||||
// successful run to "❌ Pullfrog failed" before the agent even starts.
|
||||
// on failure toolState.learningsFilePath stays unset, and downstream
|
||||
// consumers (`persistLearnings`, agent harnesses, `resolveInstructions`)
|
||||
// all treat undefined as "no learnings affordance this run".
|
||||
try {
|
||||
const learningsPath = await seedLearningsFile({
|
||||
tmpdir,
|
||||
current: runContext.repoSettings.learnings,
|
||||
});
|
||||
toolState.learningsFilePath = learningsPath;
|
||||
// file on disk is the verbatim DB body, so the seed used for
|
||||
// change-detection is just `current ?? ""` (trimmed). persistLearnings
|
||||
// byte-compares against the trimmed read-back to skip no-op PATCHes.
|
||||
toolState.learningsSeed = (runContext.repoSettings.learnings ?? "").trim();
|
||||
log.info(
|
||||
`» learnings seeded at ${learningsPath} (existing=${runContext.repoSettings.learnings ? "yes" : "no"})`
|
||||
);
|
||||
const ctxForExit = toolContext;
|
||||
onExitSignal(() => persistLearnings(ctxForExit));
|
||||
} catch (err) {
|
||||
log.warning(
|
||||
`» learnings seed failed: ${err instanceof Error ? err.message : String(err)} — continuing without learnings file`
|
||||
);
|
||||
}
|
||||
|
||||
// seed the rolling PR summary tmpfile when the dispatcher requested it.
|
||||
// gated on event being a PR — issue/workflow_dispatch runs have no
|
||||
// summarySnapshot to maintain. file path is exposed to the agent via
|
||||
// the select_mode response addendum (action/mcp/selectMode.ts).
|
||||
if (payload.generateSummary && payload.event.is_pr && payload.event.issue_number) {
|
||||
const previousSnapshot = await fetchPreviousSnapshot(toolContext, payload.event.issue_number);
|
||||
const filePath = await seedSummaryFile({ tmpdir, previousSnapshot });
|
||||
toolState.summaryFilePath = filePath;
|
||||
// capture the exact bytes the agent will see at startup. used by
|
||||
// the post-run retry loop to detect the agent forgetting to edit
|
||||
// the file (byte-identical to seed → nudge once via resume turn)
|
||||
// and by persistSummary to skip the DB write when nothing changed.
|
||||
try {
|
||||
toolState.summarySeed = await readFile(filePath, "utf8");
|
||||
} catch {
|
||||
// intentionally empty — summarySeed stays undefined
|
||||
}
|
||||
log.info(
|
||||
`» summary snapshot seeded at ${filePath} (previous=${previousSnapshot ? "yes" : "no"})`
|
||||
);
|
||||
// on SIGINT/SIGTERM we still want to persist whatever the agent has
|
||||
// written so far. handler is best-effort: any failure inside is
|
||||
// swallowed by Promise.allSettled in exitHandler.ts, and the
|
||||
// summaryPersistAttempted guard prevents double-execution if the
|
||||
// signal arrives after the normal path already persisted. capture a
|
||||
// narrowed reference so the closure doesn't depend on the outer
|
||||
// `toolContext` variable being defined later.
|
||||
const ctxForExit = toolContext;
|
||||
onExitSignal(() => persistSummary(ctxForExit));
|
||||
}
|
||||
|
||||
startInstallation(toolContext);
|
||||
|
||||
logRunStartup({ payload, resolvedModel, agentName: agent.name });
|
||||
|
||||
const instructions = resolveInstructions({
|
||||
payload,
|
||||
repo: runContext.repo,
|
||||
modes,
|
||||
agentId,
|
||||
outputSchema,
|
||||
learningsFilePath: toolState.learningsFilePath ?? null,
|
||||
learningsHeadings: runContext.repoSettings.learningsHeadings,
|
||||
});
|
||||
const logParts = [
|
||||
instructions.eventInstructions
|
||||
? `EVENT-LEVEL INSTRUCTIONS:\n${instructions.eventInstructions}`
|
||||
: null,
|
||||
instructions.user ? `USER REQUEST:\n${instructions.user}` : null,
|
||||
instructions.event,
|
||||
].filter(Boolean);
|
||||
log.box(logParts.join("\n\n---\n\n"), {
|
||||
title: "Instructions",
|
||||
});
|
||||
log.group("View full prompt", () => {
|
||||
log.info(instructions.full);
|
||||
});
|
||||
|
||||
// OpenCode loads .opencode/plugin/ files at startup. if the repo has any,
|
||||
// eagerly await dependency installation so plugin imports can resolve.
|
||||
if (agentId === "opencode") {
|
||||
const pluginDir = join(process.cwd(), ".opencode", "plugin");
|
||||
const hasPlugins =
|
||||
existsSync(pluginDir) && readdirSync(pluginDir).some((f) => /\.[jt]sx?$/.test(f));
|
||||
if (hasPlugins && toolState.dependencyInstallation?.promise) {
|
||||
log.info(
|
||||
"» .opencode/plugin/ detected — awaiting dependency installation before agent start"
|
||||
);
|
||||
await toolState.dependencyInstallation.promise.catch(() => {});
|
||||
timer.checkpoint("awaitDepsForPlugins");
|
||||
}
|
||||
}
|
||||
|
||||
// run agent, optionally with timeout enforcement
|
||||
activityTimeout = createProcessOutputActivityTimeout({
|
||||
timeoutMs: DEFAULT_ACTIVITY_TIMEOUT_MS,
|
||||
checkIntervalMs: DEFAULT_ACTIVITY_CHECK_INTERVAL_MS,
|
||||
});
|
||||
activityTimeout.promise.catch(() => {}); // prevent unhandled rejection if agent wins race
|
||||
todoTracker = createTodoTracker(async (body) => {
|
||||
if (progressCallbackDisabled || !toolContext) return;
|
||||
try {
|
||||
await reportProgress(toolContext, { body });
|
||||
} catch (err) {
|
||||
log.debug(`progress update failed: ${err}`);
|
||||
}
|
||||
});
|
||||
toolState.todoTracker = todoTracker;
|
||||
|
||||
// on cancellation, stop scheduling new tracker writes immediately. without this, a
|
||||
// debounced write queued just before SIGTERM could land at GitHub *after* the
|
||||
// workflow_run.completed webhook has already replaced the comment with the
|
||||
// "This run was cancelled" body, clobbering it back to the task list. we can't
|
||||
// await in-flight writes (the process is exiting), but cancelling the timer
|
||||
// shrinks the race window.
|
||||
onExitSignal(() => {
|
||||
todoTracker?.cancel();
|
||||
});
|
||||
|
||||
// when the agent subprocess is killed for inner activity timeout, stop
|
||||
// the MCP HTTP server so mcp-proxy's SSE reconnect attempts don't keep
|
||||
// the outer activity timer alive. start a short safety-net timer — if
|
||||
// the agent promise hasn't resolved within 5min after the inner kill,
|
||||
// force-reject the outer timer so the run can exit.
|
||||
let innerTimeoutFired = false;
|
||||
const onInnerActivityTimeout = () => {
|
||||
if (innerTimeoutFired) return;
|
||||
innerTimeoutFired = true;
|
||||
log.info(
|
||||
"» inner activity timeout fired — stopping MCP server and starting 5min safety-net timer"
|
||||
);
|
||||
// fire and forget — the server's dispose is idempotent so the
|
||||
// `await using` cleanup at block exit is still safe.
|
||||
mcpHttpServer[Symbol.asyncDispose]().catch((err) => {
|
||||
log.debug(
|
||||
`mcp server stop after inner kill failed: ${err instanceof Error ? err.message : String(err)}`
|
||||
);
|
||||
});
|
||||
safetyNetTimer = setTimeout(
|
||||
() => {
|
||||
activityTimeout?.forceReject(
|
||||
"agent still pending 5min after inner activity kill — forcing exit"
|
||||
);
|
||||
},
|
||||
5 * 60 * 1000
|
||||
);
|
||||
safetyNetTimer.unref?.();
|
||||
};
|
||||
|
||||
const agentPromise = agent.run({
|
||||
payload,
|
||||
resolvedModel,
|
||||
mcpServerUrl: mcpHttpServer.url,
|
||||
tmpdir,
|
||||
instructions,
|
||||
todoTracker,
|
||||
stopScript: runContext.repoSettings.stopScript,
|
||||
toolState,
|
||||
apiToken: runContext.apiToken,
|
||||
onActivityTimeout: onInnerActivityTimeout,
|
||||
onToolUse: (event) => {
|
||||
const wasTracked = recordDiffReadFromToolUse({
|
||||
state: toolState.diffCoverage,
|
||||
toolName: event.toolName,
|
||||
input: event.input,
|
||||
cwd: process.cwd(),
|
||||
});
|
||||
if (!wasTracked) return;
|
||||
const trackedRanges = toolState.diffCoverage?.coveredRanges ?? [];
|
||||
log.debug(
|
||||
`» diff coverage tracked from tool ${event.toolName} (${trackedRanges.length} merged range${trackedRanges.length === 1 ? "" : "s"})`
|
||||
);
|
||||
},
|
||||
});
|
||||
// symmetric with the activityTimeout/timeoutPromise catches below: if a
|
||||
// timeout wins the race, agentPromise is stranded and its later rejection
|
||||
// becomes an unhandled rejection. node 15+ terminates the process on
|
||||
// unhandled rejection by default, which would kill main() mid-cleanup and
|
||||
// lose the error-reporting / usage-summary work that follows. the race
|
||||
// still sees the rejection (the original promise is shared); this catch
|
||||
// only keeps node from treating a post-race rejection as unobserved.
|
||||
agentPromise.catch(() => {});
|
||||
|
||||
// timeout enforcement: default is 1 hour, but can be overridden via flags in the prompt:
|
||||
// - --timeout=2h (or any duration like "--timeout=30m", "--timeout=1h30m") to set a custom timeout
|
||||
// - --notimeout to disable timeout entirely
|
||||
let result: Awaited<typeof agentPromise>;
|
||||
if (payload.timeout === TIMEOUT_DISABLED) {
|
||||
result = await Promise.race([agentPromise, activityTimeout.promise]);
|
||||
} else {
|
||||
// resolveTimeoutMs rejects unparseable / zero / setTimeout-overflow inputs
|
||||
// so a bad string can't silently resolve to an instant timeout. fall back
|
||||
// to the 1h default with a warning — users who want runtime measured in
|
||||
// weeks should use --notimeout.
|
||||
const usable = resolveTimeoutMs(payload.timeout);
|
||||
if (payload.timeout && usable === null) {
|
||||
log.warning(`invalid timeout "${payload.timeout}" (use --notimeout to disable), using 1h`);
|
||||
}
|
||||
const timeoutMs = usable ?? 3600000;
|
||||
const actualTimeout = usable !== null ? payload.timeout : "1h";
|
||||
let timeoutId: NodeJS.Timeout | undefined;
|
||||
const timeoutPromise = new Promise<never>((_, reject) => {
|
||||
timeoutId = setTimeout(() => {
|
||||
reject(new Error(`agent run timed out after ${actualTimeout}`));
|
||||
}, timeoutMs);
|
||||
});
|
||||
timeoutPromise.catch(() => {}); // prevent unhandled rejection if agent wins race
|
||||
try {
|
||||
result = await Promise.race([agentPromise, timeoutPromise, activityTimeout.promise]);
|
||||
} finally {
|
||||
clearTimeout(timeoutId);
|
||||
}
|
||||
}
|
||||
|
||||
// accumulate top-level agent usage
|
||||
if (result.usage) {
|
||||
toolState.usageEntries.push(result.usage);
|
||||
}
|
||||
|
||||
// validate this before writing job summary to avoid masking the error
|
||||
if (outputSchema && !toolState.output) {
|
||||
throw new Error(
|
||||
"output_schema was provided but agent did not call set_output — structured output is required"
|
||||
);
|
||||
}
|
||||
|
||||
// success-path cleanup: postReview → persistSummary → persistLearnings →
|
||||
// failure-error-report → stranded-comment cleanup → job summary → output
|
||||
// marker. each step is best-effort; see `finalizeSuccessRun` for ordering
|
||||
// rationale (notably: progress-comment deletion lives in
|
||||
// create_pull_request_review for review-mode runs, so deletion here
|
||||
// covers the non-review success paths).
|
||||
await finalizeSuccessRun({ toolContext, toolState, result, repo: runContext.repo });
|
||||
|
||||
return await handleAgentResult({
|
||||
result,
|
||||
toolState,
|
||||
silent: payload.event.silent ?? false,
|
||||
});
|
||||
} catch (error) {
|
||||
const errorMessage = error instanceof Error ? error.message : "unknown error occurred";
|
||||
progressCallbackDisabled = true;
|
||||
todoTracker?.cancel();
|
||||
killTrackedChildren();
|
||||
log.error(errorMessage);
|
||||
|
||||
// classify (BillingError reclassification + hang detection + API-key auth
|
||||
// detection) and render to {summary, comment} markdown bodies.
|
||||
const rendered = renderRunError({
|
||||
errorMessage,
|
||||
repo: runContext.repo,
|
||||
agentDiagnostic: toolState.agentDiagnostic,
|
||||
});
|
||||
await writeRunErrorOutputs({ rendered, toolState });
|
||||
|
||||
// best-effort cleanup: review dispatch, summary persist, learnings persist.
|
||||
// a partial edit before the crash is still worth keeping.
|
||||
if (toolContext) {
|
||||
await persistRunArtifacts(toolContext);
|
||||
}
|
||||
|
||||
return {
|
||||
success: false,
|
||||
error: errorMessage,
|
||||
};
|
||||
} finally {
|
||||
activityTimeout?.stop();
|
||||
if (safetyNetTimer) clearTimeout(safetyNetTimer);
|
||||
if (usageSummaryPath) {
|
||||
// a write error here (ENOSPC, EACCES, dirname removed) must not mask
|
||||
// either the try's successful return or the catch's error return.
|
||||
// the summary is informational — log and move on.
|
||||
try {
|
||||
await writeGitHubUsageSummaryToFile(usageSummaryPath);
|
||||
} catch (err) {
|
||||
log.debug(
|
||||
`failed to write usage summary to ${usageSummaryPath}: ${err instanceof Error ? err.message : String(err)}`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// persist aggregated token + cost usage to the WorkflowRun row.
|
||||
// this is the single shared cleanup path across every agent implementation:
|
||||
// each agent harness returns a single AgentUsage from agent.run() that
|
||||
// already aggregates its internal retries via mergeAgentUsage, and the
|
||||
// success branch above pushes that entry into toolState.usageEntries.
|
||||
// aggregateUsage sums across those entries (one per agent.run()).
|
||||
//
|
||||
// caveat: if the agent promise rejected (timeout or uncaught throw) the
|
||||
// usage was never pushed, so nothing gets persisted for that run. runs
|
||||
// that returned AgentResult with success=false still report their partial
|
||||
// usage because the harness populates AgentUsage before returning.
|
||||
if (toolContext) {
|
||||
const patch = aggregateUsage(toolState.usageEntries);
|
||||
if (Object.keys(patch).length > 0) {
|
||||
await patchWorkflowRunFields(toolContext, patch);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,218 @@
|
||||
import { existsSync, readFileSync, readdirSync } from "node:fs";
|
||||
import { execFileSync } from "node:child_process";
|
||||
import { join, resolve, relative } from "node:path";
|
||||
import type { Tool } from "ollama";
|
||||
import {
|
||||
getFileContents,
|
||||
listDir as giteaListDir,
|
||||
searchCode,
|
||||
} from "./gitea.ts";
|
||||
import type { PRContext } from "./types.ts";
|
||||
|
||||
const MAX_FILE_LINES = 200;
|
||||
const MAX_GREP_RESULTS = 50;
|
||||
|
||||
export const TOOLS: Tool[] = [
|
||||
{
|
||||
type: "function",
|
||||
function: {
|
||||
name: "read_file",
|
||||
description: "Read the contents of a file in the repository.",
|
||||
parameters: {
|
||||
type: "object",
|
||||
required: ["path"],
|
||||
properties: {
|
||||
path: {
|
||||
type: "string",
|
||||
description: "Repo-relative path to the file",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
type: "function",
|
||||
function: {
|
||||
name: "list_dir",
|
||||
description: "List files and directories at a path in the repository.",
|
||||
parameters: {
|
||||
type: "object",
|
||||
required: ["path"],
|
||||
properties: {
|
||||
path: { type: "string", description: "Repo-relative directory path" },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
type: "function",
|
||||
function: {
|
||||
name: "find_symbol",
|
||||
description:
|
||||
"Search for a symbol, function, or pattern across the repository.",
|
||||
parameters: {
|
||||
type: "object",
|
||||
required: ["symbol"],
|
||||
properties: {
|
||||
symbol: {
|
||||
type: "string",
|
||||
description: "Symbol name or regex pattern to search for",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
export class ToolServer {
|
||||
private _callCount = 0;
|
||||
private readonly pr: PRContext;
|
||||
private readonly workspace: string | null;
|
||||
private readonly maxToolCalls: number;
|
||||
|
||||
constructor(pr: PRContext, workspace: string | null, maxToolCalls: number) {
|
||||
this.pr = pr;
|
||||
this.workspace = workspace;
|
||||
this.maxToolCalls = maxToolCalls;
|
||||
}
|
||||
|
||||
get tools(): Tool[] {
|
||||
return TOOLS;
|
||||
}
|
||||
|
||||
get callCount(): number {
|
||||
return this._callCount;
|
||||
}
|
||||
|
||||
get atLimit(): boolean {
|
||||
return this._callCount >= this.maxToolCalls;
|
||||
}
|
||||
|
||||
resetCallCount(): void {
|
||||
this._callCount = 0;
|
||||
}
|
||||
|
||||
async execute(name: string, args: Record<string, unknown>): Promise<string> {
|
||||
if (this._callCount >= this.maxToolCalls) {
|
||||
return "[tool call limit reached — conclude your review now]";
|
||||
}
|
||||
this._callCount++;
|
||||
|
||||
try {
|
||||
switch (name) {
|
||||
case "read_file":
|
||||
return await this.readFile(String(args["path"] ?? ""));
|
||||
case "list_dir":
|
||||
return await this.listDir(String(args["path"] ?? ""));
|
||||
case "find_symbol":
|
||||
return await this.findSymbol(String(args["symbol"] ?? ""));
|
||||
default:
|
||||
return `[unknown tool: ${name}]`;
|
||||
}
|
||||
} catch (err) {
|
||||
return `[error: ${err instanceof Error ? err.message : String(err)}]`;
|
||||
}
|
||||
}
|
||||
|
||||
// Validates path is repo-relative with no traversal or absolute prefix.
|
||||
private safePath(path: string): string | null {
|
||||
if (!path) return null;
|
||||
if (path.startsWith("/") || path.includes("..")) return null;
|
||||
return path.replace(/\/+/g, "/").replace(/\/$/, "");
|
||||
}
|
||||
|
||||
private async readFile(path: string): Promise<string> {
|
||||
const safe = this.safePath(path);
|
||||
if (!safe) return "[invalid path]";
|
||||
|
||||
if (this.workspace) {
|
||||
const full = join(this.workspace, safe);
|
||||
// Verify resolved path stays inside workspace
|
||||
if (!resolve(full).startsWith(resolve(this.workspace)))
|
||||
return "[invalid path]";
|
||||
if (!existsSync(full)) return "[file not found]";
|
||||
const content = readFileSync(full, "utf8");
|
||||
const lines = content.split("\n");
|
||||
const truncated = lines.slice(0, MAX_FILE_LINES).join("\n");
|
||||
return lines.length > MAX_FILE_LINES
|
||||
? `${truncated}\n... (truncated, ${lines.length - MAX_FILE_LINES} lines omitted)`
|
||||
: truncated;
|
||||
}
|
||||
|
||||
return await getFileContents(this.pr, safe);
|
||||
}
|
||||
|
||||
private async listDir(path: string): Promise<string> {
|
||||
const safe = this.safePath(path || ".");
|
||||
if (!safe) return "[invalid path]";
|
||||
|
||||
if (this.workspace) {
|
||||
const full = join(this.workspace, safe);
|
||||
if (!resolve(full).startsWith(resolve(this.workspace)))
|
||||
return "[invalid path]";
|
||||
if (!existsSync(full)) return "[directory not found]";
|
||||
const entries = readdirSync(full, { withFileTypes: true });
|
||||
return entries
|
||||
.map((e) => `${e.isDirectory() ? "d" : "f"} ${e.name}`)
|
||||
.join("\n");
|
||||
}
|
||||
|
||||
const entries = await giteaListDir(this.pr, safe);
|
||||
return entries.join("\n");
|
||||
}
|
||||
|
||||
private async findSymbol(symbol: string): Promise<string> {
|
||||
if (!symbol) return "[no symbol provided]";
|
||||
|
||||
if (this.workspace) {
|
||||
try {
|
||||
// execFileSync avoids shell injection — symbol is passed as an argument, not interpolated
|
||||
const out = execFileSync(
|
||||
"grep",
|
||||
[
|
||||
"-r",
|
||||
"-n",
|
||||
"--include=*.ts",
|
||||
"--include=*.tsx",
|
||||
"--include=*.js",
|
||||
"--include=*.jsx",
|
||||
"--include=*.py",
|
||||
"--include=*.go",
|
||||
"--include=*.rs",
|
||||
"--include=*.rb",
|
||||
"--include=*.java",
|
||||
"--include=*.kt",
|
||||
symbol,
|
||||
this.workspace,
|
||||
],
|
||||
{ encoding: "utf8", timeout: 5000, maxBuffer: 256 * 1024 },
|
||||
);
|
||||
const lines = out
|
||||
.split("\n")
|
||||
.filter(Boolean)
|
||||
.slice(0, MAX_GREP_RESULTS);
|
||||
// Strip workspace prefix so paths are repo-relative
|
||||
return (
|
||||
lines.map((l) => l.replace(this.workspace! + "/", "")).join("\n") ||
|
||||
"[not found]"
|
||||
);
|
||||
} catch {
|
||||
return "[not found]";
|
||||
}
|
||||
}
|
||||
|
||||
const results = await searchCode(this.pr, symbol);
|
||||
return results.join("\n") || "[not found]";
|
||||
}
|
||||
}
|
||||
|
||||
export function createMcpServer(
|
||||
pr: PRContext,
|
||||
maxToolCalls: number,
|
||||
): ToolServer {
|
||||
console.log("Initializing tool server...");
|
||||
const ws =
|
||||
process.env.GITEA_WORKSPACE ?? process.env.GITHUB_WORKSPACE ?? null;
|
||||
const workspace = ws && existsSync(ws) ? ws : null;
|
||||
return new ToolServer(pr, workspace, maxToolCalls);
|
||||
}
|
||||
@@ -1,110 +0,0 @@
|
||||
{
|
||||
"owner": "pullfrog",
|
||||
"name": "scratch",
|
||||
"pullNumber": 49,
|
||||
"reviewId": 3485940013,
|
||||
"review": {
|
||||
"body": "### This is the final PR Bugbot will review for you during this billing cycle\n\nYour free Bugbot reviews will reset on November 30\n\n<details>\n<summary>Details</summary>\n\nYour team is on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle for each member of your team.\n\nTo receive Bugbot reviews on all of your PRs, visit the [Cursor dashboard](https://www.cursor.com/dashboard?tab=bugbot) to activate Pro and start your 14-day free trial.\n</details>\n\n",
|
||||
"user": {
|
||||
"login": "cursor[bot]"
|
||||
}
|
||||
},
|
||||
"threads": [
|
||||
{
|
||||
"id": "PRRT_kwDOPaxxp85iysVl",
|
||||
"path": ".github/workflows/test.yml",
|
||||
"line": null,
|
||||
"startLine": null,
|
||||
"diffSide": "RIGHT",
|
||||
"isResolved": true,
|
||||
"isOutdated": true,
|
||||
"comments": {
|
||||
"nodes": [
|
||||
{
|
||||
"fullDatabaseId": "2544544046",
|
||||
"body": "### Bug: GitHub Actions workflow triggered for wrong branch\n\n<!-- **High Severity** -->\n\n<!-- DESCRIPTION START -->\nThe `pull_request` trigger specifies `branches: [mainc]`, but the `push` trigger specifies `branches: [main]`. This mismatch means pull requests will only trigger tests if targeting a non-existent `mainc` branch rather than the actual `main` development branch, preventing CI from running on most pull requests.\n<!-- DESCRIPTION END -->\n\n<!-- LOCATIONS START\n.github/workflows/test.yml#L6-L7\nLOCATIONS END -->\n<a href=\"https://cursor.com/open?data=eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6ImJ1Z2JvdC12MSJ9.eyJ2ZXJzaW9uIjoxLCJ0eXBlIjoiQlVHQk9UX0ZJWF9JTl9DVVJTT1IiLCJkYXRhIjp7InJlZGlzS2V5IjoiYnVnYm90OjllMTgyY2U2LWY0YWMtNDAwNS1hMzQ4LWIyYzJkZTk4OGM1ZSIsImVuY3J5cHRpb25LZXkiOiJmSW93NEdsUGUwYlYtd3M2UC1UNHdHT1JmMGZjakxfWVZEdC00SWNveXo0IiwiYnJhbmNoIjoiZGl2aWRlIn0sImlhdCI6MTc2MzYyMDgxOSwiZXhwIjoxNzY0MjI1NjE5fQ.BjkWsTqiNriojI5v10JcveUY2M50f9eflTNDgWAdjdW9w7E0EEY4GJfyzBrA72neco3qAlc34WipASNuEQbTD1fZvwtJY-TeNTDzoKmwA6gtwICB8t7qT87GPvcbDrdGGWdC8kW1jf-LntTmD0k7gt0AeENRAdRSiD3dbqYFN0huXHaB8f2Y48mpmLcnnUpoaaZe7By-Y0DnILyHppwx3AH75nKE_ZeAee3rQNGX4cwcHgB5emTSM93pMDQhT1vbIRYHMaFkOaW2-kDOA8H2QqxD4mT8VzY3skvxIo5HNZCvqE84NtEygHqkBv88g2EEijOPAAeskfsdp087yIzV9g\"><picture><source media=\"(prefers-color-scheme: dark)\" srcset=\"https://cursor.com/fix-in-cursor-dark.svg\"><source media=\"(prefers-color-scheme: light)\" srcset=\"https://cursor.com/fix-in-cursor-light.svg\"><img alt=\"Fix in Cursor\" src=\"https://cursor.com/fix-in-cursor.svg\"></picture></a> <a href=\"https://cursor.com/agents?data=eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6ImJ1Z2JvdC12MSJ9.eyJ2ZXJzaW9uIjoxLCJ0eXBlIjoiQlVHQk9UX0ZJWF9JTl9XRUIiLCJkYXRhIjp7InJlZGlzS2V5IjoiYnVnYm90OjllMTgyY2U2LWY0YWMtNDAwNS1hMzQ4LWIyYzJkZTk4OGM1ZSIsImVuY3J5cHRpb25LZXkiOiJmSW93NEdsUGUwYlYtd3M2UC1UNHdHT1JmMGZjakxfWVZEdC00SWNveXo0IiwiYnJhbmNoIjoiZGl2aWRlIiwicmVwb093bmVyIjoicHVsbGZyb2dhaSIsInJlcG9OYW1lIjoic2NyYXRjaCIsInByTnVtYmVyIjo0OSwiY29tbWl0U2hhIjoiNThiOGJmNmQ1MWE1Mjg4OGFjNGFkNzA5YWVmYTk2MWFkZDMyNDBiMSJ9LCJpYXQiOjE3NjM2MjA4MTksImV4cCI6MTc2NDIyNTYxOX0.SFDZe8R9uwhPjS55J4i_mV2ybsSZoQYM6YzdUOava4IKy1IK2OrVkVsG3-8p4rRaMBXdDZZ4ObPbtk70KqdAiLEDKBqaFcWqELc49lr0XRKUmu4F6EhESFQOvt7MLSVDIOgee8YRlhS6xtoPDqsRiV2KGOwyLEdCeYdrYz9i1DanIswWSoMRVvkjxZ6GUBYVAUg_JsgAXoKVJ-L9Q5Ygho6acVAr5NlGeBp2f6g49GX4GfDOPeV3SORQS1CjxQVRbjI-g0rW55NIisBEl8279VwG6-dTISNbyasZOB6R3eEmC4vmyAAGJjUsMwqhMPw1oaMMmYNSbtZLDESxME9IUg\"><picture><source media=\"(prefers-color-scheme: dark)\" srcset=\"https://cursor.com/fix-in-web-dark.svg\"><source media=\"(prefers-color-scheme: light)\" srcset=\"https://cursor.com/fix-in-web-light.svg\"><img alt=\"Fix in Web\" src=\"https://cursor.com/fix-in-web.svg\"></picture></a>\n\n",
|
||||
"createdAt": "2025-11-20T06:40:19Z",
|
||||
"diffHunk": "@@ -0,0 +1,36 @@\n+name: Test\n+\n+on:\n+ push:\n+ branches: [main]\n+ pull_request:\n+ branches: [mainc]",
|
||||
"line": null,
|
||||
"startLine": null,
|
||||
"originalLine": 7,
|
||||
"originalStartLine": null,
|
||||
"author": {
|
||||
"login": "cursor"
|
||||
},
|
||||
"pullRequestReview": {
|
||||
"databaseId": 3485940013,
|
||||
"author": {
|
||||
"login": "cursor"
|
||||
}
|
||||
},
|
||||
"reactionGroups": [
|
||||
{
|
||||
"content": "THUMBS_UP",
|
||||
"reactors": {
|
||||
"nodes": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"content": "THUMBS_DOWN",
|
||||
"reactors": {
|
||||
"nodes": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"content": "LAUGH",
|
||||
"reactors": {
|
||||
"nodes": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"content": "HOORAY",
|
||||
"reactors": {
|
||||
"nodes": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"content": "CONFUSED",
|
||||
"reactors": {
|
||||
"nodes": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"content": "HEART",
|
||||
"reactors": {
|
||||
"nodes": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"content": "ROCKET",
|
||||
"reactors": {
|
||||
"nodes": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"content": "EYES",
|
||||
"reactors": {
|
||||
"nodes": []
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"prFiles": [
|
||||
{
|
||||
"filename": ".github/workflows/test.yml",
|
||||
"patch": "@@ -0,0 +1,36 @@\n+name: Test\n+\n+on:\n+ push:\n+ branches: [main]\n+ pull_request:\n+ branches: [main]\n+\n+jobs:\n+ test:\n+ runs-on: ubuntu-latest\n+\n+ strategy:\n+ matrix:\n+ node-version: [22.x]\n+\n+ steps:\n+ - name: Checkout code\n+ uses: actions/checkout@v4\n+\n+ - name: Setup pnpm\n+ uses: pnpm/action-setup@v2\n+ with:\n+ version: 8\n+\n+ - name: Setup Node.js ${{ matrix.node-version }}\n+ uses: actions/setup-node@v4\n+ with:\n+ node-version: ${{ matrix.node-version }}\n+ cache: 'pnpm'\n+\n+ - name: Install dependencies\n+ run: pnpm install\n+\n+ - name: Run tests\n+ run: pnpm test"
|
||||
},
|
||||
{
|
||||
"filename": "index.test.ts",
|
||||
"patch": "@@ -1,5 +1,5 @@\n import { describe, it, expect } from 'vitest'\n-import { add } from './index.js'\n+import { add, multiply, subtract, divide } from './index.js'\n \n describe('add function', () => {\n it('should add two positive numbers correctly', () => {\n@@ -25,3 +25,51 @@ describe('add function', () => {\n expect(add(0.1, 0.2)).toBeCloseTo(0.3)\n })\n })\n+\n+describe('multiply function', () => {\n+ it('should multiply two positive numbers correctly', () => {\n+ expect(multiply(3, 4)).toBe(12)\n+ })\n+\n+ it('should multiply negative numbers correctly', () => {\n+ expect(multiply(-2, 3)).toBe(-6)\n+ expect(multiply(-2, -3)).toBe(6)\n+ })\n+\n+ it('should handle zero correctly', () => {\n+ expect(multiply(5, 0)).toBe(0)\n+ expect(multiply(0, 5)).toBe(0)\n+ })\n+})\n+\n+describe('subtract function', () => {\n+ it('should subtract two positive numbers correctly', () => {\n+ expect(subtract(10, 3)).toBe(7)\n+ })\n+\n+ it('should handle negative numbers correctly', () => {\n+ expect(subtract(5, -3)).toBe(8)\n+ expect(subtract(-5, 3)).toBe(-8)\n+ })\n+\n+ it('should handle zero correctly', () => {\n+ expect(subtract(5, 0)).toBe(5)\n+ expect(subtract(0, 5)).toBe(-5)\n+ })\n+})\n+\n+describe('divide function', () => {\n+ it('should divide two positive numbers correctly', () => {\n+ expect(divide(10, 2)).toBe(5)\n+ })\n+\n+ it('should handle negative numbers correctly', () => {\n+ expect(divide(-10, 2)).toBe(-5)\n+ expect(divide(10, -2)).toBe(-5)\n+ })\n+\n+ it('should handle decimal results correctly', () => {\n+ expect(divide(10, 3)).toBeCloseTo(3.333, 2)\n+ expect(divide(7, 2)).toBe(3.5)\n+ })\n+})"
|
||||
},
|
||||
{
|
||||
"filename": "index.ts",
|
||||
"patch": "@@ -3,11 +3,13 @@ export function add(a: number, b: number) {\n }\n \n export function multiply(a: number, b: number) {\n- // Bug: accidentally adding 1 to the result\n- return a * b + 1;\n+ return a * b;\n }\n \n export function subtract(a: number, b: number) {\n- // Bug: accidentally adding instead of subtracting\n- return a + b;\n+ return a - b;\n+}\n+\n+export function divide(a: number, b: number) {\n+ return a / b;\n }"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
{
|
||||
"owner": "pullfrog",
|
||||
"name": "scratch",
|
||||
"pullNumber": 64,
|
||||
"reviewId": 3531000326,
|
||||
"review": {
|
||||
"body": "This PR looks great. The retry logic is well-implemented and the tests are comprehensive.",
|
||||
"user": {
|
||||
"login": "pullfrog[bot]"
|
||||
}
|
||||
},
|
||||
"threads": [],
|
||||
"prFiles": []
|
||||
}
|
||||
@@ -1,67 +0,0 @@
|
||||
{
|
||||
"owner": "pullfrog",
|
||||
"name": "test-repo",
|
||||
"pullNumber": 1,
|
||||
"files": [
|
||||
{
|
||||
"sha": "a2d9c355792f1883c26d43d219db006b05781e4c",
|
||||
"filename": "src/format.ts",
|
||||
"status": "modified",
|
||||
"additions": 12,
|
||||
"deletions": 2,
|
||||
"changes": 14,
|
||||
"blob_url": "https://github.com/pullfrog/test-repo/blob/0311c0fb58fc7faa46e51c174394a4468f379681/src%2Fformat.ts",
|
||||
"raw_url": "https://github.com/pullfrog/test-repo/raw/0311c0fb58fc7faa46e51c174394a4468f379681/src%2Fformat.ts",
|
||||
"contents_url": "https://api.github.com/repos/pullfrog/test-repo/contents/src%2Fformat.ts?ref=0311c0fb58fc7faa46e51c174394a4468f379681",
|
||||
"patch": "@@ -1,7 +1,17 @@\n-export function formatCurrency(amount: number) {\n- return `$${amount.toFixed(2)}`;\n+export function formatCurrency(amount: number, currency = \"USD\") {\n+ return new Intl.NumberFormat(\"en-US\", {\n+ style: \"currency\",\n+ currency,\n+ }).format(amount);\n }\n \n export function formatPercent(value: number) {\n return `${(value * 100).toFixed(1)}%`;\n }\n+\n+export function formatNumber(value: number, decimals = 2) {\n+ return new Intl.NumberFormat(\"en-US\", {\n+ minimumFractionDigits: decimals,\n+ maximumFractionDigits: decimals,\n+ }).format(value);\n+}"
|
||||
},
|
||||
{
|
||||
"sha": "0786b9ce6870e65c644673745266e87eef057ce4",
|
||||
"filename": "src/math.ts",
|
||||
"status": "modified",
|
||||
"additions": 5,
|
||||
"deletions": 2,
|
||||
"changes": 7,
|
||||
"blob_url": "https://github.com/pullfrog/test-repo/blob/0311c0fb58fc7faa46e51c174394a4468f379681/src%2Fmath.ts",
|
||||
"raw_url": "https://github.com/pullfrog/test-repo/raw/0311c0fb58fc7faa46e51c174394a4468f379681/src%2Fmath.ts",
|
||||
"contents_url": "https://api.github.com/repos/pullfrog/test-repo/contents/src%2Fmath.ts?ref=0311c0fb58fc7faa46e51c174394a4468f379681",
|
||||
"patch": "@@ -3,13 +3,16 @@ export function add(a: number, b: number) {\n }\n \n export function subtract(a: number, b: number) {\n- return a + b; // bug: should be a - b\n+ return a - b;\n }\n \n export function multiply(a: number, b: number) {\n- return a * b + 1; // bug: off by one\n+ return a * b;\n }\n \n export function divide(a: number, b: number) {\n+ if (b === 0) {\n+ throw new Error(\"division by zero\");\n+ }\n return a / b;\n }"
|
||||
},
|
||||
{
|
||||
"sha": "cf92d8f6562c1be779506fec1049f38c9206c869",
|
||||
"filename": "src/old-module.ts",
|
||||
"status": "removed",
|
||||
"additions": 0,
|
||||
"deletions": 4,
|
||||
"changes": 4,
|
||||
"blob_url": "https://github.com/pullfrog/test-repo/blob/91ef1048326ef786fbcf95f29b3e2555506d2d54/src%2Fold-module.ts",
|
||||
"raw_url": "https://github.com/pullfrog/test-repo/raw/91ef1048326ef786fbcf95f29b3e2555506d2d54/src%2Fold-module.ts",
|
||||
"contents_url": "https://api.github.com/repos/pullfrog/test-repo/contents/src%2Fold-module.ts?ref=91ef1048326ef786fbcf95f29b3e2555506d2d54",
|
||||
"patch": "@@ -1,4 +0,0 @@\n-// this module is deprecated and will be removed\n-export function legacyHelper() {\n- return \"old\";\n-}"
|
||||
},
|
||||
{
|
||||
"sha": "a5bfb8a1be72e4f0816a5c4c83ee784a06559629",
|
||||
"filename": "src/validate.ts",
|
||||
"status": "added",
|
||||
"additions": 11,
|
||||
"deletions": 0,
|
||||
"changes": 11,
|
||||
"blob_url": "https://github.com/pullfrog/test-repo/blob/0311c0fb58fc7faa46e51c174394a4468f379681/src%2Fvalidate.ts",
|
||||
"raw_url": "https://github.com/pullfrog/test-repo/raw/0311c0fb58fc7faa46e51c174394a4468f379681/src%2Fvalidate.ts",
|
||||
"contents_url": "https://api.github.com/repos/pullfrog/test-repo/contents/src%2Fvalidate.ts?ref=0311c0fb58fc7faa46e51c174394a4468f379681",
|
||||
"patch": "@@ -0,0 +1,11 @@\n+export function isPositive(n: number) {\n+ return n > 0;\n+}\n+\n+export function isInRange(value: number, min: number, max: number) {\n+ return value >= min && value <= max;\n+}\n+\n+export function isInteger(n: number) {\n+ return Number.isInteger(n);\n+}"
|
||||
},
|
||||
{
|
||||
"sha": "5815895211d8e3355fdb77b9e216e73a248644d9",
|
||||
"filename": "test/math.test.ts",
|
||||
"status": "modified",
|
||||
"additions": 4,
|
||||
"deletions": 0,
|
||||
"changes": 4,
|
||||
"blob_url": "https://github.com/pullfrog/test-repo/blob/0311c0fb58fc7faa46e51c174394a4468f379681/test%2Fmath.test.ts",
|
||||
"raw_url": "https://github.com/pullfrog/test-repo/raw/0311c0fb58fc7faa46e51c174394a4468f379681/test%2Fmath.test.ts",
|
||||
"contents_url": "https://api.github.com/repos/pullfrog/test-repo/contents/test%2Fmath.test.ts?ref=0311c0fb58fc7faa46e51c174394a4468f379681",
|
||||
"patch": "@@ -17,4 +17,8 @@ describe(\"math\", () => {\n it(\"divides\", () => {\n expect(divide(10, 2)).toBe(5);\n });\n+\n+ it(\"throws on division by zero\", () => {\n+ expect(() => divide(1, 0)).toThrow(\"division by zero\");\n+ });\n });"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,109 +0,0 @@
|
||||
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
||||
|
||||
exports[`formatFilesWithLineNumbers > generates accurate TOC line numbers for pullfrog/test-repo#1 > content 1`] = `
|
||||
"## Files (5)
|
||||
- src/format.ts → lines 9-32 · diff-41c7b3ac268a3a1ae5c7be92f1230f600013b7170e44a693570ccbdb183ea36b
|
||||
- src/math.ts → lines 33-55 · diff-9c6e445a719b33e276684bdf95c69e617f0303638d44cf90d61295f2720ecc63
|
||||
- src/old-module.ts → lines 56-64 · diff-b02fb28f45ef1227002b260c46ae6b16e080d58f65ed2a035bb58d05e2e2df5c
|
||||
- src/validate.ts → lines 65-80 · diff-04b485505a31584d0a838375545a6d1f0044cd9601cd84ed98f75b42a88ea051
|
||||
- test/math.test.ts → lines 81-93 · diff-44b3f515a5c787743d239052db11d740d691e8bef711c2427bb2b9752a4103a9
|
||||
|
||||
---
|
||||
diff --git a/src/format.ts b/src/format.ts
|
||||
--- a/src/format.ts
|
||||
+++ b/src/format.ts
|
||||
@@ -1,7 +1,17 @@
|
||||
| 1 | | - | export function formatCurrency(amount: number) {
|
||||
| 2 | | - | return \`$\${amount.toFixed(2)}\`;
|
||||
| | 1 | + | export function formatCurrency(amount: number, currency = "USD") {
|
||||
| | 2 | + | return new Intl.NumberFormat("en-US", {
|
||||
| | 3 | + | style: "currency",
|
||||
| | 4 | + | currency,
|
||||
| | 5 | + | }).format(amount);
|
||||
| 3 | 6 | | }
|
||||
| 4 | 7 | |
|
||||
| 5 | 8 | | export function formatPercent(value: number) {
|
||||
| 6 | 9 | | return \`\${(value * 100).toFixed(1)}%\`;
|
||||
| 7 | 10 | | }
|
||||
| | 11 | + |
|
||||
| | 12 | + | export function formatNumber(value: number, decimals = 2) {
|
||||
| | 13 | + | return new Intl.NumberFormat("en-US", {
|
||||
| | 14 | + | minimumFractionDigits: decimals,
|
||||
| | 15 | + | maximumFractionDigits: decimals,
|
||||
| | 16 | + | }).format(value);
|
||||
| | 17 | + | }
|
||||
|
||||
diff --git a/src/math.ts b/src/math.ts
|
||||
--- a/src/math.ts
|
||||
+++ b/src/math.ts
|
||||
@@ -3,13 +3,16 @@ export function add(a: number, b: number) {
|
||||
| 3 | 3 | | }
|
||||
| 4 | 4 | |
|
||||
| 5 | 5 | | export function subtract(a: number, b: number) {
|
||||
| 6 | | - | return a + b; // bug: should be a - b
|
||||
| | 6 | + | return a - b;
|
||||
| 7 | 7 | | }
|
||||
| 8 | 8 | |
|
||||
| 9 | 9 | | export function multiply(a: number, b: number) {
|
||||
| 10 | | - | return a * b + 1; // bug: off by one
|
||||
| | 10 | + | return a * b;
|
||||
| 11 | 11 | | }
|
||||
| 12 | 12 | |
|
||||
| 13 | 13 | | export function divide(a: number, b: number) {
|
||||
| | 14 | + | if (b === 0) {
|
||||
| | 15 | + | throw new Error("division by zero");
|
||||
| | 16 | + | }
|
||||
| 14 | 17 | | return a / b;
|
||||
| 15 | 18 | | }
|
||||
|
||||
diff --git a/src/old-module.ts b/src/old-module.ts
|
||||
--- a/src/old-module.ts
|
||||
+++ b/src/old-module.ts
|
||||
@@ -1,4 +0,0 @@
|
||||
| 1 | | - | // this module is deprecated and will be removed
|
||||
| 2 | | - | export function legacyHelper() {
|
||||
| 3 | | - | return "old";
|
||||
| 4 | | - | }
|
||||
|
||||
diff --git a/src/validate.ts b/src/validate.ts
|
||||
--- a/src/validate.ts
|
||||
+++ b/src/validate.ts
|
||||
@@ -0,0 +1,11 @@
|
||||
| | 1 | + | export function isPositive(n: number) {
|
||||
| | 2 | + | return n > 0;
|
||||
| | 3 | + | }
|
||||
| | 4 | + |
|
||||
| | 5 | + | export function isInRange(value: number, min: number, max: number) {
|
||||
| | 6 | + | return value >= min && value <= max;
|
||||
| | 7 | + | }
|
||||
| | 8 | + |
|
||||
| | 9 | + | export function isInteger(n: number) {
|
||||
| | 10 | + | return Number.isInteger(n);
|
||||
| | 11 | + | }
|
||||
|
||||
diff --git a/test/math.test.ts b/test/math.test.ts
|
||||
--- a/test/math.test.ts
|
||||
+++ b/test/math.test.ts
|
||||
@@ -17,4 +17,8 @@ describe("math", () => {
|
||||
| 17 | 17 | | it("divides", () => {
|
||||
| 18 | 18 | | expect(divide(10, 2)).toBe(5);
|
||||
| 19 | 19 | | });
|
||||
| | 20 | + |
|
||||
| | 21 | + | it("throws on division by zero", () => {
|
||||
| | 22 | + | expect(() => divide(1, 0)).toThrow("division by zero");
|
||||
| | 23 | + | });
|
||||
| 20 | 24 | | });
|
||||
"
|
||||
`;
|
||||
|
||||
exports[`formatFilesWithLineNumbers > generates accurate TOC line numbers for pullfrog/test-repo#1 > toc 1`] = `
|
||||
"## Files (5)
|
||||
- src/format.ts → lines 9-32 · diff-41c7b3ac268a3a1ae5c7be92f1230f600013b7170e44a693570ccbdb183ea36b
|
||||
- src/math.ts → lines 33-55 · diff-9c6e445a719b33e276684bdf95c69e617f0303638d44cf90d61295f2720ecc63
|
||||
- src/old-module.ts → lines 56-64 · diff-b02fb28f45ef1227002b260c46ae6b16e080d58f65ed2a035bb58d05e2e2df5c
|
||||
- src/validate.ts → lines 65-80 · diff-04b485505a31584d0a838375545a6d1f0044cd9601cd84ed98f75b42a88ea051
|
||||
- test/math.test.ts → lines 81-93 · diff-44b3f515a5c787743d239052db11d740d691e8bef711c2427bb2b9752a4103a9
|
||||
|
||||
---
|
||||
"
|
||||
`;
|
||||
@@ -1,71 +0,0 @@
|
||||
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
||||
|
||||
exports[`formatReviewData > formats body-only review > content 1`] = `
|
||||
"# Review Threads (0) for PR #64 - Review 3531000326 by pullfrog[bot]
|
||||
|
||||
## Review Body
|
||||
|
||||
This PR looks great. The retry logic is well-implemented and the tests are comprehensive.
|
||||
|
||||
---
|
||||
"
|
||||
`;
|
||||
|
||||
exports[`formatReviewData > formats body-only review > toc 1`] = `""`;
|
||||
|
||||
exports[`formatReviewData > formats thread blocks with TOC and correct line numbers > content 1`] = `
|
||||
"# Review Threads (1) for PR #49 - Review 3485940013 by cursor[bot]
|
||||
|
||||
## TOC
|
||||
|
||||
- .github/workflows/test.yml:7 → lines 25-52
|
||||
|
||||
## Review Body
|
||||
|
||||
### This is the final PR Bugbot will review for you during this billing cycle
|
||||
|
||||
Your free Bugbot reviews will reset on November 30
|
||||
|
||||
<details>
|
||||
<summary>Details</summary>
|
||||
|
||||
Your team is on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle for each member of your team.
|
||||
|
||||
To receive Bugbot reviews on all of your PRs, visit the [Cursor dashboard](https://www.cursor.com/dashboard?tab=bugbot) to activate Pro and start your 14-day free trial.
|
||||
</details>
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## .github/workflows/test.yml:7 [RESOLVED]
|
||||
|
||||
\`\`\`\`comment author=cursor id=2544544046 review=3485940013 thread=PRRT_kwDOPaxxp85iysVl *
|
||||
### Bug: GitHub Actions workflow triggered for wrong branch
|
||||
|
||||
<!-- **High Severity** -->
|
||||
|
||||
<!-- DESCRIPTION START -->
|
||||
The \`pull_request\` trigger specifies \`branches: [mainc]\`, but the \`push\` trigger specifies \`branches: [main]\`. This mismatch means pull requests will only trigger tests if targeting a non-existent \`mainc\` branch rather than the actual \`main\` development branch, preventing CI from running on most pull requests.
|
||||
<!-- DESCRIPTION END -->
|
||||
|
||||
<!-- LOCATIONS START
|
||||
.github/workflows/test.yml#L6-L7
|
||||
LOCATIONS END -->
|
||||
<a href="https://cursor.com/open?data=eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6ImJ1Z2JvdC12MSJ9.eyJ2ZXJzaW9uIjoxLCJ0eXBlIjoiQlVHQk9UX0ZJWF9JTl9DVVJTT1IiLCJkYXRhIjp7InJlZGlzS2V5IjoiYnVnYm90OjllMTgyY2U2LWY0YWMtNDAwNS1hMzQ4LWIyYzJkZTk4OGM1ZSIsImVuY3J5cHRpb25LZXkiOiJmSW93NEdsUGUwYlYtd3M2UC1UNHdHT1JmMGZjakxfWVZEdC00SWNveXo0IiwiYnJhbmNoIjoiZGl2aWRlIn0sImlhdCI6MTc2MzYyMDgxOSwiZXhwIjoxNzY0MjI1NjE5fQ.BjkWsTqiNriojI5v10JcveUY2M50f9eflTNDgWAdjdW9w7E0EEY4GJfyzBrA72neco3qAlc34WipASNuEQbTD1fZvwtJY-TeNTDzoKmwA6gtwICB8t7qT87GPvcbDrdGGWdC8kW1jf-LntTmD0k7gt0AeENRAdRSiD3dbqYFN0huXHaB8f2Y48mpmLcnnUpoaaZe7By-Y0DnILyHppwx3AH75nKE_ZeAee3rQNGX4cwcHgB5emTSM93pMDQhT1vbIRYHMaFkOaW2-kDOA8H2QqxD4mT8VzY3skvxIo5HNZCvqE84NtEygHqkBv88g2EEijOPAAeskfsdp087yIzV9g"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/fix-in-cursor-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/fix-in-cursor-light.svg"><img alt="Fix in Cursor" src="https://cursor.com/fix-in-cursor.svg"></picture></a> <a href="https://cursor.com/agents?data=eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6ImJ1Z2JvdC12MSJ9.eyJ2ZXJzaW9uIjoxLCJ0eXBlIjoiQlVHQk9UX0ZJWF9JTl9XRUIiLCJkYXRhIjp7InJlZGlzS2V5IjoiYnVnYm90OjllMTgyY2U2LWY0YWMtNDAwNS1hMzQ4LWIyYzJkZTk4OGM1ZSIsImVuY3J5cHRpb25LZXkiOiJmSW93NEdsUGUwYlYtd3M2UC1UNHdHT1JmMGZjakxfWVZEdC00SWNveXo0IiwiYnJhbmNoIjoiZGl2aWRlIiwicmVwb093bmVyIjoicHVsbGZyb2dhaSIsInJlcG9OYW1lIjoic2NyYXRjaCIsInByTnVtYmVyIjo0OSwiY29tbWl0U2hhIjoiNThiOGJmNmQ1MWE1Mjg4OGFjNGFkNzA5YWVmYTk2MWFkZDMyNDBiMSJ9LCJpYXQiOjE3NjM2MjA4MTksImV4cCI6MTc2NDIyNTYxOX0.SFDZe8R9uwhPjS55J4i_mV2ybsSZoQYM6YzdUOava4IKy1IK2OrVkVsG3-8p4rRaMBXdDZZ4ObPbtk70KqdAiLEDKBqaFcWqELc49lr0XRKUmu4F6EhESFQOvt7MLSVDIOgee8YRlhS6xtoPDqsRiV2KGOwyLEdCeYdrYz9i1DanIswWSoMRVvkjxZ6GUBYVAUg_JsgAXoKVJ-L9Q5Ygho6acVAr5NlGeBp2f6g49GX4GfDOPeV3SORQS1CjxQVRbjI-g0rW55NIisBEl8279VwG6-dTISNbyasZOB6R3eEmC4vmyAAGJjUsMwqhMPw1oaMMmYNSbtZLDESxME9IUg"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/fix-in-web-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/fix-in-web-light.svg"><img alt="Fix in Web" src="https://cursor.com/fix-in-web.svg"></picture></a>
|
||||
|
||||
|
||||
\`\`\`\`
|
||||
|
||||
\`\`\`diff file=.github/workflows/test.yml lines=7 side=RIGHT
|
||||
@@ -0,0 +1,36 @@
|
||||
... (3 lines above) ...
|
||||
+ push:
|
||||
+ branches: [main]
|
||||
+ pull_request:
|
||||
+ branches: [main]
|
||||
\`\`\`
|
||||
"
|
||||
`;
|
||||
|
||||
exports[`formatReviewData > formats thread blocks with TOC and correct line numbers > toc 1`] = `"- .github/workflows/test.yml:7 → lines 25-52"`;
|
||||
@@ -1,7 +0,0 @@
|
||||
import { configure } from "arktype/config";
|
||||
|
||||
configure({
|
||||
toJsonSchema: {
|
||||
dialect: null,
|
||||
},
|
||||
});
|
||||
@@ -1,257 +0,0 @@
|
||||
import { mkdirSync, writeFileSync } from "node:fs";
|
||||
import { join } from "node:path";
|
||||
import { type } from "arktype";
|
||||
import { log } from "../utils/log.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
export const GetCheckSuiteLogs = type({
|
||||
check_suite_id: type.number.describe("the id from check_suite.id"),
|
||||
});
|
||||
|
||||
type LogLine = {
|
||||
line: number;
|
||||
content: string;
|
||||
type: "error" | "warning" | "failure" | "trace";
|
||||
};
|
||||
|
||||
type LogAnalysis = {
|
||||
totalLines: number;
|
||||
index: LogLine[];
|
||||
excerpt: {
|
||||
content: string;
|
||||
startLine: number;
|
||||
endLine: number;
|
||||
};
|
||||
};
|
||||
|
||||
function analyzeLog(logs: string, excerptLines = 80): LogAnalysis {
|
||||
// biome-ignore lint/suspicious/noControlCharactersInRegex: ANSI escape codes use control chars
|
||||
const clean = logs.replace(/\x1b\[[0-9;]*m/g, "");
|
||||
const lines = clean.split("\n");
|
||||
const totalLines = lines.length;
|
||||
|
||||
const index: LogLine[] = [];
|
||||
|
||||
const patterns: Array<{ type: LogLine["type"]; pattern: RegExp; skip?: RegExp }> = [
|
||||
{ type: "error", pattern: /##\[error\]/i },
|
||||
{ type: "error", pattern: /\bError:/i },
|
||||
{ type: "error", pattern: /\bERR_/i },
|
||||
{ type: "error", pattern: /exit code [1-9]/i },
|
||||
{ type: "warning", pattern: /##\[warning\]/i },
|
||||
{ type: "warning", pattern: /\bWARN\b/i, skip: /apt|dpkg|Reading package/i },
|
||||
{ type: "failure", pattern: /\d+ failed/i },
|
||||
{ type: "failure", pattern: /FAIL\b/i },
|
||||
{ type: "failure", pattern: /✕|✗|×/ },
|
||||
{ type: "trace", pattern: /^\s+at\s+/i },
|
||||
];
|
||||
|
||||
for (let i = 0; i < lines.length; i++) {
|
||||
const line = lines[i];
|
||||
|
||||
for (const p of patterns) {
|
||||
if (p.pattern.test(line)) {
|
||||
if (p.skip?.test(line)) continue;
|
||||
|
||||
// dedupe consecutive traces
|
||||
if (p.type === "trace" && index.length > 0 && index[index.length - 1].type === "trace") {
|
||||
continue;
|
||||
}
|
||||
|
||||
// truncate long lines
|
||||
const truncated = line.length > 120 ? line.slice(0, 117) + "..." : line;
|
||||
|
||||
index.push({
|
||||
line: i + 1,
|
||||
content: truncated.trim(),
|
||||
type: p.type,
|
||||
});
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// find excerpt range: focus on LAST ##[error] line
|
||||
let errorLine = -1;
|
||||
for (let i = lines.length - 1; i >= 0; i--) {
|
||||
if (/##\[error\]/i.test(lines[i])) {
|
||||
errorLine = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
let start: number;
|
||||
let end: number;
|
||||
|
||||
if (errorLine === -1) {
|
||||
start = Math.max(0, totalLines - excerptLines);
|
||||
end = totalLines;
|
||||
} else {
|
||||
const contextAfter = 5;
|
||||
const contextBefore = excerptLines - contextAfter;
|
||||
start = Math.max(0, errorLine - contextBefore);
|
||||
end = Math.min(totalLines, errorLine + contextAfter);
|
||||
}
|
||||
|
||||
return {
|
||||
totalLines,
|
||||
index,
|
||||
excerpt: {
|
||||
content: lines.slice(start, end).join("\n"),
|
||||
startLine: start + 1,
|
||||
endLine: end,
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
type JobLogResult = {
|
||||
job_id: number;
|
||||
job_name: string;
|
||||
job_url: string;
|
||||
failed_steps: string[];
|
||||
log_index: LogLine[];
|
||||
excerpt: {
|
||||
start_line: number;
|
||||
end_line: number;
|
||||
total_lines: number;
|
||||
content: string;
|
||||
};
|
||||
full_log_path: string;
|
||||
};
|
||||
|
||||
export function GetCheckSuiteLogsTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "get_check_suite_logs",
|
||||
description:
|
||||
"get workflow run logs for a failed check suite. returns a log_index of interesting lines, " +
|
||||
"a curated excerpt, and full_log_path for deeper investigation. " +
|
||||
"pass check_suite.id from the webhook payload.",
|
||||
parameters: GetCheckSuiteLogs,
|
||||
execute: execute(async (params) => {
|
||||
const check_suite_id = params.check_suite_id;
|
||||
|
||||
// get workflow runs for this specific check suite
|
||||
const workflowRuns = await ctx.octokit.paginate(
|
||||
ctx.octokit.rest.actions.listWorkflowRunsForRepo,
|
||||
{
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
check_suite_id,
|
||||
per_page: 100,
|
||||
request: { signal: AbortSignal.timeout(10_000) },
|
||||
}
|
||||
);
|
||||
|
||||
const failedRuns = workflowRuns.filter((run) => run.conclusion === "failure");
|
||||
|
||||
if (failedRuns.length === 0) {
|
||||
return {
|
||||
check_suite_id,
|
||||
message: "no failed workflow runs found for this check suite",
|
||||
failed_jobs: [],
|
||||
};
|
||||
}
|
||||
|
||||
// setup logs directory
|
||||
const tempDir = process.env.PULLFROG_TEMP_DIR;
|
||||
if (!tempDir) {
|
||||
throw new Error("PULLFROG_TEMP_DIR not set");
|
||||
}
|
||||
const logsDir = join(tempDir, "ci-logs");
|
||||
mkdirSync(logsDir, { recursive: true });
|
||||
|
||||
const jobResults: JobLogResult[] = [];
|
||||
|
||||
// get logs for each failed run
|
||||
for (const run of failedRuns) {
|
||||
const jobs = await ctx.octokit.paginate(ctx.octokit.rest.actions.listJobsForWorkflowRun, {
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
run_id: run.id,
|
||||
request: { signal: AbortSignal.timeout(10_000) },
|
||||
});
|
||||
|
||||
// only process failed jobs
|
||||
const failedJobs = jobs.filter((job) => job.conclusion === "failure");
|
||||
|
||||
for (const job of failedJobs) {
|
||||
try {
|
||||
const logsResponse = await ctx.octokit.rest.actions.downloadJobLogsForWorkflowRun({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
job_id: job.id,
|
||||
request: { signal: AbortSignal.timeout(10_000) },
|
||||
});
|
||||
|
||||
const logsUrl = logsResponse.url;
|
||||
const logsResult = await fetch(logsUrl, { signal: AbortSignal.timeout(10_000) });
|
||||
if (!logsResult.ok) {
|
||||
throw new Error(
|
||||
`failed to fetch logs: ${logsResult.status} ${logsResult.statusText}`
|
||||
);
|
||||
}
|
||||
const logsText = await logsResult.text();
|
||||
|
||||
// write full log to disk
|
||||
const logPath = join(logsDir, `job-${job.id}.log`);
|
||||
writeFileSync(logPath, logsText);
|
||||
|
||||
// analyze log
|
||||
const analysis = analyzeLog(logsText, 80);
|
||||
|
||||
// get failed steps
|
||||
const failedSteps =
|
||||
job.steps
|
||||
?.filter((s) => s.conclusion === "failure")
|
||||
.map((s) => `Step ${s.number}: ${s.name}`) ?? [];
|
||||
|
||||
jobResults.push({
|
||||
job_id: job.id,
|
||||
job_name: job.name,
|
||||
job_url: job.html_url ?? "",
|
||||
failed_steps: failedSteps,
|
||||
log_index: analysis.index,
|
||||
excerpt: {
|
||||
start_line: analysis.excerpt.startLine,
|
||||
end_line: analysis.excerpt.endLine,
|
||||
total_lines: analysis.totalLines,
|
||||
content: analysis.excerpt.content,
|
||||
},
|
||||
full_log_path: logPath,
|
||||
});
|
||||
|
||||
log.debug(`analyzed logs for job ${job.name}: ${analysis.index.length} indexed lines`);
|
||||
} catch (error) {
|
||||
log.info(`failed to fetch logs for job ${job.id}: ${error}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
_instructions: {
|
||||
overview:
|
||||
"this result contains CI failure information. use log_index to find interesting lines, then read full_log_path for details.",
|
||||
fields: {
|
||||
log_index:
|
||||
"array of interesting lines (errors, warnings, failures) with line numbers. use these to navigate the full log.",
|
||||
excerpt:
|
||||
"a curated ~80 line window around the last error. may not show all failures if they occur in different places.",
|
||||
full_log_path:
|
||||
"path to the complete log file. read specific line ranges using the line numbers from log_index.",
|
||||
failed_steps:
|
||||
"which CI steps failed. read the workflow yml to understand what commands these steps run.",
|
||||
},
|
||||
workflow: [
|
||||
"1. scan log_index to see where errors/warnings/failures are located",
|
||||
"2. read excerpt for immediate context",
|
||||
"3. if excerpt doesn't show what you need, read specific line ranges from full_log_path",
|
||||
"4. check failed_steps to understand what command failed",
|
||||
],
|
||||
},
|
||||
check_suite_id,
|
||||
repo: `${ctx.repo.owner}/${ctx.repo.name}`,
|
||||
failed_jobs: jobResults,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,70 +0,0 @@
|
||||
import { readFileSync } from "node:fs";
|
||||
import { resolve } from "node:path";
|
||||
import { describe, expect, it } from "vitest";
|
||||
import { type FormatFilesResult, formatFilesWithLineNumbers } from "./checkout.ts";
|
||||
|
||||
/**
|
||||
* parses TOC entries like "- src/math.ts → lines 7-42 · diff-<hex>" into structured data.
|
||||
*/
|
||||
function parseTocEntries(toc: string) {
|
||||
const entries: Array<{ filename: string; startLine: number; endLine: number }> = [];
|
||||
for (const line of toc.split("\n")) {
|
||||
const match = line.match(/^- (.+) → lines (\d+)-(\d+) · diff-[0-9a-f]+$/);
|
||||
if (match) {
|
||||
entries.push({
|
||||
filename: match[1],
|
||||
startLine: parseInt(match[2], 10),
|
||||
endLine: parseInt(match[3], 10),
|
||||
});
|
||||
}
|
||||
}
|
||||
return entries;
|
||||
}
|
||||
|
||||
// fixture captured by action/scripts/refresh-test-fixtures.ts. running
|
||||
// the formatter against checked-in JSON keeps this test offline and
|
||||
// deterministic — re-fetch the fixture (with creds) when GitHub's
|
||||
// pulls.listFiles response shape changes, then review the snapshot diff.
|
||||
type DiffFixture = {
|
||||
owner: string;
|
||||
name: string;
|
||||
pullNumber: number;
|
||||
files: Parameters<typeof formatFilesWithLineNumbers>[0];
|
||||
};
|
||||
|
||||
function loadFixture<T>(file: string): T {
|
||||
return JSON.parse(readFileSync(resolve(import.meta.dirname, "__fixtures__", file), "utf-8")) as T;
|
||||
}
|
||||
|
||||
describe("formatFilesWithLineNumbers", () => {
|
||||
it("generates accurate TOC line numbers for pullfrog/test-repo#1", () => {
|
||||
const fx = loadFixture<DiffFixture>("pullfrog-test-repo-pr-1.diff.json");
|
||||
const result: FormatFilesResult = formatFilesWithLineNumbers(fx.files);
|
||||
|
||||
expect(result.content.startsWith(result.toc)).toBe(true);
|
||||
|
||||
const contentLines = result.content.split("\n");
|
||||
const tocEntries = parseTocEntries(result.toc);
|
||||
expect(tocEntries.length).toBeGreaterThan(0);
|
||||
|
||||
for (const entry of tocEntries) {
|
||||
// line numbers are 1-indexed, arrays are 0-indexed
|
||||
const firstLine = contentLines[entry.startLine - 1];
|
||||
expect(firstLine).toBeDefined();
|
||||
// first line of each file section should be the diff header
|
||||
expect(firstLine).toBe(`diff --git a/${entry.filename} b/${entry.filename}`);
|
||||
|
||||
expect(entry.endLine).toBeLessThanOrEqual(contentLines.length);
|
||||
}
|
||||
|
||||
// verify adjacent files don't overlap and are contiguous
|
||||
for (let i = 1; i < tocEntries.length; i++) {
|
||||
const prev = tocEntries[i - 1];
|
||||
const curr = tocEntries[i];
|
||||
expect(curr.startLine).toBe(prev.endLine + 1);
|
||||
}
|
||||
|
||||
expect(result.toc).toMatchSnapshot("toc");
|
||||
expect(result.content).toMatchSnapshot("content");
|
||||
});
|
||||
});
|
||||
-834
@@ -1,834 +0,0 @@
|
||||
import { createHash } from "node:crypto";
|
||||
import { statSync, unlinkSync, writeFileSync } from "node:fs";
|
||||
import { join } from "node:path";
|
||||
import type { Octokit, RestEndpointMethodTypes } from "@octokit/rest";
|
||||
import { type } from "arktype";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import { countLines, createDiffCoverageState } from "../utils/diffCoverage.ts";
|
||||
import { $git, $gitFetchWithDeepen } from "../utils/gitAuth.ts";
|
||||
import { executeLifecycleHook } from "../utils/lifecycle.ts";
|
||||
import { computeIncrementalDiff } from "../utils/rangeDiff.ts";
|
||||
import { retry } from "../utils/retry.ts";
|
||||
import { $ } from "../utils/shell.ts";
|
||||
import { rejectIfLeadingDash } from "./git.ts";
|
||||
import { commentableLinesForFile } from "./review.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
type PullFile = RestEndpointMethodTypes["pulls"]["listFiles"]["response"]["data"][number];
|
||||
|
||||
export type FormatFilesResult = {
|
||||
content: string;
|
||||
toc: string;
|
||||
};
|
||||
|
||||
export type FetchAndFormatPrDiffResult = FormatFilesResult & {
|
||||
files: PullFile[];
|
||||
};
|
||||
|
||||
/**
|
||||
* formats PR files with explicit line numbers for each code line.
|
||||
* preserves all original diff info (file headers, hunk headers) and adds:
|
||||
* | OLD | NEW | TYPE | code
|
||||
* returns both the formatted content and a TOC with line ranges per file.
|
||||
*/
|
||||
export function formatFilesWithLineNumbers(files: PullFile[]): FormatFilesResult {
|
||||
const output: string[] = [];
|
||||
const tocEntries: Array<{ filename: string; startLine: number; endLine: number }> = [];
|
||||
|
||||
// calculate TOC header size: "## Files (N)\n" + N entries + "\n---\n\n"
|
||||
const tocHeaderSize = 1 + files.length + 2;
|
||||
let currentLine = tocHeaderSize + 1;
|
||||
|
||||
for (const file of files) {
|
||||
const fileStartLine = currentLine;
|
||||
|
||||
// file header
|
||||
output.push(`diff --git a/${file.filename} b/${file.filename}`);
|
||||
output.push(`--- a/${file.filename}`);
|
||||
output.push(`+++ b/${file.filename}`);
|
||||
currentLine += 3;
|
||||
|
||||
if (!file.patch) {
|
||||
output.push("(binary file or no changes)");
|
||||
output.push("");
|
||||
currentLine += 2;
|
||||
tocEntries.push({
|
||||
filename: file.filename,
|
||||
startLine: fileStartLine,
|
||||
endLine: currentLine - 1,
|
||||
});
|
||||
continue;
|
||||
}
|
||||
|
||||
// parse and format the patch with line numbers
|
||||
const lines = file.patch.split("\n");
|
||||
let oldLine = 0;
|
||||
let newLine = 0;
|
||||
|
||||
for (const line of lines) {
|
||||
// hunk header: @@ -OLD,COUNT +NEW,COUNT @@ optional context
|
||||
const hunkMatch = line.match(/^@@ -(\d+)(?:,\d+)? \+(\d+)(?:,\d+)? @@/);
|
||||
if (hunkMatch) {
|
||||
oldLine = parseInt(hunkMatch[1], 10);
|
||||
newLine = parseInt(hunkMatch[2], 10);
|
||||
output.push(line); // pass through unchanged
|
||||
currentLine++;
|
||||
continue;
|
||||
}
|
||||
|
||||
// code lines within hunks
|
||||
const changeType = line[0] || " ";
|
||||
const code = line.slice(1);
|
||||
|
||||
if (changeType === "-") {
|
||||
// removed line: show old line number, no new line number
|
||||
output.push(`| ${padNum(oldLine)} | | - | ${code}`);
|
||||
oldLine++;
|
||||
} else if (changeType === "+") {
|
||||
// added line: no old line number, show new line number
|
||||
output.push(`| | ${padNum(newLine)} | + | ${code}`);
|
||||
newLine++;
|
||||
} else if (changeType === " " || changeType === "\\") {
|
||||
// context line or "\ No newline at end of file"
|
||||
if (changeType === "\\") {
|
||||
output.push(line); // pass through as-is
|
||||
} else {
|
||||
output.push(`| ${padNum(oldLine)} | ${padNum(newLine)} | | ${code}`);
|
||||
oldLine++;
|
||||
newLine++;
|
||||
}
|
||||
} else {
|
||||
// unknown line type, pass through
|
||||
output.push(line);
|
||||
}
|
||||
currentLine++;
|
||||
}
|
||||
output.push(""); // blank line between files
|
||||
currentLine++;
|
||||
|
||||
tocEntries.push({
|
||||
filename: file.filename,
|
||||
startLine: fileStartLine,
|
||||
endLine: currentLine - 1,
|
||||
});
|
||||
}
|
||||
|
||||
// build TOC. each entry includes the precomputed sha256 anchor used in
|
||||
// github PR Files Changed URLs (#diff-<hex>), so the agent never needs to
|
||||
// shell out to sha256sum.
|
||||
const tocLines = [`## Files (${files.length})`];
|
||||
for (const entry of tocEntries) {
|
||||
const anchor = createHash("sha256").update(entry.filename).digest("hex");
|
||||
tocLines.push(
|
||||
`- ${entry.filename} → lines ${entry.startLine}-${entry.endLine} · diff-${anchor}`
|
||||
);
|
||||
}
|
||||
tocLines.push("");
|
||||
tocLines.push("---");
|
||||
tocLines.push("");
|
||||
|
||||
const toc = tocLines.join("\n");
|
||||
const content = toc + output.join("\n");
|
||||
|
||||
return { content, toc };
|
||||
}
|
||||
|
||||
function padNum(n: number): string {
|
||||
return n.toString().padStart(4, " ");
|
||||
}
|
||||
|
||||
export const CheckoutPr = type({
|
||||
pull_number: type.number.describe("the pull request number to checkout"),
|
||||
});
|
||||
|
||||
export type CheckoutPrResult = {
|
||||
success: true;
|
||||
number: number;
|
||||
title: string;
|
||||
body: string | null;
|
||||
base: string;
|
||||
localBranch: string;
|
||||
remoteBranch: string;
|
||||
isFork: boolean;
|
||||
maintainerCanModify: boolean;
|
||||
url: string;
|
||||
headRepo: string;
|
||||
diffPath: string;
|
||||
incrementalDiffPath?: string | undefined;
|
||||
toc: string;
|
||||
commitCount: number;
|
||||
commitLog: string;
|
||||
/** true when commitLog was capped because the PR has more commits than we render */
|
||||
commitLogTruncated: boolean;
|
||||
/** true when commit metadata could not be computed (e.g. base ref unreachable after shallow fetch). commitCount/commitLog are zero/empty in that case, not "no commits". */
|
||||
commitLogUnavailable: boolean;
|
||||
/** non-fatal warning from the post-checkout lifecycle hook, if any */
|
||||
hookWarning?: string | undefined;
|
||||
instructions: string;
|
||||
};
|
||||
|
||||
/**
|
||||
* fetches PR files from GitHub and formats them with line numbers and TOC.
|
||||
* this is the core diff formatting logic, extracted for testability.
|
||||
*/
|
||||
export async function fetchAndFormatPrDiff(
|
||||
ctx: ToolContext,
|
||||
pullNumber: number
|
||||
): Promise<FetchAndFormatPrDiffResult> {
|
||||
const files = await ctx.octokit.paginate(ctx.octokit.rest.pulls.listFiles, {
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
pull_number: pullNumber,
|
||||
per_page: 100,
|
||||
});
|
||||
return { ...formatFilesWithLineNumbers(files), files };
|
||||
}
|
||||
|
||||
import type { GitContext } from "../utils/setup.ts";
|
||||
|
||||
export type PrData = {
|
||||
number: number;
|
||||
headSha: string;
|
||||
headRef: string;
|
||||
headRepoFullName: string;
|
||||
baseRef: string;
|
||||
baseRepoFullName: string;
|
||||
maintainerCanModify: boolean;
|
||||
};
|
||||
|
||||
type EnsureBeforeShaParams = {
|
||||
sha: string;
|
||||
octokit: Octokit;
|
||||
owner: string;
|
||||
repo: string;
|
||||
gitToken: string;
|
||||
isShallow: boolean;
|
||||
};
|
||||
|
||||
type CreateTempBranchParams = {
|
||||
octokit: Octokit;
|
||||
owner: string;
|
||||
repo: string;
|
||||
ref: string;
|
||||
sha: string;
|
||||
};
|
||||
|
||||
async function createTempBranch(params: CreateTempBranchParams) {
|
||||
const response = await params.octokit.rest.git.createRef({
|
||||
owner: params.owner,
|
||||
repo: params.repo,
|
||||
ref: `refs/heads/${params.ref}`,
|
||||
sha: params.sha,
|
||||
});
|
||||
return {
|
||||
data: response.data,
|
||||
async [Symbol.asyncDispose]() {
|
||||
try {
|
||||
await params.octokit.rest.git.deleteRef({
|
||||
owner: params.owner,
|
||||
repo: params.repo,
|
||||
ref: `heads/${params.ref}`,
|
||||
});
|
||||
log.debug(`» deleted temp branch ${params.ref}`);
|
||||
} catch (e) {
|
||||
log.debug(
|
||||
`» failed to delete temp branch ${params.ref}: ${e instanceof Error ? e.message : String(e)}`
|
||||
);
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
async function ensureBeforeShaReachable(params: EnsureBeforeShaParams): Promise<boolean> {
|
||||
try {
|
||||
$("git", ["cat-file", "-t", params.sha], { log: false });
|
||||
log.debug(`» before_sha ${params.sha.slice(0, 7)} is reachable`);
|
||||
return true;
|
||||
} catch {
|
||||
// not available locally — create a temporary branch to fetch it
|
||||
}
|
||||
|
||||
const tempBranch = `pullfrog/tmp/${params.sha.slice(0, 12)}`;
|
||||
try {
|
||||
log.debug(`» before_sha ${params.sha.slice(0, 7)} not reachable, creating temp branch...`);
|
||||
await using _ref = await createTempBranch({
|
||||
octokit: params.octokit,
|
||||
owner: params.owner,
|
||||
repo: params.repo,
|
||||
sha: params.sha,
|
||||
ref: tempBranch,
|
||||
});
|
||||
await $gitFetchWithDeepen(
|
||||
["--no-tags", ...(params.isShallow ? ["--depth=1"] : []), "origin", tempBranch],
|
||||
{ token: params.gitToken },
|
||||
`before_sha temp branch ${tempBranch}`
|
||||
);
|
||||
log.debug(`» fetched before_sha via temp branch ${tempBranch}`);
|
||||
return true;
|
||||
} catch (e) {
|
||||
log.debug(`» failed to fetch before_sha: ${e instanceof Error ? e.message : String(e)}`);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
type CheckoutPrBranchParams = GitContext & {
|
||||
beforeSha?: string | undefined;
|
||||
};
|
||||
|
||||
// stale lock files left over from a crashed/cancelled prior git process block
|
||||
// every subsequent fetch with `Unable to create '<path>': File exists`. only
|
||||
// sweep locks older than this threshold so we never race a concurrent
|
||||
// legitimate git op that's holding the lock.
|
||||
const STALE_LOCK_AGE_MS = 30_000;
|
||||
|
||||
// PR head refs (refs/pull/N/head) sometimes lag the pull_request.opened
|
||||
// webhook by a few seconds. retry the missing-ref case with backoff
|
||||
// before giving up — see issue #591.
|
||||
const PULL_REF_RETRY_DELAYS_MS = [2_000, 5_000, 10_000];
|
||||
const PULL_REF_MISSING_PATTERN = /couldn't find remote ref pull\/\d+\/head/i;
|
||||
|
||||
const GIT_LOCK_PATHS = [
|
||||
".git/shallow.lock",
|
||||
".git/index.lock",
|
||||
".git/objects/maintenance.lock",
|
||||
] as const;
|
||||
|
||||
function cleanupStaleGitLocks(): void {
|
||||
const now = Date.now();
|
||||
for (const relPath of GIT_LOCK_PATHS) {
|
||||
let mtimeMs: number;
|
||||
try {
|
||||
mtimeMs = statSync(relPath).mtimeMs;
|
||||
} catch {
|
||||
continue;
|
||||
}
|
||||
if (now - mtimeMs < STALE_LOCK_AGE_MS) continue;
|
||||
try {
|
||||
unlinkSync(relPath);
|
||||
log.warning(`» removed stale ${relPath} from prior run`);
|
||||
} catch (e) {
|
||||
log.debug(
|
||||
`» failed to remove stale ${relPath}: ${e instanceof Error ? e.message : String(e)}`
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns false when a PR's current state diverges from what we dispatched
|
||||
* on (closed/merged, or head SHA differs from pr.headSha). Used to short-
|
||||
* circuit the pull/N/head retry loop when the ref is missing because the
|
||||
* PR has moved on, not because of a webhook race.
|
||||
*
|
||||
* Network failures here are treated as "still valid" — we'd rather burn the
|
||||
* retry budget than wrongly abort on a transient API blip.
|
||||
*
|
||||
* Note: this answers "should we keep trying?", NOT "will the next fetch
|
||||
* succeed?". `pulls.get` (REST API) and `pull/N/head` (git ref) are served
|
||||
* by independent GitHub replicas with their own propagation lag, so
|
||||
* `pulls.get` reporting an open PR with a matching head SHA does not
|
||||
* guarantee the git ref is yet visible — and vice versa (see issue #591
|
||||
* for the original webhook-vs-ref replication-lag context).
|
||||
*/
|
||||
async function isPullRequestStillDispatchable(args: {
|
||||
octokit: Octokit;
|
||||
owner: string;
|
||||
repo: string;
|
||||
pr: PrData;
|
||||
}): Promise<boolean> {
|
||||
try {
|
||||
const { data } = await args.octokit.rest.pulls.get({
|
||||
owner: args.owner,
|
||||
repo: args.repo,
|
||||
pull_number: args.pr.number,
|
||||
});
|
||||
if (data.state !== "open") return false;
|
||||
if (data.head.sha !== args.pr.headSha) return false;
|
||||
return true;
|
||||
} catch {
|
||||
// lenient — don't abort on API hiccups
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Throws the friendly clean-abort error when the PR has moved on since
|
||||
* dispatch. Wraps `isPullRequestStillDispatchable` so the abort message
|
||||
* lives in one place and is invoked from the inner `catch` around the
|
||||
* `pull/N/head` fetch on every missing-ref failure.
|
||||
*/
|
||||
async function abortIfPullRequestMoved(args: {
|
||||
octokit: Octokit;
|
||||
owner: string;
|
||||
repo: string;
|
||||
pr: PrData;
|
||||
}): Promise<void> {
|
||||
const stillValid = await isPullRequestStillDispatchable(args);
|
||||
if (stillValid) return;
|
||||
throw new Error(
|
||||
`PR #${args.pr.number} is no longer in the state it was at dispatch (likely closed, merged, or force-pushed between webhook fire and run start). aborting checkout — re-trigger the run if this PR is still active.`
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Shared helper to checkout a PR branch and configure fork remotes.
|
||||
* Assumes origin remote is already configured with authentication.
|
||||
* Updates toolState.issueNumber, toolState.checkoutSha, and toolState.pushUrl (for fork PRs).
|
||||
*/
|
||||
export async function checkoutPrBranch(
|
||||
pr: PrData,
|
||||
params: CheckoutPrBranchParams
|
||||
): Promise<{ hookWarning?: string | undefined }> {
|
||||
const { octokit, owner, name, gitToken, toolState, beforeSha } = params;
|
||||
log.info(`» checking out PR #${pr.number}...`);
|
||||
|
||||
// SECURITY: PR ref names come from GitHub and are attacker-controlled on
|
||||
// forks (the PR author picks headRef freely, and baseRef could be a
|
||||
// maliciously-named branch on the target repo). reject leading-dash names
|
||||
// before they reach any git command — without this, a ref like
|
||||
// "-upload-pack=evil" fed into `git fetch origin <ref>` would be parsed as
|
||||
// a flag, not a refspec.
|
||||
rejectIfLeadingDash(pr.baseRef, "PR base ref");
|
||||
rejectIfLeadingDash(pr.headRef, "PR head ref");
|
||||
|
||||
// self-hosted runners and cancelled jobs frequently leave stale .git/*.lock
|
||||
// files behind. without this sweep, the first fetch below aborts with
|
||||
// `Unable to create '.git/shallow.lock': File exists` and the agent has to
|
||||
// shell out to `rm -f` (issue #564).
|
||||
cleanupStaleGitLocks();
|
||||
|
||||
const isFork = pr.headRepoFullName !== pr.baseRepoFullName;
|
||||
|
||||
// always use pr-{number} as local branch name for consistency
|
||||
// this avoids naming conflicts and makes push config simpler
|
||||
const localBranch = `pr-${pr.number}`;
|
||||
|
||||
const isShallow =
|
||||
$("git", ["rev-parse", "--is-shallow-repository"], { log: false }).trim() === "true";
|
||||
|
||||
toolState.checkoutSha = $("git", ["rev-parse", "HEAD"], { log: false }).trim();
|
||||
const alreadyOnBranch = toolState.checkoutSha === pr.headSha;
|
||||
|
||||
// fetch base branch so origin/<base> exists for diff operations.
|
||||
// wrap with deepen-retry: on shallow clones (the actions/checkout default
|
||||
// is depth=1), repos with deep PR ancestry can't reach the baseRef tip in
|
||||
// a single round trip, surfacing as `Could not read <sha>` / `remote did
|
||||
// not send all necessary objects` (issue #656).
|
||||
log.debug(`» fetching base branch (${pr.baseRef})...`);
|
||||
await $gitFetchWithDeepen(
|
||||
["--no-tags", "origin", pr.baseRef],
|
||||
{ token: gitToken },
|
||||
`base branch ${pr.baseRef}`
|
||||
);
|
||||
|
||||
// alreadyOnBranch only matches for repeated checkout_pr calls for the same PR in one session
|
||||
// (without the tip moving), or if an external setup already checked out the PR head.
|
||||
// normal PR-triggered runs won't match here — actions/checkout lands on a synthesized
|
||||
// merge commit whose SHA differs from pr.headSha.
|
||||
//
|
||||
// so the fetch+checkout block below will almost always execute, and the fetched HEAD
|
||||
// might differ from pr.headSha. toolState.checkoutSha is set after to capture the actual SHA.
|
||||
if (!alreadyOnBranch) {
|
||||
// checkout base branch first to avoid "refusing to fetch into current branch" error
|
||||
// -B creates or resets the branch to match origin/baseBranch
|
||||
$("git", ["checkout", "-B", pr.baseRef, `origin/${pr.baseRef}`], { log: false });
|
||||
|
||||
// fetch PR branch using pull/{n}/head refspec (works for both fork and same-repo PRs).
|
||||
// two transient classes wrap this fetch:
|
||||
// - shallow-unreachable (`Could not read <sha>` etc.) — handled by the
|
||||
// inner `$gitFetchWithDeepen` deepen-retry (one shot, see issue #656)
|
||||
// - pull/N/head webhook race (`couldn't find remote ref pull/N/head`) —
|
||||
// handled by the outer retry below (see issue #591)
|
||||
log.debug(`» fetching PR #${pr.number} (${localBranch})...`);
|
||||
await retry(
|
||||
async () => {
|
||||
try {
|
||||
await $gitFetchWithDeepen(
|
||||
["--no-tags", "origin", `+pull/${pr.number}/head:${localBranch}`],
|
||||
{ token: gitToken },
|
||||
`PR #${pr.number}`
|
||||
);
|
||||
} catch (e) {
|
||||
// on the webhook race, check whether the PR still matches what we
|
||||
// dispatched on. if it's been closed/merged or the head SHA moved,
|
||||
// no amount of retrying will populate the expected ref — surface a
|
||||
// clean abort error instead of burning the full retry budget.
|
||||
const msg = e instanceof Error ? e.message : String(e);
|
||||
if (PULL_REF_MISSING_PATTERN.test(msg)) {
|
||||
await abortIfPullRequestMoved({ octokit, owner, repo: name, pr });
|
||||
}
|
||||
throw e;
|
||||
}
|
||||
},
|
||||
{
|
||||
delaysMs: PULL_REF_RETRY_DELAYS_MS,
|
||||
label: `pull/${pr.number}/head fetch`,
|
||||
shouldRetry: (e) =>
|
||||
PULL_REF_MISSING_PATTERN.test(e instanceof Error ? e.message : String(e)),
|
||||
}
|
||||
);
|
||||
|
||||
// checkout the branch
|
||||
$("git", ["checkout", localBranch], { log: false });
|
||||
log.debug(`» checked out PR #${pr.number}`);
|
||||
// make sure toolState.checkoutSha is set to the actual checked-out SHA (which might be different from pr.headSha)
|
||||
toolState.checkoutSha = $("git", ["rev-parse", "HEAD"], { log: false }).trim();
|
||||
}
|
||||
|
||||
const beforeShaReachable = beforeSha
|
||||
? await ensureBeforeShaReachable({
|
||||
sha: beforeSha,
|
||||
octokit,
|
||||
owner,
|
||||
repo: name,
|
||||
gitToken,
|
||||
isShallow,
|
||||
})
|
||||
: false;
|
||||
|
||||
// compute deepen depth for shallow clones. actions/checkout uses depth=1
|
||||
// by default, which breaks rebase/log because git can't find the merge base.
|
||||
// use the GitHub compare API to fetch exactly enough history.
|
||||
// computed after checkout so compareCommits uses the actual checked-out SHA.
|
||||
if (isShallow) {
|
||||
let deepenDepth = 0;
|
||||
try {
|
||||
// ahead_by = PR commits past merge base, behind_by = base commits past merge base.
|
||||
// --deepen extends ALL shallow roots equally (can't deepen a single branch),
|
||||
// so we need the max across both the PR head and before_sha to ensure all
|
||||
// three points (base, head, before_sha) reach the merge base in a single deepen call.
|
||||
const [prComparison, beforeShaComparison] = await Promise.all([
|
||||
octokit.rest.repos.compareCommits({
|
||||
owner,
|
||||
repo: name,
|
||||
base: pr.baseRef,
|
||||
head: toolState.checkoutSha,
|
||||
}),
|
||||
beforeSha && beforeShaReachable
|
||||
? octokit.rest.repos.compareCommits({
|
||||
owner,
|
||||
repo: name,
|
||||
base: pr.baseRef,
|
||||
head: beforeSha,
|
||||
})
|
||||
: undefined,
|
||||
]);
|
||||
deepenDepth =
|
||||
Math.max(
|
||||
prComparison.data.ahead_by,
|
||||
prComparison.data.behind_by,
|
||||
beforeShaComparison?.data.ahead_by ?? 0,
|
||||
beforeShaComparison?.data.behind_by ?? 0
|
||||
) + 10;
|
||||
log.debug(
|
||||
`» PR: ${prComparison.data.ahead_by} ahead / ${prComparison.data.behind_by} behind` +
|
||||
(beforeShaComparison
|
||||
? `, before_sha: ${beforeShaComparison.data.ahead_by} ahead / ${beforeShaComparison.data.behind_by} behind`
|
||||
: "") +
|
||||
`, deepen by ${deepenDepth}`
|
||||
);
|
||||
} catch {
|
||||
deepenDepth = 1000;
|
||||
log.debug(`» compare API failed, falling back to --deepen=${deepenDepth}`);
|
||||
}
|
||||
// deepen after both branches are fetched so the merge base is reachable from both sides
|
||||
if (deepenDepth) {
|
||||
log.debug(`» deepening by ${deepenDepth} to reach merge base...`);
|
||||
await $git("fetch", [`--deepen=${deepenDepth}`, "--no-tags", "origin"], {
|
||||
token: gitToken,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// configure push remote for this branch
|
||||
// NOTE: This always runs regardless of alreadyOnBranch, because setupGit doesn't configure
|
||||
// fork remotes. This ensures fork PRs can push even when checkout_pr is called after setupGit.
|
||||
if (isFork) {
|
||||
const remoteName = `pr-${pr.number}`;
|
||||
// SECURITY: fork URL without token - auth is injected via GIT_ASKPASS in $git()
|
||||
const forkUrl = `https://github.com/${pr.headRepoFullName}.git`;
|
||||
|
||||
// add fork as a named remote (suppress logging to avoid "error: remote already exists" spam)
|
||||
try {
|
||||
$("git", ["remote", "add", remoteName, forkUrl], { log: false });
|
||||
log.debug(`» added remote '${remoteName}' for fork ${pr.headRepoFullName}`);
|
||||
} catch {
|
||||
// remote already exists, update its URL
|
||||
$("git", ["remote", "set-url", remoteName, forkUrl], { log: false });
|
||||
log.debug(`» updated remote '${remoteName}' for fork ${pr.headRepoFullName}`);
|
||||
}
|
||||
|
||||
// set branch push config so `git push` knows where to push
|
||||
$("git", ["config", `branch.${localBranch}.pushRemote`, remoteName], { log: false });
|
||||
// set merge ref so git knows the remote branch name (may differ from local)
|
||||
$("git", ["config", `branch.${localBranch}.merge`, `refs/heads/${pr.headRef}`], { log: false });
|
||||
log.debug(`» configured branch '${localBranch}' to push to '${remoteName}/${pr.headRef}'`);
|
||||
|
||||
// warn if maintainer can't modify (push will likely fail)
|
||||
if (!pr.maintainerCanModify) {
|
||||
log.warning(
|
||||
`» fork PR has maintainer_can_modify=false - push operations will fail. ` +
|
||||
`ask the PR author to enable "Allow edits from maintainers" or the fork may be owned by an organization.`
|
||||
);
|
||||
}
|
||||
} else {
|
||||
// for same-repo PRs, push to origin
|
||||
$("git", ["config", `branch.${localBranch}.pushRemote`, "origin"], { log: false });
|
||||
$("git", ["config", `branch.${localBranch}.merge`, `refs/heads/${pr.headRef}`], { log: false });
|
||||
}
|
||||
|
||||
// update toolState
|
||||
toolState.issueNumber = pr.number;
|
||||
if (isFork) {
|
||||
toolState.pushUrl = `https://github.com/${pr.headRepoFullName}.git`;
|
||||
}
|
||||
|
||||
// store push destination so push_branch can use it directly
|
||||
// git config is the primary mechanism, but toolState serves as a reliable fallback
|
||||
// in case git config reads fail in certain environments
|
||||
toolState.pushDest = {
|
||||
remoteName: isFork ? `pr-${pr.number}` : "origin",
|
||||
remoteBranch: pr.headRef,
|
||||
localBranch,
|
||||
};
|
||||
|
||||
// execute post-checkout lifecycle hook. soft-fail: surface the warning
|
||||
// to the agent via the tool response instead of throwing, so a flaky or
|
||||
// slightly-broken hook doesn't block checkout entirely.
|
||||
const postCheckoutHook = await executeLifecycleHook({
|
||||
event: "post-checkout",
|
||||
script: params.postCheckoutScript,
|
||||
});
|
||||
return { hookWarning: postCheckoutHook.warning };
|
||||
}
|
||||
|
||||
/**
|
||||
* dedupes concurrent `checkout_pr` calls for the same PR. agents (notably
|
||||
* Sonnet/Claude) occasionally emit duplicate parallel tool_use blocks for the
|
||||
* same args in one turn; without this, both invocations race
|
||||
* `checkoutPrBranch` against the same `.git/shallow.lock` and one fails with
|
||||
* `File exists` (issue #642). cleared in `finally` so subsequent same-PR
|
||||
* calls re-do the work normally.
|
||||
*/
|
||||
const inFlightCheckouts = new Map<number, Promise<CheckoutPrResult>>();
|
||||
|
||||
export function CheckoutPrTool(ctx: ToolContext) {
|
||||
const runCheckout = async (pull_number: number): Promise<CheckoutPrResult> => {
|
||||
const prResponse = await ctx.octokit.rest.pulls.get({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
pull_number,
|
||||
});
|
||||
|
||||
const headRepo = prResponse.data.head.repo;
|
||||
if (!headRepo) {
|
||||
throw new Error(`PR #${pull_number} source repository was deleted`);
|
||||
}
|
||||
|
||||
const pr: PrData = {
|
||||
number: pull_number,
|
||||
headSha: prResponse.data.head.sha,
|
||||
headRef: prResponse.data.head.ref,
|
||||
headRepoFullName: headRepo.full_name,
|
||||
baseRef: prResponse.data.base.ref,
|
||||
baseRepoFullName: prResponse.data.base.repo.full_name,
|
||||
maintainerCanModify: prResponse.data.maintainer_can_modify,
|
||||
};
|
||||
|
||||
const checkoutResult = await checkoutPrBranch(pr, {
|
||||
octokit: ctx.octokit,
|
||||
owner: ctx.repo.owner,
|
||||
name: ctx.repo.name,
|
||||
gitToken: ctx.gitToken,
|
||||
toolState: ctx.toolState,
|
||||
shell: ctx.payload.shell,
|
||||
postCheckoutScript: ctx.postCheckoutScript,
|
||||
beforeSha: ctx.toolState.beforeSha,
|
||||
});
|
||||
|
||||
const tempDir = process.env.PULLFROG_TEMP_DIR;
|
||||
if (!tempDir) {
|
||||
throw new Error(
|
||||
"PULLFROG_TEMP_DIR not set - checkout_pr must run in pullfrog action context"
|
||||
);
|
||||
}
|
||||
|
||||
const headShort = ctx.toolState.checkoutSha!.slice(0, 7);
|
||||
|
||||
// compute incremental diff if we have a beforeSha to compare against
|
||||
let incrementalDiffPath: string | undefined;
|
||||
if (ctx.toolState.beforeSha && ctx.toolState.checkoutSha) {
|
||||
const beforeShort = ctx.toolState.beforeSha.slice(0, 7);
|
||||
const incremental = computeIncrementalDiff({
|
||||
baseBranch: pr.baseRef,
|
||||
beforeSha: ctx.toolState.beforeSha,
|
||||
headSha: ctx.toolState.checkoutSha,
|
||||
});
|
||||
if (incremental) {
|
||||
incrementalDiffPath = join(
|
||||
tempDir,
|
||||
`pr-${pull_number}-${beforeShort}-${headShort}-incremental.diff`
|
||||
);
|
||||
writeFileSync(incrementalDiffPath, incremental);
|
||||
log.info(
|
||||
`» incremental diff computed (${incremental.length} bytes) → ${incrementalDiffPath}`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// fetch PR files and format with line numbers
|
||||
const formatResult = await fetchAndFormatPrDiff(ctx, pull_number);
|
||||
const diffPreview = formatResult.content.split("\n").slice(0, 100).join("\n");
|
||||
log.debug(`formatted diff preview (first 100 lines):\n${diffPreview}`);
|
||||
const diffPath = join(tempDir, `pr-${pull_number}-${headShort}.diff`);
|
||||
writeFileSync(diffPath, formatResult.content);
|
||||
log.debug(`wrote diff to ${diffPath} (${formatResult.content.length} bytes)`);
|
||||
ctx.toolState.diffCoverage = createDiffCoverageState({
|
||||
diffPath,
|
||||
totalLines: countLines({ content: formatResult.content }),
|
||||
toc: formatResult.toc,
|
||||
previous: ctx.toolState.diffCoverage,
|
||||
});
|
||||
log.debug(
|
||||
`» diff coverage initialized: diffPath=${diffPath}, totalLines=${ctx.toolState.diffCoverage.totalLines}, tocEntries=${ctx.toolState.diffCoverage.tocEntries.length}`
|
||||
);
|
||||
|
||||
// cache commentable-lines snapshot so review-time validation matches what
|
||||
// GitHub will anchor to (commit_id=checkoutSha), even if the PR is updated
|
||||
// between checkout and review.
|
||||
const cached = new Map<string, ReturnType<typeof commentableLinesForFile>>();
|
||||
for (const file of formatResult.files) {
|
||||
cached.set(file.filename, commentableLinesForFile(file.patch));
|
||||
}
|
||||
ctx.toolState.commentableLinesByFile = cached;
|
||||
ctx.toolState.commentableLinesPullNumber = pull_number;
|
||||
ctx.toolState.commentableLinesCheckoutSha = ctx.toolState.checkoutSha;
|
||||
|
||||
const incrementalInstructions = incrementalDiffPath
|
||||
? ` IMPORTANT: incrementalDiffPath contains ONLY the changes since the last reviewed version ` +
|
||||
`(computed via range-diff). you MUST read incrementalDiffPath FIRST to understand what changed, ` +
|
||||
`then use diffPath for full PR context. do NOT skip the incremental diff.`
|
||||
: "";
|
||||
|
||||
// commit metadata relative to the PR base (e.g. main). use origin/<base>
|
||||
// because the local base ref may not exist after a shallow fetch. cap
|
||||
// the log so a PR with thousands of commits doesn't blow up the tool
|
||||
// response. if the base ref can't be resolved (e.g. shallow fetch that
|
||||
// didn't pull down origin/<base>), degrade gracefully rather than
|
||||
// failing the whole checkout_pr call over metadata.
|
||||
const COMMIT_LOG_MAX = 200;
|
||||
const baseRange = `origin/${pr.baseRef}..HEAD`;
|
||||
let commitCount = 0;
|
||||
let commitLog = "";
|
||||
let commitLogUnavailable = false;
|
||||
try {
|
||||
commitCount = parseInt(
|
||||
$("git", ["rev-list", "--count", baseRange], { log: false }).trim() || "0",
|
||||
10
|
||||
);
|
||||
commitLog = $("git", ["log", "--oneline", `--max-count=${COMMIT_LOG_MAX}`, baseRange], {
|
||||
log: false,
|
||||
});
|
||||
} catch (err) {
|
||||
commitLogUnavailable = true;
|
||||
log.debug(
|
||||
`» unable to compute commit metadata for ${baseRange}: ${err instanceof Error ? err.message : String(err)}`
|
||||
);
|
||||
}
|
||||
const commitLogTruncated = commitCount > COMMIT_LOG_MAX;
|
||||
|
||||
const hookWarningInstructions = checkoutResult.hookWarning
|
||||
? ` HOOK WARNING: the post-checkout lifecycle hook reported a non-fatal failure (see hookWarning). ` +
|
||||
`decide whether to retry based on the guidance in that field before proceeding.`
|
||||
: "";
|
||||
|
||||
const commitLogInstructions = commitLogUnavailable
|
||||
? ` NOTE: commit metadata is partial (base ref unreachable, likely a shallow fetch). ` +
|
||||
`commitCount/commitLog may be 0/empty or incomplete; treat them as "unknown" rather than "no commits", ` +
|
||||
`and use \`git log\` directly if you need the full history.`
|
||||
: commitLogTruncated
|
||||
? ` NOTE: commitLog was capped at ${COMMIT_LOG_MAX} entries out of ${commitCount} commits; ` +
|
||||
`use \`git log\` directly if you need the full history.`
|
||||
: "";
|
||||
|
||||
return {
|
||||
success: true,
|
||||
number: prResponse.data.number,
|
||||
title: prResponse.data.title,
|
||||
body: prResponse.data.body,
|
||||
base: pr.baseRef,
|
||||
localBranch: `pr-${pull_number}`,
|
||||
remoteBranch: `refs/heads/${pr.headRef}`,
|
||||
isFork: pr.headRepoFullName !== pr.baseRepoFullName,
|
||||
maintainerCanModify: pr.maintainerCanModify,
|
||||
url: prResponse.data.html_url,
|
||||
headRepo: pr.headRepoFullName,
|
||||
diffPath,
|
||||
incrementalDiffPath,
|
||||
toc: formatResult.toc,
|
||||
commitCount,
|
||||
commitLog,
|
||||
commitLogTruncated,
|
||||
commitLogUnavailable,
|
||||
hookWarning: checkoutResult.hookWarning,
|
||||
instructions:
|
||||
`the diff file at diffPath contains a table of contents (TOC) at the top listing every changed file with its line range. ` +
|
||||
`use the TOC line ranges as your checklist and read specific files from the diff instead of reading the entire file. ` +
|
||||
`for example, if the TOC says "src/foo.ts → lines 5-42", read lines 5-42 from diffPath to see that file's changes. ` +
|
||||
`review files selectively based on relevance rather than reading everything sequentially. ` +
|
||||
`to inspect the PR's changed files, use diffPath — do NOT run \`git diff <base>..<head>\` to re-derive what's already in diffPath. the formatted diff with line numbers is authoritative. ` +
|
||||
`\`git log\` and \`git diff --stat\` are fine for commit-range overview, and \`git diff\` / \`git diff --cached\` are fine for inspecting *your own* uncommitted changes — but PR review content MUST come from diffPath. ` +
|
||||
`before your review is submitted, a one-time coverage pre-flight may error listing unread TOC regions. ` +
|
||||
`retry the same create_pull_request_review call to proceed — optionally after reading the listed ranges. the pre-flight will not block again this session. ` +
|
||||
`the local branch is 'localBranch' (pr-{number}), not the remote branch name. ` +
|
||||
`when pushing, omit branchName to use the current branch. do not use remoteBranch as a local branch name.` +
|
||||
incrementalInstructions +
|
||||
hookWarningInstructions +
|
||||
commitLogInstructions,
|
||||
} satisfies CheckoutPrResult;
|
||||
};
|
||||
|
||||
return tool({
|
||||
name: "checkout_pr",
|
||||
description:
|
||||
"Checkout a pull request branch locally. This fetches the PR branch and sets up push configuration for fork PRs. " +
|
||||
"Returns diffPath pointing to the formatted diff file. " +
|
||||
"Example: `checkout_pr({ pull_number: 1234 })`. " +
|
||||
"Transient fetch timeouts are common — retry the same call up to a few times before treating the failure as terminal. " +
|
||||
"If the error mentions `.git/shallow.lock: File exists` or `.git/index.lock: File exists`, that's a stale lock from a prior timed-out fetch — remove it via the shell tool (`rm -f .git/shallow.lock .git/index.lock`) and retry.",
|
||||
parameters: CheckoutPr,
|
||||
execute: execute(async ({ pull_number }) => {
|
||||
const inFlight = inFlightCheckouts.get(pull_number);
|
||||
if (inFlight) {
|
||||
log.info(`» checkout_pr({pull_number:${pull_number}}) already in flight — sharing result`);
|
||||
return inFlight;
|
||||
}
|
||||
|
||||
// refuse to clobber an uncommitted tree whenever this call would move
|
||||
// HEAD away from the target pr-N branch. keyed off the live current
|
||||
// branch (not toolState.issueNumber, which is also written by
|
||||
// get_issue / get_issue_comments / get_issue_events and so doesn't
|
||||
// mean "currently checked out"). catches the subagent-sharing-cwd
|
||||
// case from zed-industries/cloud (2026-05-18).
|
||||
const currentBranch = $("git", ["rev-parse", "--abbrev-ref", "HEAD"], { log: false }).trim();
|
||||
if (currentBranch !== `pr-${pull_number}`) {
|
||||
const dirty = $("git", ["status", "--porcelain"], { log: false }).trim();
|
||||
if (dirty) {
|
||||
throw new Error(
|
||||
`cannot checkout PR #${pull_number} while the working tree has uncommitted changes. ` +
|
||||
`commit, push, or discard them before switching. dirty paths:\n${dirty}`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
const promise = runCheckout(pull_number);
|
||||
inFlightCheckouts.set(pull_number, promise);
|
||||
try {
|
||||
return await promise;
|
||||
} finally {
|
||||
inFlightCheckouts.delete(pull_number);
|
||||
}
|
||||
}),
|
||||
});
|
||||
}
|
||||
-507
@@ -1,507 +0,0 @@
|
||||
import { type } from "arktype";
|
||||
import { getApiUrl } from "../utils/apiUrl.ts";
|
||||
import { buildPullfrogFooter, stripExistingFooter } from "../utils/buildPullfrogFooter.ts";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import { fixDoubleEscapedString } from "../utils/fixDoubleEscapedString.ts";
|
||||
import { patchWorkflowRunFields } from "../utils/patchWorkflowRunFields.ts";
|
||||
import {
|
||||
createLeapingProgressComment,
|
||||
deleteProgressCommentApi,
|
||||
updateProgressComment,
|
||||
} from "../utils/progressComment.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
// re-export for backward compat with anything importing the leaping helpers from mcp/comment
|
||||
export {
|
||||
isLeapingIntoActionCommentBody,
|
||||
LEAPING_INTO_ACTION_PREFIX,
|
||||
} from "../utils/leapingComment.ts";
|
||||
|
||||
function buildCommentFooter(ctx: ToolContext, customParts?: string[]): string {
|
||||
const runId = ctx.runId;
|
||||
return buildPullfrogFooter({
|
||||
triggeredBy: true,
|
||||
workflowRun:
|
||||
runId !== undefined
|
||||
? {
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
runId,
|
||||
jobId: ctx.jobId,
|
||||
}
|
||||
: undefined,
|
||||
customParts,
|
||||
model: ctx.toolState.model,
|
||||
fallbackFrom: ctx.toolState.modelFallback?.from,
|
||||
});
|
||||
}
|
||||
|
||||
function buildImplementPlanLink(ctx: ToolContext, issueNumber: number, commentId: number): string {
|
||||
const apiUrl = getApiUrl();
|
||||
return `[Implement plan ➔](${apiUrl}/trigger/${ctx.repo.owner}/${ctx.repo.name}/${issueNumber}?action=implement&comment_id=${commentId})`;
|
||||
}
|
||||
|
||||
export function addFooter(ctx: ToolContext, body: string): string {
|
||||
if (/<br\s*\/?>[ \t]*\n(?!\s*\n)/i.test(body)) {
|
||||
throw new Error(
|
||||
"body contains <br/> followed by a non-blank line, which breaks GitHub markdown rendering. always add a blank line after <br/> tags."
|
||||
);
|
||||
}
|
||||
const bodyWithoutFooter = stripExistingFooter(fixDoubleEscapedString(body));
|
||||
const footer = buildCommentFooter(ctx);
|
||||
return `${bodyWithoutFooter}${footer}`;
|
||||
}
|
||||
|
||||
export const Comment = type({
|
||||
issueNumber: type.number.describe("the issue number to comment on"),
|
||||
body: type.string.describe("the comment body content"),
|
||||
type: type
|
||||
.enumerated("Plan", "Comment")
|
||||
.describe("Plan: record as the plan for this run. Comment: regular comment (default).")
|
||||
.optional(),
|
||||
});
|
||||
|
||||
export function CreateCommentTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "create_issue_comment",
|
||||
description:
|
||||
"Create a comment on a GitHub issue or PR. " +
|
||||
'Example: `create_issue_comment({ issueNumber: 1234, body: "Thanks for the report." })`. ' +
|
||||
"For progress/plan updates on the current run use report_progress instead — plan output (initial post AND revisions) is always posted via report_progress, never via this tool.",
|
||||
parameters: Comment,
|
||||
execute: execute(async ({ issueNumber, body, type: commentType }) => {
|
||||
const bodyWithFooter = addFooter(ctx, body);
|
||||
|
||||
const result = await ctx.octokit.rest.issues.createComment({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
issue_number: issueNumber,
|
||||
body: bodyWithFooter,
|
||||
});
|
||||
|
||||
ctx.toolState.wasUpdated = true;
|
||||
log.info(`» created comment ${result.data.id}`);
|
||||
|
||||
if (commentType === "Plan") {
|
||||
if (result.data.node_id) {
|
||||
await patchWorkflowRunFields(ctx, { planCommentNodeId: result.data.node_id });
|
||||
}
|
||||
// add "Implement plan" link (needs comment ID, so create-then-update)
|
||||
const customParts = [buildImplementPlanLink(ctx, issueNumber, result.data.id)];
|
||||
const footer = buildCommentFooter(ctx, customParts);
|
||||
const bodyWithPlanLink = `${stripExistingFooter(body)}${footer}`;
|
||||
|
||||
const updateResult = await ctx.octokit.rest.issues.updateComment({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
comment_id: result.data.id,
|
||||
body: bodyWithPlanLink,
|
||||
});
|
||||
log.info(`» updated comment ${updateResult.data.id}`);
|
||||
|
||||
return {
|
||||
success: true,
|
||||
commentId: updateResult.data.id,
|
||||
url: updateResult.data.html_url,
|
||||
body: updateResult.data.body,
|
||||
};
|
||||
}
|
||||
|
||||
return {
|
||||
success: true,
|
||||
commentId: result.data.id,
|
||||
url: result.data.html_url,
|
||||
body: result.data.body,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
export const EditComment = type({
|
||||
commentId: type.number.describe("the ID of the comment to edit"),
|
||||
body: type.string.describe("the new comment body content"),
|
||||
});
|
||||
|
||||
export function EditCommentTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "edit_issue_comment",
|
||||
description: "Edit a GitHub issue comment by its ID",
|
||||
parameters: EditComment,
|
||||
execute: execute(async ({ commentId, body }) => {
|
||||
const bodyWithFooter = addFooter(ctx, body);
|
||||
|
||||
const result = await ctx.octokit.rest.issues.updateComment({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
comment_id: commentId,
|
||||
body: bodyWithFooter,
|
||||
});
|
||||
log.info(`» updated comment ${result.data.id}`);
|
||||
|
||||
return {
|
||||
success: true,
|
||||
commentId: result.data.id,
|
||||
url: result.data.html_url,
|
||||
body: result.data.body,
|
||||
updatedAt: result.data.updated_at,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
export const ReportProgress = type({
|
||||
body: type.string.describe("the progress update content to share"),
|
||||
"target_plan_comment?": type("boolean").describe(
|
||||
"for revising an existing plan comment ONLY. set to true only when the PlanEdit checklist from select_mode tells you to (i.e. a prior plan comment was found for this issue). NEVER set on the initial plan post — the initial plan reuses the run's progress comment and is posted by calling report_progress without this flag."
|
||||
),
|
||||
});
|
||||
|
||||
/**
|
||||
* Report progress to a GitHub comment.
|
||||
*
|
||||
* progressComment has three states:
|
||||
* - undefined: no comment yet — will create one if an issue/PR target exists
|
||||
* - object: active comment — will update it in place via the right REST endpoint for its type
|
||||
* - null: deliberately deleted (e.g. after submitting a PR review) — skips silently
|
||||
*
|
||||
* The body is always tracked in lastProgressBody for the job summary regardless of comment state.
|
||||
*
|
||||
* The "existing plan comment" path always targets a top-level issue comment (plan comments are
|
||||
* created by create_issue_comment with type:"Plan", never as review-thread replies).
|
||||
*/
|
||||
export async function reportProgress(
|
||||
ctx: ToolContext,
|
||||
params: { body: string; target_plan_comment?: boolean }
|
||||
): Promise<{
|
||||
commentId?: number;
|
||||
url?: string;
|
||||
body: string;
|
||||
action: "created" | "updated" | "skipped";
|
||||
}> {
|
||||
const { body, target_plan_comment } = params;
|
||||
// always track the body for job summary
|
||||
ctx.toolState.lastProgressBody = body;
|
||||
|
||||
// silent events (e.g., auto-label, pr-summary Task) should never create or update progress comments.
|
||||
// the body is still tracked above for the GitHub Actions job summary.
|
||||
if (ctx.payload.event.silent) {
|
||||
return { body, action: "skipped" };
|
||||
}
|
||||
|
||||
const issueNumber = ctx.payload.event.issue_number ?? ctx.toolState.issueNumber;
|
||||
const isPlanMode = ctx.toolState.selectedMode === "Plan";
|
||||
const apiCtx = { octokit: ctx.octokit, owner: ctx.repo.owner, repo: ctx.repo.name };
|
||||
|
||||
// when editing existing plan: update the plan comment from tool state (set by select_mode)
|
||||
if (target_plan_comment === true && ctx.toolState.existingPlanCommentId === undefined) {
|
||||
log.warning("target_plan_comment requested but no existingPlanCommentId in tool state");
|
||||
}
|
||||
if (target_plan_comment === true && ctx.toolState.existingPlanCommentId !== undefined) {
|
||||
const commentId = ctx.toolState.existingPlanCommentId;
|
||||
const customParts =
|
||||
issueNumber !== undefined ? [buildImplementPlanLink(ctx, issueNumber, commentId)] : undefined;
|
||||
const bodyWithoutFooter = stripExistingFooter(body);
|
||||
const footer = buildCommentFooter(ctx, customParts);
|
||||
const bodyWithFooter = `${bodyWithoutFooter}${footer}`;
|
||||
|
||||
const result = await updateProgressComment(
|
||||
apiCtx,
|
||||
{ id: commentId, type: "issue" },
|
||||
bodyWithFooter
|
||||
);
|
||||
|
||||
ctx.toolState.wasUpdated = true;
|
||||
|
||||
if (isPlanMode && result.node_id) {
|
||||
await patchWorkflowRunFields(ctx, { planCommentNodeId: result.node_id });
|
||||
}
|
||||
|
||||
return {
|
||||
commentId: result.id,
|
||||
url: result.html_url,
|
||||
body: result.body || "",
|
||||
action: "updated",
|
||||
};
|
||||
}
|
||||
|
||||
const existingComment = ctx.toolState.progressComment;
|
||||
|
||||
// if we already have a progress comment, update it
|
||||
if (existingComment) {
|
||||
const customParts =
|
||||
isPlanMode && issueNumber !== undefined
|
||||
? [buildImplementPlanLink(ctx, issueNumber, existingComment.id)]
|
||||
: undefined;
|
||||
|
||||
const bodyWithoutFooter = stripExistingFooter(body);
|
||||
const footer = buildCommentFooter(ctx, customParts);
|
||||
const bodyWithFooter = `${bodyWithoutFooter}${footer}`;
|
||||
|
||||
const result = await updateProgressComment(apiCtx, existingComment, bodyWithFooter);
|
||||
|
||||
ctx.toolState.wasUpdated = true;
|
||||
|
||||
if (isPlanMode && result.node_id) {
|
||||
await patchWorkflowRunFields(ctx, { planCommentNodeId: result.node_id });
|
||||
}
|
||||
|
||||
return {
|
||||
commentId: result.id,
|
||||
url: result.html_url,
|
||||
body: result.body || "",
|
||||
action: "updated",
|
||||
};
|
||||
}
|
||||
|
||||
// null = progress comment was deleted by stranded-comment cleanup in main.ts
|
||||
if (existingComment === null) {
|
||||
return { body, action: "skipped" };
|
||||
}
|
||||
|
||||
// no existing comment - need an issue/PR to create one on
|
||||
// use fallback chain: dynamically set context > event payload
|
||||
if (issueNumber === undefined) {
|
||||
// no-op: no comment target (e.g., workflow_dispatch events)
|
||||
// body is already tracked for job summary
|
||||
return { body, action: "skipped" };
|
||||
}
|
||||
|
||||
// for new comments, we need to create first, then update with Plan link if in Plan mode
|
||||
// self-created progress comments are always top-level issue comments — review-reply
|
||||
// progress comments only originate from the dispatch path and arrive pre-created.
|
||||
const initialBody = addFooter(ctx, body);
|
||||
const created = await createLeapingProgressComment(
|
||||
apiCtx,
|
||||
{ kind: "issue", issueNumber },
|
||||
initialBody
|
||||
);
|
||||
|
||||
ctx.toolState.progressComment = created.comment;
|
||||
ctx.toolState.wasUpdated = true;
|
||||
|
||||
// if Plan mode, update the comment to add the "Implement plan" link
|
||||
if (isPlanMode) {
|
||||
const customParts = [buildImplementPlanLink(ctx, issueNumber, created.comment.id)];
|
||||
const bodyWithoutFooter = stripExistingFooter(body);
|
||||
const footer = buildCommentFooter(ctx, customParts);
|
||||
const bodyWithPlanLink = `${bodyWithoutFooter}${footer}`;
|
||||
|
||||
const updateResult = await updateProgressComment(apiCtx, created.comment, bodyWithPlanLink);
|
||||
|
||||
if (updateResult.node_id) {
|
||||
await patchWorkflowRunFields(ctx, { planCommentNodeId: updateResult.node_id });
|
||||
}
|
||||
|
||||
return {
|
||||
commentId: updateResult.id,
|
||||
url: updateResult.html_url,
|
||||
body: updateResult.body || "",
|
||||
action: "created",
|
||||
};
|
||||
}
|
||||
|
||||
return {
|
||||
commentId: created.comment.id,
|
||||
url: created.html_url,
|
||||
body: created.body || "",
|
||||
action: "created",
|
||||
};
|
||||
}
|
||||
|
||||
export function ReportProgressTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "report_progress",
|
||||
description:
|
||||
"Share progress on the associated GitHub issue/PR. The first call creates a comment; subsequent calls update it in place. " +
|
||||
'Example: `report_progress({ body: "Implemented the auth check and added tests." })`. ' +
|
||||
"Call this at the end of every run with a brief final summary (1-3 sentences) unless the mode guidance instructs otherwise. The current task list is automatically appended in a collapsible section — do not restate individual steps.",
|
||||
parameters: ReportProgress,
|
||||
execute: execute(async (params) => {
|
||||
let body = params.body;
|
||||
|
||||
// for non-plan calls: stop auto-updates, wait for in-flight writes to settle,
|
||||
// then append completed task list collapsible
|
||||
if (!params.target_plan_comment && ctx.toolState.todoTracker) {
|
||||
ctx.toolState.todoTracker.cancel();
|
||||
await ctx.toolState.todoTracker.settled();
|
||||
const collapsible = ctx.toolState.todoTracker.renderCollapsible({
|
||||
completeInProgress: true,
|
||||
});
|
||||
if (collapsible) {
|
||||
body = `${body}\n\n${collapsible}`;
|
||||
}
|
||||
}
|
||||
|
||||
const reportParams: { body: string; target_plan_comment?: boolean } = { body };
|
||||
if (params.target_plan_comment !== undefined) {
|
||||
reportParams.target_plan_comment = params.target_plan_comment;
|
||||
}
|
||||
const result = await reportProgress(ctx, reportParams);
|
||||
|
||||
if (result.action === "skipped") {
|
||||
return {
|
||||
success: true,
|
||||
message:
|
||||
"progress recorded (no GitHub comment created - this may occur for workflow_dispatch events or when there is no associated issue/PR)",
|
||||
};
|
||||
}
|
||||
|
||||
if (result.commentId !== undefined) {
|
||||
log.info(`» ${result.action} comment ${result.commentId}`);
|
||||
}
|
||||
|
||||
if (!params.target_plan_comment) {
|
||||
ctx.toolState.finalSummaryWritten = true;
|
||||
}
|
||||
|
||||
return {
|
||||
success: true,
|
||||
...result,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete the progress comment if it exists.
|
||||
* Used by main.ts for stranded-comment cleanup (orphaned "Leaping into action" or
|
||||
* checklist left by the todo tracker when the agent didn't call report_progress).
|
||||
* Sets progressComment to null so subsequent report_progress calls are no-ops.
|
||||
*/
|
||||
export async function deleteProgressComment(ctx: ToolContext): Promise<boolean> {
|
||||
const existing = ctx.toolState.progressComment;
|
||||
if (!existing) {
|
||||
return false;
|
||||
}
|
||||
|
||||
try {
|
||||
await deleteProgressCommentApi(
|
||||
{ octokit: ctx.octokit, owner: ctx.repo.owner, repo: ctx.repo.name },
|
||||
existing
|
||||
);
|
||||
} catch (error) {
|
||||
// ignore 404 - comment already deleted
|
||||
if (error instanceof Error && error.message.includes("Not Found")) {
|
||||
// comment already deleted, continue
|
||||
} else {
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
// set to null (not undefined) so report_progress skips instead of creating a new comment
|
||||
ctx.toolState.progressComment = null;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
export const ReplyToReviewComment = type({
|
||||
pull_number: type.number.describe("the pull request number"),
|
||||
comment_id: type.number.describe("the ID of the review comment to reply to"),
|
||||
body: type.string.describe(
|
||||
"extremely brief reply (1 sentence max) explaining what was fixed, e.g. 'Fixed by renaming to X' or 'Added null check'"
|
||||
),
|
||||
});
|
||||
|
||||
/**
|
||||
* decision returned by `duplicateReplyDecision` when a session has already
|
||||
* posted an identical reply to the same parent review comment.
|
||||
*/
|
||||
export interface DuplicateReplyDecision {
|
||||
kind: "already-replied";
|
||||
commentId: number;
|
||||
url: string | undefined;
|
||||
reason: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* decide whether a second reply_to_review_comment call in the same session
|
||||
* is a duplicate of an earlier reply to the same parent comment.
|
||||
*
|
||||
* the agent is instructed to call reply_to_review_comment exactly once per
|
||||
* parent comment per AddressReviews session, but in practice it sometimes
|
||||
* emits the same call twice. PR #610 reproduced this with Kimi K2:
|
||||
* identical body posted 3 seconds apart, only one tool_use event in the
|
||||
* agent log. the second post is always redundant and clutters the PR thread.
|
||||
*
|
||||
* we key on (comment_id, bodyWithFooter) so a legitimate follow-up reply
|
||||
* with different content still goes through. within a single run the
|
||||
* footer is constant (workflow run + model + jobId), so byte-equal bodies
|
||||
* catch the stutter without blocking real follow-ups.
|
||||
*
|
||||
* mirrors the shape of `duplicateReviewDecision` in mcp/review.ts.
|
||||
*/
|
||||
export function duplicateReplyDecision(params: {
|
||||
existing: { commentId: number; url: string | undefined; bodyWithFooter: string } | undefined;
|
||||
bodyWithFooter: string;
|
||||
}): DuplicateReplyDecision | null {
|
||||
const existing = params.existing;
|
||||
if (!existing) return null;
|
||||
if (existing.bodyWithFooter !== params.bodyWithFooter) return null;
|
||||
return {
|
||||
kind: "already-replied",
|
||||
commentId: existing.commentId,
|
||||
url: existing.url,
|
||||
reason: `reply ${existing.commentId} with identical body was already posted in this session; ignoring duplicate call`,
|
||||
};
|
||||
}
|
||||
|
||||
export function ReplyToReviewCommentTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "reply_to_review_comment",
|
||||
description:
|
||||
"Reply to a PR review comment thread (NOT issue comments — this only works for inline review comments on PR diffs). " +
|
||||
'Example: `reply_to_review_comment({ pull_number: 1234, comment_id: 567890, body: "Fixed by adding a null check." })`. ' +
|
||||
"Call exactly ONCE per parent comment you address in AddressReviews mode — duplicate calls with the same body are a no-op. Keep replies extremely brief (1 sentence max).",
|
||||
parameters: ReplyToReviewComment,
|
||||
execute: execute(async ({ pull_number, comment_id, body }) => {
|
||||
const bodyWithFooter = addFooter(ctx, body);
|
||||
|
||||
// guard against duplicate reply submissions in the same session.
|
||||
// see duplicateReplyDecision for the rationale.
|
||||
const dup = duplicateReplyDecision({
|
||||
existing: ctx.toolState.reviewReplies?.get(comment_id),
|
||||
bodyWithFooter,
|
||||
});
|
||||
if (dup) {
|
||||
log.info(`skipping duplicate review reply: ${dup.reason}`);
|
||||
return {
|
||||
success: true,
|
||||
skipped: true,
|
||||
reason: dup.reason,
|
||||
commentId: dup.commentId,
|
||||
url: dup.url,
|
||||
};
|
||||
}
|
||||
|
||||
const result = await ctx.octokit.rest.pulls.createReplyForReviewComment({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
pull_number,
|
||||
comment_id,
|
||||
body: bodyWithFooter,
|
||||
});
|
||||
log.info(`» created review comment ${result.data.id} (in reply to ${comment_id})`);
|
||||
|
||||
// mark progress as updated so error reporting + run-result handling know
|
||||
// a substantive write happened (used by reportErrorToComment / handleAgentResult)
|
||||
ctx.toolState.wasUpdated = true;
|
||||
|
||||
// record this reply for in-session dedupe of subsequent identical calls.
|
||||
ctx.toolState.reviewReplies ??= new Map();
|
||||
ctx.toolState.reviewReplies.set(comment_id, {
|
||||
commentId: result.data.id,
|
||||
url: result.data.html_url,
|
||||
bodyWithFooter,
|
||||
});
|
||||
|
||||
return {
|
||||
success: true,
|
||||
commentId: result.data.id,
|
||||
url: result.data.html_url,
|
||||
body: result.data.body,
|
||||
in_reply_to_id: result.data.in_reply_to_id,
|
||||
};
|
||||
}, "reply_to_review_comment"),
|
||||
});
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
import { writeFileSync } from "node:fs";
|
||||
import { join } from "node:path";
|
||||
import { type } from "arktype";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import { formatFilesWithLineNumbers } from "./checkout.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
export const CommitInfo = type({
|
||||
sha: type.string.describe("the commit SHA (full or abbreviated) to fetch"),
|
||||
});
|
||||
|
||||
export function CommitInfoTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "get_commit_info",
|
||||
description:
|
||||
"Retrieve commit metadata and diff via GitHub API. Use this instead of git show for reviewing commits - " +
|
||||
"it works with shallow clones and shows the actual changes in the commit. Returns diffPath pointing to formatted diff file. " +
|
||||
'Example: `get_commit_info({ sha: "2a6ab5d" })`.',
|
||||
parameters: CommitInfo,
|
||||
execute: execute(async ({ sha }) => {
|
||||
const response = await ctx.octokit.rest.repos.getCommit({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
ref: sha,
|
||||
});
|
||||
|
||||
const data = response.data;
|
||||
const files = data.files ?? [];
|
||||
|
||||
// format diff with line numbers and write to file
|
||||
const formatResult = formatFilesWithLineNumbers(files);
|
||||
const tempDir = process.env.PULLFROG_TEMP_DIR;
|
||||
if (!tempDir) {
|
||||
throw new Error(
|
||||
"PULLFROG_TEMP_DIR not set - get_commit_info must run in pullfrog action context"
|
||||
);
|
||||
}
|
||||
const diffFile = join(tempDir, `commit-${sha.slice(0, 7)}.diff`);
|
||||
writeFileSync(diffFile, formatResult.content);
|
||||
log.debug(`wrote commit diff to ${diffFile} (${formatResult.content.length} bytes)`);
|
||||
|
||||
return {
|
||||
sha: data.sha,
|
||||
message: data.commit.message,
|
||||
author: data.author?.login ?? null,
|
||||
committer: data.committer?.login ?? null,
|
||||
date: data.commit.author?.date ?? data.commit.committer?.date ?? "",
|
||||
url: data.html_url,
|
||||
parents: data.parents.map((p) => p.sha),
|
||||
stats: {
|
||||
additions: data.stats?.additions ?? 0,
|
||||
deletions: data.stats?.deletions ?? 0,
|
||||
total: data.stats?.total ?? 0,
|
||||
},
|
||||
fileCount: files.length,
|
||||
diffFile,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,187 +0,0 @@
|
||||
import { type } from "arktype";
|
||||
import type { PrepOptions, PrepResult } from "../prep/index.ts";
|
||||
import { runPrepPhase } from "../prep/index.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
// empty schema for tools with no parameters
|
||||
const EmptyParams = type({});
|
||||
|
||||
/**
|
||||
* format prep results into agent-friendly message
|
||||
*/
|
||||
function formatPrepResults(results: PrepResult[]): string {
|
||||
if (results.length === 0) {
|
||||
return `No supported language detected in this repository (checked for package.json, requirements.txt, pyproject.toml, etc.).
|
||||
|
||||
Inspect the repository structure to determine how dependencies should be installed, then use shell to install them.`;
|
||||
}
|
||||
|
||||
const lines: string[] = [];
|
||||
|
||||
for (const result of results) {
|
||||
if (result.language === "unknown") {
|
||||
continue;
|
||||
}
|
||||
|
||||
const langDisplay = result.language === "node" ? "Node.js" : "Python";
|
||||
|
||||
if (result.dependenciesInstalled) {
|
||||
if (result.language === "node") {
|
||||
lines.push(
|
||||
`${langDisplay} dependencies installed successfully via ${result.packageManager}.`
|
||||
);
|
||||
} else if (result.language === "python") {
|
||||
lines.push(
|
||||
`${langDisplay} dependencies installed successfully via ${result.packageManager} (from ${result.configFile}).`
|
||||
);
|
||||
}
|
||||
} else {
|
||||
const errorMsg = result.issues.length > 0 ? result.issues.join("\n") : "unknown error";
|
||||
|
||||
if (result.language === "node") {
|
||||
lines.push(`${langDisplay} dependency installation failed via ${result.packageManager}.
|
||||
|
||||
Error:
|
||||
${errorMsg}
|
||||
|
||||
Use shell or other tools at your disposal to diagnose and resolve the issue, then install dependencies manually.`);
|
||||
} else if (result.language === "python") {
|
||||
lines.push(`${langDisplay} dependency installation failed via ${result.packageManager} (from ${result.configFile}).
|
||||
|
||||
Error:
|
||||
${errorMsg}
|
||||
|
||||
Use shell or other tools at your disposal to diagnose and resolve the issue, then install dependencies manually.`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (lines.length === 0) {
|
||||
return `No supported language detected in this repository (checked for package.json, requirements.txt, pyproject.toml, etc.).
|
||||
|
||||
Inspect the repository structure to determine how dependencies should be installed, then use shell to install them.`;
|
||||
}
|
||||
|
||||
return lines.join("\n\n");
|
||||
}
|
||||
|
||||
/**
|
||||
* start dependency installation in the background (non-blocking, idempotent).
|
||||
* called eagerly from main.ts at startup and also available via MCP tools.
|
||||
*/
|
||||
export function startInstallation(ctx: ToolContext): void {
|
||||
// already started or completed - do nothing
|
||||
if (ctx.toolState.dependencyInstallation) {
|
||||
return;
|
||||
}
|
||||
|
||||
// SECURITY: when shell is disabled, suppress lifecycle scripts to prevent
|
||||
// agents from using package.json scripts as a backdoor for code execution
|
||||
const prepOptions: PrepOptions = {
|
||||
ignoreScripts: ctx.payload.shell === "disabled",
|
||||
};
|
||||
|
||||
// initialize state and start installation
|
||||
const promise = runPrepPhase(prepOptions);
|
||||
ctx.toolState.dependencyInstallation = {
|
||||
status: "in_progress",
|
||||
promise,
|
||||
results: undefined,
|
||||
};
|
||||
|
||||
// when promise completes, update state
|
||||
promise.then(
|
||||
(results) => {
|
||||
if (ctx.toolState.dependencyInstallation) {
|
||||
const hasFailure = results.some((r) => !r.dependenciesInstalled && r.issues.length > 0);
|
||||
ctx.toolState.dependencyInstallation.status = hasFailure ? "failed" : "completed";
|
||||
ctx.toolState.dependencyInstallation.results = results;
|
||||
}
|
||||
},
|
||||
() => {
|
||||
if (ctx.toolState.dependencyInstallation) {
|
||||
ctx.toolState.dependencyInstallation.status = "failed";
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
export function StartDependencyInstallationTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "start_dependency_installation",
|
||||
description:
|
||||
"Start installing project dependencies in the background. This is non-blocking and returns immediately. Call this early (right after branch checkout) if you anticipate needing to run tests, builds, or other commands that require dependencies. Idempotent - safe to call multiple times.",
|
||||
parameters: EmptyParams,
|
||||
execute: execute(async () => {
|
||||
const state = ctx.toolState.dependencyInstallation;
|
||||
|
||||
// already completed
|
||||
if (state?.status === "completed" || state?.status === "failed") {
|
||||
return {
|
||||
status: state.status,
|
||||
message: `Dependency installation already completed.`,
|
||||
summary: formatPrepResults(state.results || []),
|
||||
};
|
||||
}
|
||||
|
||||
// already in progress
|
||||
if (state?.status === "in_progress") {
|
||||
return {
|
||||
status: "in_progress",
|
||||
message:
|
||||
"Dependency installation is already in progress. Call await_dependency_installation when you need to use them.",
|
||||
};
|
||||
}
|
||||
|
||||
// start installation
|
||||
startInstallation(ctx);
|
||||
|
||||
return {
|
||||
status: "started",
|
||||
message:
|
||||
"Dependency installation started in background. Continue with other tasks and call await_dependency_installation when you need to run tests, builds, or other commands that require dependencies.",
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
export function AwaitDependencyInstallationTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "await_dependency_installation",
|
||||
description:
|
||||
"Wait for dependency installation to complete and get the results. If installation hasn't been started yet, this will start it automatically. Call this before running tests, builds, or other commands that require dependencies.",
|
||||
parameters: EmptyParams,
|
||||
execute: execute(async () => {
|
||||
// auto-start if not started
|
||||
if (!ctx.toolState.dependencyInstallation) {
|
||||
startInstallation(ctx);
|
||||
}
|
||||
|
||||
const state = ctx.toolState.dependencyInstallation;
|
||||
if (!state) {
|
||||
throw new Error("failed to initialize dependency installation state");
|
||||
}
|
||||
|
||||
// if already completed, return cached results
|
||||
if (state.status === "completed" || state.status === "failed") {
|
||||
return {
|
||||
status: state.status,
|
||||
message: formatPrepResults(state.results || []),
|
||||
};
|
||||
}
|
||||
|
||||
// await the promise
|
||||
if (!state.promise) {
|
||||
throw new Error("dependency installation state is corrupted - no promise found");
|
||||
}
|
||||
|
||||
const results = await state.promise;
|
||||
|
||||
return {
|
||||
status: state.status,
|
||||
message: formatPrepResults(results),
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,207 +0,0 @@
|
||||
import type { StandardSchemaV1 } from "@standard-schema/spec";
|
||||
import type { Tool } from "fastmcp";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
|
||||
// ── gemini schema sanitizer ────────────────────────────────────────────────────
|
||||
//
|
||||
// gemini's generateContent API expects an OpenAPI 3.0 Schema subset, not full
|
||||
// JSON Schema. arktype 2.x emits constructs that gemini rejects with errors like:
|
||||
// - "parameters.<field>.enum: only allowed for STRING type"
|
||||
// - "functionDeclaration parameters.<field> schema didn't specify the schema type field"
|
||||
// - "anyOf must be the only field in a schema node"
|
||||
//
|
||||
// transforms applied here:
|
||||
// 1. add `type: "string"` to enum-only schemas. arktype emits string literal
|
||||
// unions as `{enum: ["a","b"]}` without a `type` field — gemini requires
|
||||
// the type declaration for any non-object schema.
|
||||
// 2. collapse `{anyOf: [{enum:["a"]}, {enum:["b"]}]}` (older arktype form)
|
||||
// into `{type:"string", enum:[...]}`. also handles `{const:"a"}` branches.
|
||||
// 3. when `anyOf` / `oneOf` can't be collapsed, strip sibling fields (`type`,
|
||||
// `description`, `items`, etc.) — gemini rejects `anyOf` alongside any
|
||||
// peer keywords. see opencode #14659.
|
||||
// 4. drop `$schema` metadata and rename `$defs` → `definitions` (draft-07
|
||||
// compatibility; gemini doesn't understand either).
|
||||
//
|
||||
// gating: `isGeminiRouted()` detects gemini-targeted traffic so other
|
||||
// providers continue to see the original (untransformed) schema.
|
||||
//
|
||||
// delivery: fastmcp (3.x) uses `xsschema.toJsonSchema()` which reads
|
||||
// `schema["~standard"].jsonSchema.input({target:"draft-07"})` when present
|
||||
// (arktype 2.x exposes this). we proxy the whole `~standard` chain so our
|
||||
// transform runs regardless of which path xsschema takes.
|
||||
|
||||
function parseStringEnumBranch(item: unknown): { values: string[] } | null {
|
||||
if (!item || typeof item !== "object") return null;
|
||||
const record = item as Record<string, unknown>;
|
||||
if (Array.isArray(record.enum)) {
|
||||
const strings = record.enum.filter((v): v is string => typeof v === "string");
|
||||
return strings.length === record.enum.length && strings.length > 0 ? { values: strings } : null;
|
||||
}
|
||||
if (typeof record.const === "string") {
|
||||
return { values: [record.const] };
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
function collapseStringUnion(branches: unknown[]): { type: "string"; enum: string[] } | null {
|
||||
const values: string[] = [];
|
||||
for (const item of branches) {
|
||||
const parsed = parseStringEnumBranch(item);
|
||||
if (!parsed) return null;
|
||||
values.push(...parsed.values);
|
||||
}
|
||||
if (values.length === 0) return null;
|
||||
return { type: "string", enum: [...new Set(values)] };
|
||||
}
|
||||
|
||||
/**
|
||||
* Recursively transform a JSON schema to gemini's stricter subset.
|
||||
* See module header for the exact transforms applied.
|
||||
*/
|
||||
export function sanitizeForGemini(schema: unknown): unknown {
|
||||
if (!schema || typeof schema !== "object") return schema;
|
||||
if (Array.isArray(schema)) return schema.map(sanitizeForGemini);
|
||||
|
||||
const source = schema as Record<string, unknown>;
|
||||
|
||||
// case 1: enum-only string union → add `type: "string"`.
|
||||
// arktype emits `type: "'A' | 'B'"` as `{enum: ["A","B"]}` without a type.
|
||||
if (Array.isArray(source.enum) && typeof source.type !== "string") {
|
||||
const allStrings = source.enum.every((v) => typeof v === "string");
|
||||
if (allStrings) {
|
||||
const result: Record<string, unknown> = { type: "string", enum: source.enum };
|
||||
if (typeof source.description === "string") result.description = source.description;
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
// case 2: collapsible string-enum union (older arktype form)
|
||||
for (const unionKey of ["anyOf", "oneOf"] as const) {
|
||||
const branches = source[unionKey];
|
||||
if (Array.isArray(branches) && branches.length > 0) {
|
||||
const collapsed = collapseStringUnion(branches);
|
||||
if (collapsed) {
|
||||
const result: Record<string, unknown> = { ...collapsed };
|
||||
if (typeof source.description === "string") result.description = source.description;
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// case 3: non-collapsible anyOf/oneOf → strip sibling fields (gemini rule)
|
||||
if (Array.isArray(source.anyOf) || Array.isArray(source.oneOf)) {
|
||||
const result: Record<string, unknown> = {};
|
||||
if (Array.isArray(source.anyOf)) result.anyOf = source.anyOf.map(sanitizeForGemini);
|
||||
if (Array.isArray(source.oneOf)) result.oneOf = source.oneOf.map(sanitizeForGemini);
|
||||
return result;
|
||||
}
|
||||
|
||||
// case 4: generic pass — drop $schema, rename $defs, recurse
|
||||
const sanitized: Record<string, unknown> = {};
|
||||
for (const [key, value] of Object.entries(source)) {
|
||||
if (key === "$schema") continue;
|
||||
if (key === "$defs") {
|
||||
sanitized.definitions = sanitizeForGemini(value);
|
||||
continue;
|
||||
}
|
||||
sanitized[key] = sanitizeForGemini(value);
|
||||
}
|
||||
return sanitized;
|
||||
}
|
||||
|
||||
// ── delivery mechanism ─────────────────────────────────────────────────────────
|
||||
//
|
||||
// fastmcp 3.x resolves the JSON schema via xsschema, which takes two paths:
|
||||
// path A: `schema["~standard"].jsonSchema.input({target:"draft-07"})` when
|
||||
// the StandardJSONSchemaV1 extension is present (arktype 2.x).
|
||||
// path B: `schema.toJsonSchema()` via a vendor-dispatched function (older
|
||||
// arktype, other vendors).
|
||||
//
|
||||
// we proxy both entry points so the transform runs regardless of which path
|
||||
// xsschema picks.
|
||||
|
||||
function wrapJsonSchemaProducer<T extends object>(producer: T): T {
|
||||
return new Proxy(producer, {
|
||||
get(target, prop, receiver) {
|
||||
const value = Reflect.get(target, prop, receiver);
|
||||
if ((prop === "input" || prop === "output") && typeof value === "function") {
|
||||
const fn = value as (...args: unknown[]) => unknown;
|
||||
return (...args: unknown[]) => sanitizeForGemini(fn.apply(target, args));
|
||||
}
|
||||
return value;
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
function wrapStandard<T extends object>(standard: T): T {
|
||||
return new Proxy(standard, {
|
||||
get(target, prop, receiver) {
|
||||
if (prop === "jsonSchema") {
|
||||
const value = Reflect.get(target, prop, receiver);
|
||||
if (value && typeof value === "object") {
|
||||
return wrapJsonSchemaProducer(value as object);
|
||||
}
|
||||
return value;
|
||||
}
|
||||
return Reflect.get(target, prop, receiver);
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
export function wrapSchemaForGemini(schema: StandardSchemaV1<any>): StandardSchemaV1<any> {
|
||||
return new Proxy(schema, {
|
||||
get(target, prop, receiver) {
|
||||
if (prop === "~standard") {
|
||||
const value = Reflect.get(target, prop, receiver);
|
||||
if (value && typeof value === "object") {
|
||||
return wrapStandard(value as object);
|
||||
}
|
||||
return value;
|
||||
}
|
||||
if (prop === "toJsonSchema") {
|
||||
const method = Reflect.get(target, prop, receiver);
|
||||
if (typeof method === "function") {
|
||||
return () => sanitizeForGemini((method as (...args: unknown[]) => unknown).call(target));
|
||||
}
|
||||
return method;
|
||||
}
|
||||
return Reflect.get(target, prop, receiver);
|
||||
},
|
||||
}) as StandardSchemaV1<any>;
|
||||
}
|
||||
|
||||
export function sanitizeToolForGemini<T extends Tool<any, any>>(tool: T): T {
|
||||
if (!tool.parameters) return tool;
|
||||
return { ...tool, parameters: wrapSchemaForGemini(tool.parameters) } as T;
|
||||
}
|
||||
|
||||
/**
|
||||
* true when the effective upstream model is — or might become — google
|
||||
* generative language API traffic. matches:
|
||||
* - direct `google/*`, opencode `opencode/gemini-*`, openrouter
|
||||
* `openrouter/google/gemini-*` (slug substring "gemini" wins).
|
||||
* - any unresolved specifier: `undefined`, `"auto"`, or a slug that
|
||||
* didn't map through the alias registry (no `provider/` prefix).
|
||||
* these flow through the agent's own auto-select, which may land
|
||||
* on gemini *after* the MCP server has already registered tools —
|
||||
* at which point sanitization is too late to apply. erring on the
|
||||
* side of sanitizing is safe: cases 1 + 2 are universally
|
||||
* compatible JSON-Schema normalizations (enum-only → typed string,
|
||||
* collapsible const-unions → string enum); case 3 is gemini-
|
||||
* specific but only fires on non-collapsible unions, which arktype
|
||||
* does not emit for our current tool schemas. see issue #676 for
|
||||
* the prod failure that motivated this widening.
|
||||
*/
|
||||
export function isGeminiRouted(ctx: ToolContext): boolean {
|
||||
const effective = ctx.payload.proxyModel ?? ctx.resolvedModel ?? ctx.payload.model;
|
||||
if (!effective) return true;
|
||||
const normalized = effective.toLowerCase();
|
||||
if (normalized.includes("gemini")) return true;
|
||||
// every concrete model resolved through the registry carries a
|
||||
// `provider/` prefix (e.g. "anthropic/claude-opus-4-7"). anything
|
||||
// without a slash is either the literal `"auto"` alias or an
|
||||
// unrecognized slug that resolveModel logged a warning for — both
|
||||
// route through the agent's late auto-select, which may pick gemini.
|
||||
if (!normalized.includes("/")) return true;
|
||||
return false;
|
||||
}
|
||||
-184
@@ -1,184 +0,0 @@
|
||||
import { describe, expect, it } from "vitest";
|
||||
import { classifyPushError } from "./git.ts";
|
||||
|
||||
// re-export the normalizeUrl function for testing
|
||||
// note: in a real scenario, we'd export this from git.ts or move to a shared utils file
|
||||
function normalizeUrl(url: string): string {
|
||||
return url.replace(/\.git$/, "").toLowerCase();
|
||||
}
|
||||
|
||||
describe("normalizeUrl", () => {
|
||||
it("removes .git suffix", () => {
|
||||
expect(normalizeUrl("https://github.com/owner/repo.git")).toBe("https://github.com/owner/repo");
|
||||
});
|
||||
|
||||
it("lowercases URL", () => {
|
||||
expect(normalizeUrl("https://github.com/Owner/Repo")).toBe("https://github.com/owner/repo");
|
||||
});
|
||||
|
||||
it("handles URL without .git suffix", () => {
|
||||
expect(normalizeUrl("https://github.com/owner/repo")).toBe("https://github.com/owner/repo");
|
||||
});
|
||||
|
||||
it("handles combined case and .git suffix", () => {
|
||||
expect(normalizeUrl("https://github.com/OWNER/REPO.git")).toBe("https://github.com/owner/repo");
|
||||
});
|
||||
});
|
||||
|
||||
describe("push URL validation", () => {
|
||||
// these tests document the expected behavior
|
||||
// actual integration testing happens via the agent test suite
|
||||
|
||||
it("should block push when actual URL differs from pushUrl", () => {
|
||||
// pushUrl is set by setupGit (base repo) or checkout_pr (fork repo)
|
||||
const pushUrl = "https://github.com/fork-owner/repo.git";
|
||||
const actualUrl = "https://github.com/base-owner/repo.git"; // different repo
|
||||
|
||||
const pushUrlNormalized = normalizeUrl(pushUrl);
|
||||
const actualUrlNormalized = normalizeUrl(actualUrl);
|
||||
|
||||
expect(pushUrlNormalized).not.toBe(actualUrlNormalized);
|
||||
// in real code, this mismatch would throw an error
|
||||
});
|
||||
|
||||
it("should allow push when actual URL matches pushUrl", () => {
|
||||
const pushUrl = "https://github.com/fork-owner/repo.git";
|
||||
const actualUrl = "https://github.com/fork-owner/repo"; // same repo, no .git
|
||||
|
||||
const pushUrlNormalized = normalizeUrl(pushUrl);
|
||||
const actualUrlNormalized = normalizeUrl(actualUrl);
|
||||
|
||||
expect(pushUrlNormalized).toBe(actualUrlNormalized);
|
||||
// in real code, this would allow the push
|
||||
});
|
||||
|
||||
it("should handle case differences in URLs", () => {
|
||||
const pushUrl = "https://github.com/Owner/Repo.git";
|
||||
const actualUrl = "https://github.com/owner/repo";
|
||||
|
||||
const pushUrlNormalized = normalizeUrl(pushUrl);
|
||||
const actualUrlNormalized = normalizeUrl(actualUrl);
|
||||
|
||||
expect(pushUrlNormalized).toBe(actualUrlNormalized);
|
||||
});
|
||||
});
|
||||
|
||||
describe("classifyPushError", () => {
|
||||
describe("concurrent-push", () => {
|
||||
it("matches client-side non-fast-forward (`fetch first`)", () => {
|
||||
const msg =
|
||||
"git push failed (exit 1): To https://github.com/o/r.git\n" +
|
||||
" ! [rejected] feature -> feature (fetch first)\n" +
|
||||
"error: failed to push some refs to 'https://github.com/o/r.git'\n" +
|
||||
"hint: Updates were rejected because the remote contains work";
|
||||
expect(classifyPushError(msg)).toBe("concurrent-push");
|
||||
});
|
||||
|
||||
it("matches client-side `non-fast-forward` wording", () => {
|
||||
const msg = "! [rejected] main -> main (non-fast-forward)";
|
||||
expect(classifyPushError(msg)).toBe("concurrent-push");
|
||||
});
|
||||
|
||||
it("matches server-side `cannot lock ref` (the case from #571)", () => {
|
||||
const msg =
|
||||
"remote: error: cannot lock ref 'refs/heads/feature': is at " +
|
||||
"abc123 but expected def456\n" +
|
||||
" ! [remote rejected] feature -> feature (cannot lock ref ...)";
|
||||
expect(classifyPushError(msg)).toBe("concurrent-push");
|
||||
});
|
||||
});
|
||||
|
||||
describe("transient", () => {
|
||||
it("matches RPC failed with HTTP 502", () => {
|
||||
expect(
|
||||
classifyPushError(
|
||||
"fatal: unable to access 'https://github.com/o/r.git/': The requested URL returned error: 502"
|
||||
)
|
||||
).toBe("transient");
|
||||
});
|
||||
|
||||
it("matches early EOF mid-pack", () => {
|
||||
expect(
|
||||
classifyPushError("fatal: the remote end hung up unexpectedly\nfatal: early EOF")
|
||||
).toBe("transient");
|
||||
});
|
||||
|
||||
it("matches RPC failed", () => {
|
||||
expect(
|
||||
classifyPushError("fatal: RPC failed; curl 56 OpenSSL SSL_read: Connection reset by peer")
|
||||
).toBe("transient");
|
||||
});
|
||||
|
||||
it("matches HTTP/2 stream not closed cleanly", () => {
|
||||
expect(
|
||||
classifyPushError("fatal: HTTP/2 stream 7 was not closed cleanly: PROTOCOL_ERROR (err 1)")
|
||||
).toBe("transient");
|
||||
});
|
||||
|
||||
it("matches DNS resolution failure", () => {
|
||||
expect(classifyPushError("fatal: Could not resolve host: github.com")).toBe("transient");
|
||||
});
|
||||
|
||||
it("matches unexpected disconnect during sideband read", () => {
|
||||
expect(classifyPushError("fatal: unexpected disconnect while reading sideband packet")).toBe(
|
||||
"transient"
|
||||
);
|
||||
});
|
||||
|
||||
it("classifies HTTP 429 (rate-limit / abuse detection) as transient", () => {
|
||||
// 429 is the documented exception to the otherwise-permanent 4xx class —
|
||||
// GitHub's abuse detection occasionally surfaces it on git push.
|
||||
expect(
|
||||
classifyPushError(
|
||||
"fatal: unable to access 'https://github.com/o/r.git/': The requested URL returned error: 429"
|
||||
)
|
||||
).toBe("transient");
|
||||
expect(classifyPushError("remote: HTTP 429: too many requests")).toBe("transient");
|
||||
});
|
||||
});
|
||||
|
||||
describe("unknown", () => {
|
||||
it("does NOT classify auth/403 as transient", () => {
|
||||
// permission denied is permanent within a run — retrying just wastes
|
||||
// time. must NOT match the HTTP-5xx regex.
|
||||
expect(
|
||||
classifyPushError(
|
||||
"remote: Permission to o/r.git denied to bot.\n" +
|
||||
"fatal: unable to access 'https://github.com/o/r.git/': The requested URL returned error: 403"
|
||||
)
|
||||
).toBe("unknown");
|
||||
});
|
||||
|
||||
it("does NOT classify protected-branch rejection as concurrent-push", () => {
|
||||
expect(
|
||||
classifyPushError(
|
||||
" ! [remote rejected] main -> main (push declined due to repository rule violations)"
|
||||
)
|
||||
).toBe("unknown");
|
||||
});
|
||||
|
||||
it("does NOT classify 404 as transient", () => {
|
||||
expect(
|
||||
classifyPushError(
|
||||
"fatal: unable to access 'https://github.com/o/r.git/': The requested URL returned error: 404"
|
||||
)
|
||||
).toBe("unknown");
|
||||
});
|
||||
|
||||
it("returns unknown for an empty message", () => {
|
||||
expect(classifyPushError("")).toBe("unknown");
|
||||
});
|
||||
});
|
||||
|
||||
describe("ordering", () => {
|
||||
it("prefers concurrent-push over transient when both signals appear", () => {
|
||||
// a server-side cannot-lock-ref response that also includes an HTTP
|
||||
// 5xx in the libcurl envelope should still route to the recovery
|
||||
// path, not a blind retry.
|
||||
const msg =
|
||||
"remote: error: cannot lock ref 'refs/heads/feature': is at A but expected B\n" +
|
||||
"fatal: unable to access ...: The requested URL returned error: 500";
|
||||
expect(classifyPushError(msg)).toBe("concurrent-push");
|
||||
});
|
||||
});
|
||||
});
|
||||
-701
@@ -1,701 +0,0 @@
|
||||
import { regex } from "arkregex";
|
||||
import { type } from "arktype";
|
||||
import type { StoredPushDest } from "../toolState.ts";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import { $git, $gitFetchWithDeepen } from "../utils/gitAuth.ts";
|
||||
import { executeLifecycleHook, type LifecycleHookFailure } from "../utils/lifecycle.ts";
|
||||
import { $ } from "../utils/shell.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
type PushDestination = {
|
||||
remoteName: string;
|
||||
remoteBranch: string;
|
||||
url: string;
|
||||
};
|
||||
|
||||
/**
|
||||
* get where git would actually push this branch.
|
||||
* prefers the stored destination from toolState (set by checkout_pr) when it
|
||||
* matches the current branch, because git config reads can silently fail in
|
||||
* certain environments causing pushes to the wrong remote branch.
|
||||
*
|
||||
* falls back to reading branch.X.pushRemote and branch.X.merge from git config,
|
||||
* and finally to origin/<branch> for branches created without checkout_pr.
|
||||
*/
|
||||
function getPushDestination(
|
||||
branch: string,
|
||||
storedDest: StoredPushDest | undefined
|
||||
): PushDestination {
|
||||
// prefer stored destination from checkout_pr when it matches the current branch
|
||||
if (storedDest && storedDest.localBranch === branch) {
|
||||
log.debug(`using stored push destination: ${storedDest.remoteName}/${storedDest.remoteBranch}`);
|
||||
const url = $("git", ["remote", "get-url", "--push", storedDest.remoteName], {
|
||||
log: false,
|
||||
}).trim();
|
||||
return { remoteName: storedDest.remoteName, remoteBranch: storedDest.remoteBranch, url };
|
||||
}
|
||||
|
||||
// fall back to git config (for branches not created by checkout_pr)
|
||||
try {
|
||||
const pushRemote = $("git", ["config", `branch.${branch}.pushRemote`], { log: false }).trim();
|
||||
const merge = $("git", ["config", `branch.${branch}.merge`], { log: false }).trim();
|
||||
const remoteBranch = merge.replace(/^refs\/heads\//, "");
|
||||
const url = $("git", ["remote", "get-url", "--push", pushRemote], { log: false }).trim();
|
||||
return { remoteName: pushRemote, remoteBranch, url };
|
||||
} catch {
|
||||
// no push config - branch was created locally without checkout_pr
|
||||
log.debug(`no push config for ${branch}, falling back to origin/${branch}`);
|
||||
const url = $("git", ["remote", "get-url", "--push", "origin"], { log: false }).trim();
|
||||
return { remoteName: "origin", remoteBranch: branch, url };
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* normalize URL for comparison (handle .git suffix, case)
|
||||
*/
|
||||
function normalizeUrl(url: string): string {
|
||||
return url.replace(/\.git$/, "").toLowerCase();
|
||||
}
|
||||
|
||||
// SECURITY: reject refs/branch names that begin with "-". git's parseopt
|
||||
// accepts options intermixed with positional args, so a ref like
|
||||
// "--upload-pack=evil" could be interpreted as a flag rather than a refspec.
|
||||
export function rejectIfLeadingDash(value: string, kind: string): void {
|
||||
if (value.startsWith("-")) {
|
||||
throw new Error(`Blocked: ${kind} '${value}' starts with '-' — git could parse it as a flag.`);
|
||||
}
|
||||
}
|
||||
|
||||
// SECURITY: branch inputs to push/delete must be bare branch names. a branch
|
||||
// name like "refs/heads/main" bypasses the restricted-mode default-branch
|
||||
// check below (which does exact-string compare against "main"), and symbolic
|
||||
// refs (HEAD / FETCH_HEAD / ORIG_HEAD / MERGE_HEAD) would resolve to
|
||||
// whatever commit those refs point at — both routes let an agent push to
|
||||
// protected branches even under push: restricted. checkout_pr only ever
|
||||
// stores bare names like "pr-123", so nothing legitimate relies on the
|
||||
// refs/... form here.
|
||||
const SYMBOLIC_REFS = new Set(["HEAD", "FETCH_HEAD", "ORIG_HEAD", "MERGE_HEAD"]);
|
||||
export function rejectSpecialRef(value: string, kind: string): void {
|
||||
rejectIfLeadingDash(value, kind);
|
||||
if (value.startsWith("refs/")) {
|
||||
throw new Error(
|
||||
`Blocked: ${kind} '${value}' is a fully-qualified ref path. Use a bare branch name (e.g. 'feature/foo' or 'main'), not a 'refs/heads/...' form.`
|
||||
);
|
||||
}
|
||||
if (SYMBOLIC_REFS.has(value)) {
|
||||
throw new Error(
|
||||
`Blocked: ${kind} '${value}' is a git symbolic ref, not a branch name. Pass the resolved branch name (e.g. 'main'), or omit branchName to push the current branch.`
|
||||
);
|
||||
}
|
||||
// SECURITY: git interprets ':' and leading '+' as refspec syntax, not as
|
||||
// part of a branch name. without this check, an agent under push:restricted
|
||||
// can smuggle a full refspec through branchName:
|
||||
// - "evil:refs/heads/main" → pushes local 'evil' to remote main
|
||||
// - ":refs/heads/main" → deletes remote main
|
||||
// - ":other" → deletes remote 'other' under push:restricted
|
||||
// - "+main" → force-push refspec
|
||||
// the default-branch guard downstream is an exact-string compare, so any
|
||||
// character that lets git parse the value as <src>:<dst> (or as a force
|
||||
// prefix) bypasses it. git's own check-ref-format forbids ':', '+', '^',
|
||||
// '~', '?', '*', '[', '\\', and whitespace in branch names, so rejecting
|
||||
// them here cannot false-positive against a legitimate branch name.
|
||||
const BAD = /[:+^~?*[\\\s]/;
|
||||
const badMatch = value.match(BAD);
|
||||
if (badMatch) {
|
||||
throw new Error(
|
||||
`Blocked: ${kind} '${value}' contains '${badMatch[0]}', which git interprets as refspec/revision syntax, not as part of a branch name.`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// SECURITY: validate tag names so the push_tags refspec can't be split into
|
||||
// a <src>:<dst> refspec that targets a non-tag ref. without this, a tag like
|
||||
// "foo:refs/heads/main" becomes "refs/tags/foo:refs/heads/main" and git
|
||||
// pushes the local tag's commit to remote main — a back door around the
|
||||
// branch-push rules in push_branch. keep the allow-list conservative (git's
|
||||
// own check-ref-format forbids far more, but we only need enough to block
|
||||
// refspec injection).
|
||||
export function validateTagName(tag: string): void {
|
||||
rejectIfLeadingDash(tag, "tag");
|
||||
if (!/^[A-Za-z0-9._/-]+$/.test(tag)) {
|
||||
throw new Error(
|
||||
`Blocked: tag '${tag}' contains characters that could be parsed as a refspec or flag. Tags must match [A-Za-z0-9._/-]+.`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* validate that the push destination matches expected URL.
|
||||
* pushUrl is set by setupGit (base repo) and updated by checkout_pr (fork repo).
|
||||
*/
|
||||
function validatePushDestination(ctx: ToolContext, branch: string): PushDestination {
|
||||
const pushUrl = ctx.toolState.pushUrl;
|
||||
if (!pushUrl) throw new Error("pushUrl not set - setupGit must run before push_branch");
|
||||
|
||||
const dest = getPushDestination(branch, ctx.toolState.pushDest);
|
||||
|
||||
if (normalizeUrl(dest.url) !== normalizeUrl(pushUrl)) {
|
||||
throw new Error(
|
||||
`Push blocked: destination does not match expected repository.\n` +
|
||||
`Expected: ${pushUrl}\n` +
|
||||
`Actual: ${dest.url}\n` +
|
||||
`Git configuration may have been tampered with.`
|
||||
);
|
||||
}
|
||||
|
||||
return dest;
|
||||
}
|
||||
|
||||
export const PushBranch = type({
|
||||
branchName: type.string
|
||||
.describe("The branch name to push (defaults to current branch)")
|
||||
.optional(),
|
||||
force: type.boolean.describe("Force push (use with caution)").default(false),
|
||||
});
|
||||
|
||||
// classify an error from `$git("push", ...)` to decide retry vs. recovery
|
||||
// vs. rethrow. exported for tests.
|
||||
//
|
||||
// - `concurrent-push`: server-side compare-and-swap failed because the ref
|
||||
// advanced between fetch and push. recovery is fetch + integrate + retry.
|
||||
// matches both the client-side detection (`fetch first` /
|
||||
// `non-fast-forward`) and the server-side detection (`cannot lock ref`
|
||||
// with `is at <SHA1> but expected <SHA2>`).
|
||||
// - `transient`: network or upstream server hiccup (RPC failed mid-stream,
|
||||
// HTTP 5xx, early EOF, reset, timeout, dns flake). push is idempotent so
|
||||
// verbatim retry with backoff is safe.
|
||||
// - `unknown`: anything else (including auth/permission/protected-branch
|
||||
// rejections). retrying these wastes time; surface to the caller.
|
||||
//
|
||||
// kept conservative: a misclassification of `unknown` -> `transient` would
|
||||
// cause two extra round-trips on a permanently-failing push, while the
|
||||
// reverse (true transient labeled `unknown`) just falls back to current
|
||||
// behavior. so we only mark as transient when the error string is
|
||||
// unambiguously a network/server-side fault, not a refusal.
|
||||
export type PushErrorKind = "concurrent-push" | "transient" | "unknown";
|
||||
|
||||
const CONCURRENT_PUSH_PATTERNS = ["fetch first", "non-fast-forward", "cannot lock ref"] as const;
|
||||
|
||||
const TRANSIENT_PATTERNS: RegExp[] = [
|
||||
/RPC failed/i,
|
||||
/early EOF/,
|
||||
/the remote end hung up unexpectedly/,
|
||||
/Connection reset/i,
|
||||
/Could not resolve host/i,
|
||||
/Operation timed out/i,
|
||||
/HTTP\/2 stream \d+ was not closed cleanly/i,
|
||||
/unexpected disconnect while reading sideband packet/i,
|
||||
// libcurl HTTP 5xx surfaced by git over https. matches both the
|
||||
// libcurl-style "The requested URL returned error: 502" and the more
|
||||
// recent "HTTP 502" wording. most 4xx is intentionally excluded —
|
||||
// 401/403/404 indicate auth/permission problems that are not
|
||||
// retry-safe — but 429 (rate-limited / abuse detection) IS retry-safe
|
||||
// and GitHub occasionally surfaces it on git push, so it's included
|
||||
// explicitly below.
|
||||
/HTTP 5\d\d/,
|
||||
/returned error: 5\d\d/i,
|
||||
/HTTP 429/,
|
||||
/returned error: 429/i,
|
||||
];
|
||||
|
||||
export function classifyPushError(msg: string): PushErrorKind {
|
||||
if (CONCURRENT_PUSH_PATTERNS.some((p) => msg.includes(p))) return "concurrent-push";
|
||||
if (TRANSIENT_PATTERNS.some((p) => p.test(msg))) return "transient";
|
||||
return "unknown";
|
||||
}
|
||||
|
||||
// backoff delays before retry attempts 2 and 3. attempt 1 is the original
|
||||
// push. total worst-case added latency: ~7s. small enough that the agent
|
||||
// rarely notices, large enough to ride out most upstream hiccups.
|
||||
const TRANSIENT_RETRY_DELAYS_MS = [2000, 5000];
|
||||
|
||||
export function PushBranchTool(ctx: ToolContext) {
|
||||
const defaultBranch = ctx.repo.data.default_branch || "main";
|
||||
const pushPermission = ctx.payload.push;
|
||||
|
||||
return tool({
|
||||
name: "push_branch",
|
||||
description:
|
||||
"Push the current branch to the remote repository. Omit branchName to push the current branch (recommended). " +
|
||||
'Example: `push_branch({})` to push the current branch. Example: `push_branch({ branchName: "pr-1" })` to push a specific local branch. ' +
|
||||
"If specifying branchName, use the LOCAL branch name (e.g., 'pr-1'), not the remote branch name. " +
|
||||
"The correct remote and remote branch are determined automatically from branch config set by checkout_pr. " +
|
||||
"Requires a clean working tree. Runs the repository prepush hook (if configured) — best-effort. If the hook fails, the tool returns the failure output and every subsequent call this run skips the hook. " +
|
||||
"Never force push unless explicitly requested. Pushes to the default branch are blocked in restricted mode. " +
|
||||
"If the response reports a timeout, the underlying push may have actually succeeded — verify with `git log origin/<branch>` (or this tool with command 'log') before retrying, otherwise you'll push a duplicate.",
|
||||
parameters: PushBranch,
|
||||
execute: execute(async ({ branchName, force }) => {
|
||||
// permission check
|
||||
if (pushPermission === "disabled") {
|
||||
throw new Error("Push is disabled. This repository is configured for read-only access.");
|
||||
}
|
||||
|
||||
const branch = branchName || $("git", ["rev-parse", "--abbrev-ref", "HEAD"], { log: false });
|
||||
// check the resolved branch too — rev-parse could surface a weird current
|
||||
// branch name that would otherwise bypass the user-facing check. use
|
||||
// rejectSpecialRef so "refs/heads/main" and symbolic refs like HEAD
|
||||
// can't slip past the default-branch guard below.
|
||||
rejectSpecialRef(branch, "branch");
|
||||
|
||||
// reject push if working tree is dirty — forces agent to commit or discard before pushing
|
||||
const status = $("git", ["status", "--porcelain"], { log: false });
|
||||
if (status) {
|
||||
throw new Error(
|
||||
`push blocked: working tree is not clean (tracked changes and/or untracked files). commit, discard, or remove stray artifacts before pushing.\n\n` +
|
||||
`git status:\n${status}` +
|
||||
(ctx.toolState.prepushFailureCount > 0
|
||||
? "\n\nnote: the prepush hook failed earlier this run — once the working tree is clean, push_branch will skip the hook."
|
||||
: "")
|
||||
);
|
||||
}
|
||||
|
||||
// validate push destination matches expected URL
|
||||
const pushDest = validatePushDestination(ctx, branch);
|
||||
|
||||
// backstop against subagent-induced cross-PR clobbers: a subagent
|
||||
// shares cwd + toolState with the orchestrator, so its `checkout_pr(N)`
|
||||
// moves HEAD to pr-N and persists pushDest pointing at the foreign
|
||||
// PR's remote branch. refuse pr-N → origin/<other> pushes unless this
|
||||
// run is itself scoped to PR N (zed-industries/cloud, 2026-05-18).
|
||||
const prBranchMatch = branch.match(/^pr-(\d+)$/);
|
||||
if (prBranchMatch && pushDest.remoteBranch !== branch) {
|
||||
const prNumber = Number(prBranchMatch[1]);
|
||||
const event = ctx.payload.event;
|
||||
const runScoped = event.is_pr === true && event.issue_number === prNumber;
|
||||
if (!runScoped) {
|
||||
throw new Error(
|
||||
`push blocked: local branch '${branch}' would push to '${pushDest.remoteName}/${pushDest.remoteBranch}', ` +
|
||||
`but this run is not scoped to PR #${prNumber}. ` +
|
||||
`the 'pr-${prNumber}' branch was created by a prior checkout_pr call (likely from a subagent — subagents share the working tree and toolState with the orchestrator). ` +
|
||||
`you have probably landed your commit on the wrong branch. ` +
|
||||
`switch to your own feature branch first (e.g. 'git checkout <feature-branch>') and then push. ` +
|
||||
`if the push to PR #${prNumber} is intentional, this run needs to be triggered against that PR.`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// block pushes to default branch in restricted mode
|
||||
if (pushPermission === "restricted" && pushDest.remoteBranch === defaultBranch) {
|
||||
throw new Error(
|
||||
`Push blocked: cannot push directly to default branch '${pushDest.remoteBranch}'. ` +
|
||||
`Create a feature branch and open a PR instead.`
|
||||
);
|
||||
}
|
||||
|
||||
// use refspec when local and remote branch names differ
|
||||
const refspec =
|
||||
branch === pushDest.remoteBranch ? branch : `${branch}:${pushDest.remoteBranch}`;
|
||||
const pushArgs = force
|
||||
? ["--force", "-u", pushDest.remoteName, refspec]
|
||||
: ["-u", pushDest.remoteName, refspec];
|
||||
|
||||
const prepushSkipped = ctx.toolState.prepushFailureCount > 0;
|
||||
if (prepushSkipped) {
|
||||
log.info(`» skipping prepush hook (failed earlier this run)`);
|
||||
} else if (ctx.prepushScript) {
|
||||
const prepushHook = await executeLifecycleHook({
|
||||
event: "prepush",
|
||||
script: ctx.prepushScript,
|
||||
});
|
||||
if (prepushHook.failure) {
|
||||
ctx.toolState.prepushFailureCount += 1;
|
||||
throw new Error(buildPrepushFailureMessage(prepushHook.failure, ctx.payload.shell));
|
||||
}
|
||||
|
||||
// re-verify clean working tree after prepush. a hook that writes tracked
|
||||
// files (formatter, type generator, build artifacts) would leave those
|
||||
// changes uncommitted — pushing now would silently drop them, and the
|
||||
// agent would report a "successful push" of code the hook had expected
|
||||
// to be included.
|
||||
const postHookStatus = $("git", ["status", "--porcelain"], { log: false });
|
||||
if (postHookStatus) {
|
||||
throw new Error(
|
||||
`push blocked: the prepush hook modified the working tree. those changes are not included in the push. commit or discard them (or change the hook to not mutate tracked files) before retrying.\n\n` +
|
||||
`git status:\n${postHookStatus}`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
log.debug(`pushing ${branch} to ${pushDest.remoteName}/${pushDest.remoteBranch}`);
|
||||
if (force) {
|
||||
log.warning(`force pushing - this will overwrite remote history`);
|
||||
}
|
||||
|
||||
// retry transient network/server errors (RPC failed, early EOF, 5xx,
|
||||
// connection reset, etc) with backoff. push is idempotent: if the remote
|
||||
// never received the pack, retry creates the ref; if it did, the retry
|
||||
// is a no-op fast-forward to the same SHA. concurrent-push rejections
|
||||
// and permission errors are NOT retried — they need user intervention.
|
||||
let lastErr: unknown;
|
||||
let pushed = false;
|
||||
for (let attempt = 0; attempt <= TRANSIENT_RETRY_DELAYS_MS.length; attempt++) {
|
||||
try {
|
||||
await $git("push", pushArgs, {
|
||||
token: ctx.gitToken,
|
||||
});
|
||||
if (attempt > 0) {
|
||||
log.info(`push succeeded on attempt ${attempt + 1}`);
|
||||
}
|
||||
pushed = true;
|
||||
break;
|
||||
} catch (err) {
|
||||
lastErr = err;
|
||||
const msg = err instanceof Error ? err.message : String(err);
|
||||
const kind = classifyPushError(msg);
|
||||
|
||||
if (kind === "concurrent-push") {
|
||||
// git rebase is blocked through the MCP tool when shell is disabled
|
||||
// (rebase --exec can execute arbitrary code). merge always works and
|
||||
// integrates remote changes cleanly, so suggest it as the default.
|
||||
const integrateStep =
|
||||
ctx.payload.shell === "disabled"
|
||||
? `2. use the git tool to merge the remote branch into yours: git({ command: "merge", args: ["origin/${pushDest.remoteBranch}"] })`
|
||||
: `2. use the git tool to rebase or merge your changes on top: git({ command: "merge", args: ["origin/${pushDest.remoteBranch}"] }) (or 'rebase')`;
|
||||
throw new Error(
|
||||
`push rejected: the remote branch '${pushDest.remoteBranch}' has new commits you don't have locally (often a concurrent push to the same branch).\n\n` +
|
||||
`to resolve this:\n` +
|
||||
`1. use git_fetch to fetch the remote branch: git_fetch({ ref: "${pushDest.remoteBranch}" })\n` +
|
||||
`${integrateStep}\n` +
|
||||
`3. resolve any merge conflicts if needed\n` +
|
||||
`4. retry push_branch`
|
||||
);
|
||||
}
|
||||
|
||||
if (kind === "transient" && attempt < TRANSIENT_RETRY_DELAYS_MS.length) {
|
||||
// jitter avoids lockstep retries when several agents are hit by the
|
||||
// same upstream blip simultaneously — without it, all retries land
|
||||
// on the same recovering server at the same instant.
|
||||
const baseDelay = TRANSIENT_RETRY_DELAYS_MS[attempt] ?? 5000;
|
||||
const delay = Math.round(baseDelay * (0.75 + Math.random() * 0.5));
|
||||
log.info(
|
||||
`push attempt ${attempt + 1} failed (transient), retrying in ${delay}ms: ${msg.slice(0, 300)}`
|
||||
);
|
||||
await new Promise((r) => setTimeout(r, delay));
|
||||
continue;
|
||||
}
|
||||
|
||||
throw err;
|
||||
}
|
||||
}
|
||||
if (!pushed) {
|
||||
// safety net — loop should always either break with success or throw.
|
||||
throw lastErr instanceof Error ? lastErr : new Error(String(lastErr));
|
||||
}
|
||||
|
||||
const pushedSha = $("git", ["rev-parse", "HEAD"], { log: false }).trim();
|
||||
log.info(
|
||||
`» pushed branch ${branch} to ${pushDest.remoteName}/${pushDest.remoteBranch} (sha ${pushedSha})`
|
||||
);
|
||||
|
||||
const baseMsg = `successfully pushed ${branch} to ${pushDest.remoteName}/${pushDest.remoteBranch}`;
|
||||
const message = prepushSkipped
|
||||
? `${baseMsg} (prepush hook skipped — failed earlier this run).`
|
||||
: baseMsg;
|
||||
|
||||
return {
|
||||
success: true,
|
||||
branch,
|
||||
remoteBranch: pushDest.remoteBranch,
|
||||
remote: pushDest.remoteName,
|
||||
force,
|
||||
prepushSkipped,
|
||||
message,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
/** agent-facing prepush failure message: script output + bypass guidance,
|
||||
* with no generic lifecycle retry advice (which would conflict). */
|
||||
function buildPrepushFailureMessage(
|
||||
failure: LifecycleHookFailure,
|
||||
shell: ToolContext["payload"]["shell"]
|
||||
): string {
|
||||
const header =
|
||||
failure.kind === "exit"
|
||||
? `prepush hook failed with exit code ${failure.exitCode}.\n\nscript output:\n${failure.output || "(empty)"}`
|
||||
: failure.kind === "timeout"
|
||||
? `prepush hook timed out — the script is hung or doing too much work.`
|
||||
: `prepush hook failed to spawn: ${failure.spawnError}.`;
|
||||
|
||||
const ifRealBug =
|
||||
shell === "disabled"
|
||||
? `fix it before pushing again — shell access is disabled in this run, so you can't re-run the hook command yourself.`
|
||||
: `run the hook command yourself via the shell tool to iterate (push_branch will NOT re-run it).`;
|
||||
|
||||
return (
|
||||
`${header}\n\n` +
|
||||
`this repo's prepush hook is best-effort: the next push_branch call will SKIP the hook and proceed. ` +
|
||||
`if the failure is unrelated to your changes (pre-existing breakage, flaky check), just call push_branch again. ` +
|
||||
`if it could be a real bug in your code, ${ifRealBug}`
|
||||
);
|
||||
}
|
||||
|
||||
// commands that require authentication - redirect to dedicated tools.
|
||||
// exported so tests can exercise the same table the runtime uses.
|
||||
//
|
||||
// note: the `pull` redirect intentionally does not mention `rebase` — under
|
||||
// shell=disabled rebase is itself blocked by NOSHELL_BLOCKED_SUBCOMMANDS, so
|
||||
// advertising it here would just send the agent into a second block. agents
|
||||
// under shell=restricted/enabled who prefer rebase can invoke it directly;
|
||||
// the redirect's job is to name the canonical alternative (merge), which
|
||||
// works in all modes.
|
||||
export const AUTH_REQUIRED_REDIRECT: Record<string, string> = {
|
||||
push: "use the push_branch tool instead — it handles authentication and permission checks.",
|
||||
fetch: "use the git_fetch tool instead — it handles authentication.",
|
||||
pull: "use git_fetch to fetch the remote ref, then call this git tool with command 'merge' locally.",
|
||||
clone: "the repository is already cloned. use checkout_pr for PR branches.",
|
||||
};
|
||||
|
||||
// SECURITY: subcommands blocked when shell is disabled.
|
||||
// in disabled mode the agent has no shell access, so these subcommands are the
|
||||
// primary escape vectors for arbitrary code execution. in restricted mode the
|
||||
// agent already has shell in a stripped sandbox, so blocking these is redundant.
|
||||
// exported so tests stay in sync with the runtime table.
|
||||
export const NOSHELL_BLOCKED_SUBCOMMANDS: Record<string, string> = {
|
||||
config: "Blocked: git config can set up filter drivers or hooks that execute arbitrary code.",
|
||||
submodule:
|
||||
"Blocked: git submodule can reference malicious repositories and execute code on update.",
|
||||
"update-index":
|
||||
"Blocked: git update-index can modify index entries in ways that bypass file protections.",
|
||||
"filter-branch": "Blocked: git filter-branch executes arbitrary code on repository history.",
|
||||
replace: "Blocked: git replace can redirect object lookups.",
|
||||
// subcommands that accept --exec or similar flags for arbitrary code execution
|
||||
rebase:
|
||||
"Blocked: git rebase --exec can execute arbitrary shell commands. Use 'merge' instead to integrate remote changes.",
|
||||
bisect:
|
||||
"Blocked: git bisect run can execute arbitrary shell commands. Bisect by hand (bisect start/good/bad/reset) is not available through this tool either — ask the user to run the bisect if needed.",
|
||||
// difftool/mergetool exist to shell out to external diff/merge programs.
|
||||
// both accept `--extcmd` / `-x` (difftool) or configured tool commands
|
||||
// (mergetool) that run arbitrary code. NOSHELL_BLOCKED_ARGS catches the
|
||||
// long `--extcmd` form, but not the `-x` short form — and globally blocking
|
||||
// `-x` would false-positive on `git cherry-pick -x`. block the subcommands
|
||||
// wholesale instead; neither has a meaningful use in an automated agent
|
||||
// workflow (agents use `git diff` / `git show` for diffs and resolve
|
||||
// conflicts via file edits, not a TUI merge tool).
|
||||
difftool:
|
||||
"Blocked: git difftool runs an external diff program via --extcmd/-x or configured tool and can execute arbitrary shell commands. Use 'diff' (or 'show' for single commits) to inspect changes — those output directly and don't invoke an external tool.",
|
||||
mergetool:
|
||||
"Blocked: git mergetool runs an external merge program configured via mergetool.<name>.cmd and can execute arbitrary shell commands. Resolve conflicts by editing the files directly (conflict markers are written into the working tree) and then commit.",
|
||||
};
|
||||
|
||||
// SECURITY: subcommand-specific arg flags that execute code.
|
||||
// only blocked when shell is disabled — in restricted mode the agent already
|
||||
// has shell access in a stripped sandbox, so these provide no additional security.
|
||||
//
|
||||
// NOTE: global git flags like -c and --config-env are NOT included here
|
||||
// because they only work before the subcommand. in the MCP tool, the
|
||||
// subcommand is always first, so -c in args is parsed as a subcommand flag
|
||||
// (e.g., git log -c = combined diff format), not config injection.
|
||||
// the subcommand check (rejecting "-" prefix) already blocks that attack.
|
||||
//
|
||||
// matched as: arg === flag OR arg starts with flag + "="
|
||||
// (avoids false positives like --exclude matching --exec).
|
||||
// exported so tests stay in sync with the runtime flag set.
|
||||
export const NOSHELL_BLOCKED_ARGS = ["--exec", "--extcmd", "--upload-pack", "--receive-pack"];
|
||||
|
||||
const COLLAPSE_THRESHOLD = 200;
|
||||
|
||||
// SECURITY: subcommand must match [a-z][a-z0-9-]* to reject flags passed as the subcommand.
|
||||
// this blocks injection of global git options like -c, -C, --exec-path, --config-env, etc.
|
||||
//
|
||||
// critical attack: git -c "alias.x=!evil-command" x
|
||||
// -> sets alias "x" to a shell command via -c config injection, then runs it
|
||||
// -> achieves arbitrary code execution even with shell=disabled
|
||||
const subcommandPattern = regex("^[a-z][a-z0-9-]*$");
|
||||
|
||||
const Git = type({
|
||||
command: type(subcommandPattern).describe("Git command (e.g., 'status', 'log', 'diff')"),
|
||||
args: type.string.array().describe("Additional arguments for the git command").optional(),
|
||||
});
|
||||
|
||||
export function GitTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "git",
|
||||
description:
|
||||
"Run a git subcommand. `command` is a single subcommand; flags and positional args go in `args`. " +
|
||||
'Example: `git({ command: "log", args: ["--oneline", "-n", "20"] })`. ' +
|
||||
'Example: `git({ command: "diff", args: ["origin/main..HEAD"] })`. ' +
|
||||
"For push/fetch, use the dedicated MCP tools (push_branch, git_fetch). " +
|
||||
"git pull is not available — use git_fetch then this tool with command 'merge'.",
|
||||
parameters: Git,
|
||||
execute: execute(async (params) => {
|
||||
const command = params.command;
|
||||
const args = params.args ?? [];
|
||||
|
||||
const redirect = AUTH_REQUIRED_REDIRECT[command];
|
||||
if (redirect) {
|
||||
throw new Error(`git ${command} is not available through this tool — ${redirect}`);
|
||||
}
|
||||
|
||||
// SECURITY: block dangerous subcommands when shell is disabled.
|
||||
// in restricted mode the agent has shell in a stripped sandbox, so blocking
|
||||
// these through the MCP tool is redundant (agent can do it via shell).
|
||||
if (ctx.payload.shell === "disabled") {
|
||||
const blocked = NOSHELL_BLOCKED_SUBCOMMANDS[command];
|
||||
if (blocked) {
|
||||
throw new Error(blocked);
|
||||
}
|
||||
|
||||
// block subcommand-specific flags that execute arbitrary code
|
||||
for (const arg of args) {
|
||||
const isBlocked = NOSHELL_BLOCKED_ARGS.some(
|
||||
(flag) => arg === flag || arg.startsWith(flag + "=")
|
||||
);
|
||||
if (isBlocked) {
|
||||
throw new Error(
|
||||
`Blocked: '${arg}' flag can execute arbitrary code and is not allowed.`
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// `git merge-base --is-ancestor` uses exit codes as data: 0 = ancestor,
|
||||
// 1 = not-an-ancestor, >1 = real error. Surface the binary answer
|
||||
// instead of throwing on exit 1. see #766.
|
||||
if (command === "merge-base" && args.includes("--is-ancestor")) {
|
||||
let isAncestor = true;
|
||||
$("git", [command, ...args], {
|
||||
log: false,
|
||||
onError: (r) => {
|
||||
if (r.status === 1) {
|
||||
isAncestor = false;
|
||||
return;
|
||||
}
|
||||
const detail = [r.stderr, r.stdout]
|
||||
.map((s) => s.trim())
|
||||
.filter(Boolean)
|
||||
.join("\n");
|
||||
throw new Error(
|
||||
`git merge-base --is-ancestor failed (exit ${r.status}): ${detail || "Unknown error"}`
|
||||
);
|
||||
},
|
||||
});
|
||||
return { success: true, isAncestor };
|
||||
}
|
||||
|
||||
const output = $("git", [command, ...args], { log: false });
|
||||
const lineCount = output.split("\n").length;
|
||||
if (lineCount > COLLAPSE_THRESHOLD) {
|
||||
log.group(`git ${command} output (${lineCount} lines)`, () => {
|
||||
log.info(output);
|
||||
});
|
||||
} else if (output) {
|
||||
log.info(output);
|
||||
}
|
||||
|
||||
return { success: true, output };
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
const GitFetch = type({
|
||||
ref: type.string.describe("Ref to fetch: branch name, tag, or 'pull/N/head' for PRs"),
|
||||
depth: type.number.describe("Fetch depth (for shallow clones)").optional(),
|
||||
});
|
||||
|
||||
export function GitFetchTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "git_fetch",
|
||||
description:
|
||||
"Fetch refs from remote repository. Use this instead of git fetch directly. " +
|
||||
'Example: `git_fetch({ ref: "main" })`. With depth: `git_fetch({ ref: "pull/1234/head", depth: 1 })`.',
|
||||
parameters: GitFetch,
|
||||
execute: execute(async (params) => {
|
||||
rejectIfLeadingDash(params.ref, "ref");
|
||||
const fetchArgs = ["--no-tags", "origin", params.ref];
|
||||
if (params.depth !== undefined) {
|
||||
fetchArgs.push(`--depth=${params.depth}`);
|
||||
}
|
||||
await $gitFetchWithDeepen(fetchArgs, { token: ctx.gitToken }, "git_fetch");
|
||||
return { success: true, ref: params.ref };
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
const DeleteBranch = type({
|
||||
branchName: type.string.describe("Remote branch to delete"),
|
||||
});
|
||||
|
||||
export function DeleteBranchTool(ctx: ToolContext) {
|
||||
const pushPermission = ctx.payload.push;
|
||||
const defaultBranch = ctx.repo.data.default_branch || "main";
|
||||
|
||||
return tool({
|
||||
name: "delete_branch",
|
||||
description:
|
||||
"Delete a remote branch. Requires push: enabled permission. " +
|
||||
"Deletion of the repository's default branch is always blocked regardless of permission mode.",
|
||||
parameters: DeleteBranch,
|
||||
execute: execute(async (params) => {
|
||||
if (pushPermission !== "enabled") {
|
||||
throw new Error(
|
||||
"Branch deletion requires push: enabled permission. " +
|
||||
"Current mode only allows pushing to non-protected branches."
|
||||
);
|
||||
}
|
||||
|
||||
// delete_branch is already gated on push: enabled, but also block the
|
||||
// refs/heads/... and symbolic-ref forms so this tool can't be tricked
|
||||
// into deleting a protected ref that wouldn't match a bare-name check.
|
||||
rejectSpecialRef(params.branchName, "branchName");
|
||||
|
||||
// defense-in-depth: deleting the default branch is catastrophic and
|
||||
// unlike pushing to main it has no easy revert path (GitHub retains
|
||||
// refs for 30 days but restoring requires the reflog or a direct SHA).
|
||||
// push: enabled authorizes pushes, not wholesale removal of the
|
||||
// repository's primary branch. block it locally even if GitHub branch
|
||||
// protection would also reject — some repos disable protection on
|
||||
// default branches and we should not rely on that config for safety.
|
||||
if (params.branchName === defaultBranch) {
|
||||
throw new Error(
|
||||
`Blocked: cannot delete the default branch '${defaultBranch}'. ` +
|
||||
`If you really need to delete or rename it, do it manually via the repository settings.`
|
||||
);
|
||||
}
|
||||
|
||||
// use refs/heads/<name> explicitly so a same-named tag can't be deleted
|
||||
// by accident. `push --delete <bare-name>` resolves against both remote
|
||||
// branches and tags; a tag-only match would silently remove the tag.
|
||||
// rejectSpecialRef guarantees branchName is a bare name, so the
|
||||
// branchName construction here can't collide with user-supplied refs.
|
||||
await $git("push", ["origin", "--delete", `refs/heads/${params.branchName}`], {
|
||||
token: ctx.gitToken,
|
||||
});
|
||||
log.info(`» deleted branch ${params.branchName}`);
|
||||
return { success: true, deleted: params.branchName };
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
const PushTags = type({
|
||||
tag: type.string.describe("Tag name to push"),
|
||||
force: type.boolean.describe("Force push the tag").default(false),
|
||||
});
|
||||
|
||||
export function PushTagsTool(ctx: ToolContext) {
|
||||
const pushPermission = ctx.payload.push;
|
||||
|
||||
return tool({
|
||||
name: "push_tags",
|
||||
description: "Push a tag to remote. Requires push: enabled permission.",
|
||||
parameters: PushTags,
|
||||
execute: execute(async (params) => {
|
||||
if (pushPermission !== "enabled") {
|
||||
throw new Error(
|
||||
"Tag pushing requires push: enabled permission. " +
|
||||
"Current mode only allows pushing branches."
|
||||
);
|
||||
}
|
||||
|
||||
validateTagName(params.tag);
|
||||
const pushArgs = [...(params.force ? ["-f"] : []), "origin", `refs/tags/${params.tag}`];
|
||||
await $git("push", pushArgs, {
|
||||
token: ctx.gitToken,
|
||||
});
|
||||
log.info(`» pushed tag ${params.tag}`);
|
||||
return { success: true, tag: params.tag };
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,59 +0,0 @@
|
||||
import { type } from "arktype";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import { fixDoubleEscapedString } from "../utils/fixDoubleEscapedString.ts";
|
||||
import { patchWorkflowRunFields } from "../utils/patchWorkflowRunFields.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
export const Issue = type({
|
||||
title: type.string.describe("the title of the issue"),
|
||||
body: type.string.describe("the body content of the issue"),
|
||||
labels: type.string
|
||||
.array()
|
||||
.describe("optional array of label names to apply to the issue")
|
||||
.optional(),
|
||||
assignees: type.string
|
||||
.array()
|
||||
.describe("optional array of usernames to assign to the issue")
|
||||
.optional(),
|
||||
});
|
||||
|
||||
export function IssueTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "create_issue",
|
||||
description: "Create a new GitHub issue",
|
||||
parameters: Issue,
|
||||
execute: execute(async (params) => {
|
||||
const result = await ctx.octokit.rest.issues.create({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
title: params.title,
|
||||
body: fixDoubleEscapedString(params.body),
|
||||
labels: params.labels ?? [],
|
||||
assignees: params.assignees ?? [],
|
||||
});
|
||||
|
||||
log.info(`» created issue #${result.data.number} (id ${result.data.id})`);
|
||||
|
||||
const nodeId = result.data.node_id;
|
||||
if (typeof nodeId === "string" && nodeId.length > 0) {
|
||||
await patchWorkflowRunFields(ctx, {
|
||||
issueNodeId: nodeId,
|
||||
});
|
||||
}
|
||||
|
||||
return {
|
||||
success: true,
|
||||
issueId: result.data.id,
|
||||
number: result.data.number,
|
||||
url: result.data.html_url,
|
||||
title: result.data.title,
|
||||
state: result.data.state,
|
||||
labels: result.data.labels?.map((label) =>
|
||||
typeof label === "string" ? label : label.name
|
||||
),
|
||||
assignees: result.data.assignees?.map((assignee) => assignee.login),
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,37 +0,0 @@
|
||||
import { type } from "arktype";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
export const GetIssueComments = type({
|
||||
issue_number: type.number.describe("The issue number to get comments for"),
|
||||
});
|
||||
|
||||
export function GetIssueCommentsTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "get_issue_comments",
|
||||
description:
|
||||
"Get all comments for a GitHub issue. Returns all comments including the issue body and all subsequent discussion comments. " +
|
||||
"Example: `get_issue_comments({ issue_number: 1234 })`.",
|
||||
parameters: GetIssueComments,
|
||||
execute: execute(async ({ issue_number }) => {
|
||||
// set issue context
|
||||
ctx.toolState.issueNumber = issue_number;
|
||||
|
||||
const comments = await ctx.octokit.paginate(ctx.octokit.rest.issues.listComments, {
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
issue_number,
|
||||
});
|
||||
|
||||
return {
|
||||
issue_number,
|
||||
comments: comments.map((comment) => ({
|
||||
id: comment.id,
|
||||
body: comment.body,
|
||||
user: comment.user?.login,
|
||||
})),
|
||||
count: comments.length,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,100 +0,0 @@
|
||||
import { type } from "arktype";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
export const GetIssueEvents = type({
|
||||
issue_number: type.number.describe("The issue number to get events for"),
|
||||
});
|
||||
|
||||
export function GetIssueEventsTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "get_issue_events",
|
||||
description:
|
||||
"Get timeline events for a GitHub issue that aren't reflected in the current state. Returns cross-references to other issues/PRs and commit references. Note: current labels, assignees, state, and milestone are already available via get_issue.",
|
||||
parameters: GetIssueEvents,
|
||||
execute: execute(async ({ issue_number }) => {
|
||||
// set issue context
|
||||
ctx.toolState.issueNumber = issue_number;
|
||||
|
||||
const events = await ctx.octokit.paginate(ctx.octokit.rest.issues.listEventsForTimeline, {
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
issue_number,
|
||||
});
|
||||
|
||||
// Only include events not reflected in current issue state (get_issue already has labels, assignees, state, etc.)
|
||||
// Keep only relationship/reference events that show connections to other issues/PRs/commits
|
||||
const relevantEventTypes = new Set(["cross_referenced", "referenced"]);
|
||||
|
||||
const parsedEvents = events.flatMap((event) => {
|
||||
// octokit's timeline-event union includes members with `event?:
|
||||
// string`, so `"event" in event` does not narrow it to defined.
|
||||
// require a string before the Set.has() check.
|
||||
if (!("event" in event) || typeof event.event !== "string") return [];
|
||||
if (!relevantEventTypes.has(event.event)) return [];
|
||||
|
||||
const baseEvent: Record<string, any> = {
|
||||
event: event.event,
|
||||
};
|
||||
|
||||
// Common fields
|
||||
if ("id" in event) {
|
||||
baseEvent.id = event.id;
|
||||
}
|
||||
if ("actor" in event && event.actor) {
|
||||
baseEvent.actor = event.actor.login;
|
||||
} else if ("user" in event && event.user) {
|
||||
baseEvent.actor = event.user.login;
|
||||
}
|
||||
if ("created_at" in event) {
|
||||
baseEvent.created_at = event.created_at;
|
||||
}
|
||||
|
||||
// Event-specific data
|
||||
if (event.event === "cross_referenced") {
|
||||
if ("source" in event && event.source) {
|
||||
const source = event.source as {
|
||||
type?: string;
|
||||
issue?: { number: number; title: string; html_url: string };
|
||||
pull_request?: { number: number; title: string; html_url: string };
|
||||
};
|
||||
baseEvent.source = {
|
||||
type: source.type,
|
||||
issue: source.issue
|
||||
? {
|
||||
number: source.issue.number,
|
||||
title: source.issue.title,
|
||||
html_url: source.issue.html_url,
|
||||
}
|
||||
: null,
|
||||
pull_request: source.pull_request
|
||||
? {
|
||||
number: source.pull_request.number,
|
||||
title: source.pull_request.title,
|
||||
html_url: source.pull_request.html_url,
|
||||
}
|
||||
: null,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
if (event.event === "referenced") {
|
||||
if ("commit_id" in event) {
|
||||
baseEvent.commit_id = event.commit_id;
|
||||
}
|
||||
if ("commit_url" in event) {
|
||||
baseEvent.commit_url = event.commit_url;
|
||||
}
|
||||
}
|
||||
|
||||
return [baseEvent];
|
||||
});
|
||||
|
||||
return {
|
||||
issue_number,
|
||||
events: parsedEvents,
|
||||
count: parsedEvents.length,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,63 +0,0 @@
|
||||
import { type } from "arktype";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
export const IssueInfo = type({
|
||||
issue_number: type.number.describe("The issue number to fetch"),
|
||||
});
|
||||
|
||||
export function IssueInfoTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "get_issue",
|
||||
description:
|
||||
"Retrieve GitHub issue information by issue number. " +
|
||||
"Example: `get_issue({ issue_number: 1234 })`.",
|
||||
parameters: IssueInfo,
|
||||
execute: execute(async ({ issue_number }) => {
|
||||
const issue = await ctx.octokit.rest.issues.get({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
issue_number,
|
||||
});
|
||||
|
||||
const data = issue.data;
|
||||
|
||||
// set issue context
|
||||
ctx.toolState.issueNumber = issue_number;
|
||||
|
||||
const hints: string[] = [];
|
||||
if (data.comments > 0) {
|
||||
hints.push("use get_issue_comments to retrieve all comments for this issue");
|
||||
}
|
||||
hints.push(
|
||||
"use get_issue_events to retrieve cross-references and commit references (relationships not reflected in current state)"
|
||||
);
|
||||
|
||||
return {
|
||||
number: data.number,
|
||||
url: data.html_url,
|
||||
title: data.title,
|
||||
body: data.body,
|
||||
state: data.state,
|
||||
locked: data.locked,
|
||||
labels: data.labels?.map((label) => (typeof label === "string" ? label : label.name)),
|
||||
assignees: data.assignees?.map((assignee) => assignee.login),
|
||||
user: data.user?.login,
|
||||
created_at: data.created_at,
|
||||
updated_at: data.updated_at,
|
||||
closed_at: data.closed_at,
|
||||
comments: data.comments,
|
||||
milestone: data.milestone?.title,
|
||||
pull_request: data.pull_request
|
||||
? {
|
||||
url: data.pull_request.url,
|
||||
html_url: data.pull_request.html_url,
|
||||
diff_url: data.pull_request.diff_url,
|
||||
patch_url: data.pull_request.patch_url,
|
||||
}
|
||||
: null,
|
||||
hints,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
import { type } from "arktype";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
export const AddLabelsParams = type({
|
||||
issue_number: type.number.describe("the issue or PR number to add labels to"),
|
||||
labels: type.string.array().atLeastLength(1).describe("array of label names to add"),
|
||||
});
|
||||
|
||||
export function AddLabelsTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "add_labels",
|
||||
description:
|
||||
"Add labels to a GitHub issue or pull request. Only use labels that already exist in the repository.",
|
||||
parameters: AddLabelsParams,
|
||||
execute: execute(async ({ issue_number, labels }) => {
|
||||
const result = await ctx.octokit.rest.issues.addLabels({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
issue_number,
|
||||
labels,
|
||||
});
|
||||
log.info(`» added labels [${labels.join(", ")}] to issue #${issue_number}`);
|
||||
|
||||
return {
|
||||
success: true,
|
||||
labels: result.data.map((label) => label.name),
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,70 +0,0 @@
|
||||
import type { StandardJSONSchemaV1, StandardSchemaV1 } from "@standard-schema/spec";
|
||||
import { Ajv } from "ajv";
|
||||
import { type } from "arktype";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
export const SetOutputParams = type({
|
||||
value: type.string.describe("the output value to expose as a GitHub Action output"),
|
||||
});
|
||||
|
||||
type JsonSchema = Record<string, unknown>;
|
||||
|
||||
function jsonSchemaToStandardSchema({
|
||||
$schema: _,
|
||||
...jsonSchema
|
||||
}: JsonSchema): StandardJSONSchemaV1<any> & StandardSchemaV1<any> {
|
||||
const ajv = new Ajv();
|
||||
const validate = ajv.compile(jsonSchema);
|
||||
|
||||
return {
|
||||
"~standard": {
|
||||
version: 1,
|
||||
vendor: "json-schema",
|
||||
jsonSchema: {
|
||||
input: () => jsonSchema,
|
||||
output: () => jsonSchema,
|
||||
},
|
||||
validate(input: unknown) {
|
||||
if (validate(input)) {
|
||||
return { value: input };
|
||||
}
|
||||
return {
|
||||
issues: (validate.errors ?? []).map((err) => ({
|
||||
message: `${err.instancePath || "/"}: ${err.message ?? "validation error"}`,
|
||||
path: err.instancePath ? err.instancePath.split("/").filter(Boolean) : [],
|
||||
})),
|
||||
};
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
function storeOutput(ctx: ToolContext, value: string) {
|
||||
ctx.toolState.output = value;
|
||||
return { success: true };
|
||||
}
|
||||
|
||||
export function SetOutputTool(ctx: ToolContext, outputSchema?: JsonSchema) {
|
||||
if (outputSchema) {
|
||||
return tool({
|
||||
name: "set_output",
|
||||
description:
|
||||
"Set the structured action output. You MUST call this tool before finishing — the output is required. Pass the output object directly as the tool arguments (no wrapping needed).",
|
||||
parameters: jsonSchemaToStandardSchema(outputSchema),
|
||||
execute: execute(async (params) => {
|
||||
return storeOutput(ctx, JSON.stringify(params));
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
return tool({
|
||||
name: "set_output",
|
||||
description:
|
||||
"Set the action output. Exposes the value as the 'result' GitHub Action output for downstream workflow steps. Do NOT use this for progress reporting — use report_progress instead.",
|
||||
parameters: SetOutputParams,
|
||||
execute: execute(async (params) => {
|
||||
return storeOutput(ctx, params.value);
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,120 +0,0 @@
|
||||
import { type } from "arktype";
|
||||
import { buildPullfrogFooter, stripExistingFooter } from "../utils/buildPullfrogFooter.ts";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import { fixDoubleEscapedString } from "../utils/fixDoubleEscapedString.ts";
|
||||
import { patchWorkflowRunFields } from "../utils/patchWorkflowRunFields.ts";
|
||||
import { $ } from "../utils/shell.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
export const PullRequest = type({
|
||||
title: type.string.describe("the title of the pull request"),
|
||||
body: type.string.describe("the body content of the pull request"),
|
||||
base: type.string.describe("the base branch to merge into (e.g., 'main')"),
|
||||
"draft?": type.boolean.describe(
|
||||
"if true, create the pull request as a draft. use when the user explicitly asks for a draft PR."
|
||||
),
|
||||
});
|
||||
|
||||
function buildPrBodyWithFooter(ctx: ToolContext, body: string): string {
|
||||
const footer = buildPullfrogFooter({
|
||||
triggeredBy: true,
|
||||
workflowRun: ctx.runId
|
||||
? { owner: ctx.repo.owner, repo: ctx.repo.name, runId: ctx.runId, jobId: ctx.jobId }
|
||||
: undefined,
|
||||
model: ctx.toolState.model,
|
||||
fallbackFrom: ctx.toolState.modelFallback?.from,
|
||||
});
|
||||
|
||||
const bodyWithoutFooter = stripExistingFooter(fixDoubleEscapedString(body));
|
||||
return `${bodyWithoutFooter}${footer}`;
|
||||
}
|
||||
|
||||
export const UpdatePullRequestBody = type({
|
||||
pull_number: type.number.describe("the pull request number to update"),
|
||||
body: type.string.describe("the new body content for the pull request"),
|
||||
});
|
||||
|
||||
export function UpdatePullRequestBodyTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "update_pull_request_body",
|
||||
description: "Update the body/description of an existing pull request",
|
||||
parameters: UpdatePullRequestBody,
|
||||
execute: execute(async (params) => {
|
||||
const bodyWithFooter = buildPrBodyWithFooter(ctx, params.body);
|
||||
|
||||
const result = await ctx.octokit.rest.pulls.update({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
pull_number: params.pull_number,
|
||||
body: bodyWithFooter,
|
||||
});
|
||||
log.info(`» updated pull request #${result.data.number}`);
|
||||
|
||||
ctx.toolState.wasUpdated = true;
|
||||
|
||||
return {
|
||||
success: true,
|
||||
number: result.data.number,
|
||||
url: result.data.html_url,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
export function CreatePullRequestTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "create_pull_request",
|
||||
description: "Create a pull request from the current branch",
|
||||
parameters: PullRequest,
|
||||
execute: execute(async (params) => {
|
||||
const currentBranch = $("git", ["rev-parse", "--abbrev-ref", "HEAD"], { log: false });
|
||||
log.debug(`Current branch: ${currentBranch}`);
|
||||
|
||||
const bodyWithFooter = buildPrBodyWithFooter(ctx, params.body);
|
||||
|
||||
const result = await ctx.octokit.rest.pulls.create({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
title: params.title,
|
||||
body: bodyWithFooter,
|
||||
head: currentBranch,
|
||||
base: params.base,
|
||||
draft: params.draft ?? false,
|
||||
});
|
||||
log.info(`» created pull request #${result.data.number} (id ${result.data.id})`);
|
||||
|
||||
// best-effort: request review from the user who triggered the workflow
|
||||
const reviewer = ctx.payload.triggerer;
|
||||
if (reviewer) {
|
||||
try {
|
||||
log.debug(`requesting review from ${reviewer} on PR #${result.data.number}`);
|
||||
await ctx.octokit.rest.pulls.requestReviewers({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
pull_number: result.data.number,
|
||||
reviewers: [reviewer],
|
||||
});
|
||||
} catch {
|
||||
log.info(`failed to request review from ${reviewer} on PR #${result.data.number}`);
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof result.data.node_id === "string" && result.data.node_id.length > 0) {
|
||||
await patchWorkflowRunFields(ctx, {
|
||||
prNodeId: result.data.node_id,
|
||||
});
|
||||
}
|
||||
|
||||
return {
|
||||
success: true,
|
||||
pullRequestId: result.data.id,
|
||||
number: result.data.number,
|
||||
url: result.data.html_url,
|
||||
title: result.data.title,
|
||||
head: result.data.head.ref,
|
||||
base: result.data.base.ref,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,75 +0,0 @@
|
||||
import { type } from "arktype";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
const CLOSING_ISSUES_QUERY = `
|
||||
query($owner: String!, $repo: String!, $number: Int!) {
|
||||
repository(owner: $owner, name: $repo) {
|
||||
pullRequest(number: $number) {
|
||||
closingIssuesReferences(first: 10) {
|
||||
nodes { number title }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
type ClosingIssuesResponse = {
|
||||
repository: {
|
||||
pullRequest: {
|
||||
closingIssuesReferences: { nodes: Array<{ number: number; title: string }> };
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
export const PullRequestInfo = type({
|
||||
pull_number: type.number.describe("The pull request number to fetch"),
|
||||
});
|
||||
|
||||
export function PullRequestInfoTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "get_pull_request",
|
||||
description:
|
||||
"Retrieve PR metadata (title, body, state, branches, author, labels, linked issues). " +
|
||||
"Example: `get_pull_request({ pull_number: 1234 })`. " +
|
||||
"To checkout a PR branch locally, use checkout_pr instead.",
|
||||
parameters: PullRequestInfo,
|
||||
execute: execute(async ({ pull_number }) => {
|
||||
// fetch REST and GraphQL in parallel
|
||||
const [restResponse, graphqlResponse] = await Promise.all([
|
||||
ctx.octokit.rest.pulls.get({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
pull_number,
|
||||
}),
|
||||
ctx.octokit.graphql<ClosingIssuesResponse>(CLOSING_ISSUES_QUERY, {
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
number: pull_number,
|
||||
}),
|
||||
]);
|
||||
|
||||
const data = restResponse.data;
|
||||
const isFork = data.head.repo?.full_name !== data.base.repo.full_name;
|
||||
const closingIssues = graphqlResponse.repository.pullRequest.closingIssuesReferences.nodes;
|
||||
|
||||
return {
|
||||
number: data.number,
|
||||
url: data.html_url,
|
||||
title: data.title,
|
||||
body: data.body,
|
||||
state: data.state,
|
||||
draft: data.draft,
|
||||
merged: data.merged,
|
||||
maintainerCanModify: data.maintainer_can_modify,
|
||||
base: data.base.ref,
|
||||
head: data.head.ref,
|
||||
isFork,
|
||||
author: data.user?.login,
|
||||
assignees: data.assignees?.map((a) => a.login),
|
||||
labels: data.labels.map((l) => l.name),
|
||||
closingIssues: closingIssues.map((i) => ({ number: i.number, title: i.title })),
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,709 +0,0 @@
|
||||
import { describe, expect, it, vi } from "vitest";
|
||||
import {
|
||||
buildCommentableMap,
|
||||
type CommentableLines,
|
||||
clearStrandedPendingReview,
|
||||
commentableLinesForFile,
|
||||
createReviewWithStrandedRecovery,
|
||||
type DroppedComment,
|
||||
duplicateReviewDecision,
|
||||
formatDroppedCommentsNote,
|
||||
MAX_DROPPED_COMMENT_LINES,
|
||||
type ReviewCommentInput,
|
||||
reviewSkipDecision,
|
||||
validateInlineComments,
|
||||
} from "./review.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
|
||||
describe("commentableLinesForFile", () => {
|
||||
it("returns empty sets for missing patches (binary or no changes)", () => {
|
||||
const result = commentableLinesForFile(undefined);
|
||||
expect(result.LEFT.size).toBe(0);
|
||||
expect(result.RIGHT.size).toBe(0);
|
||||
});
|
||||
|
||||
it("collects added lines on RIGHT, removed lines on LEFT, context on both", () => {
|
||||
const patch = ["@@ -10,3 +10,4 @@", " ctx1", "-old", "+new", "+new2", " ctx2"].join("\n");
|
||||
const { LEFT, RIGHT } = commentableLinesForFile(patch);
|
||||
expect([...LEFT].sort((a, b) => a - b)).toEqual([10, 11, 12]);
|
||||
expect([...RIGHT].sort((a, b) => a - b)).toEqual([10, 11, 12, 13]);
|
||||
});
|
||||
|
||||
it("handles multiple hunks", () => {
|
||||
const patch = ["@@ -1,2 +1,2 @@", " a", "-b", "+B", "@@ -20,1 +20,2 @@", " x", "+y"].join("\n");
|
||||
const { LEFT, RIGHT } = commentableLinesForFile(patch);
|
||||
expect(RIGHT.has(2)).toBe(true); // +B
|
||||
expect(RIGHT.has(21)).toBe(true); // +y
|
||||
expect(LEFT.has(2)).toBe(true); // -b
|
||||
expect(LEFT.has(20)).toBe(true); // context x
|
||||
expect(RIGHT.has(20)).toBe(true); // context x
|
||||
});
|
||||
|
||||
it("ignores the 'no newline at end of file' marker", () => {
|
||||
const patch = ["@@ -1,1 +1,1 @@", "-old", "\\ No newline at end of file", "+new"].join("\n");
|
||||
const { LEFT, RIGHT } = commentableLinesForFile(patch);
|
||||
expect(LEFT.has(1)).toBe(true);
|
||||
expect(RIGHT.has(1)).toBe(true);
|
||||
expect(LEFT.size).toBe(1);
|
||||
expect(RIGHT.size).toBe(1);
|
||||
});
|
||||
|
||||
it("parses hunk headers without explicit counts", () => {
|
||||
// single-line hunks can omit ",<count>"
|
||||
const patch = ["@@ -5 +5 @@", "-old", "+new"].join("\n");
|
||||
const { LEFT, RIGHT } = commentableLinesForFile(patch);
|
||||
expect(LEFT.has(5)).toBe(true);
|
||||
expect(RIGHT.has(5)).toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
function buildMap(entries: Array<[string, string]>): Map<string, CommentableLines> {
|
||||
const map = new Map<string, CommentableLines>();
|
||||
for (const [file, patch] of entries) {
|
||||
map.set(file, commentableLinesForFile(patch));
|
||||
}
|
||||
return map;
|
||||
}
|
||||
|
||||
describe("validateInlineComments", () => {
|
||||
const patch = ["@@ -10,2 +10,3 @@", " ctx", "-old", "+new", "+new2"].join("\n");
|
||||
const diffMap = buildMap([["src/foo.ts", patch]]);
|
||||
|
||||
const base = (overrides: Partial<ReviewCommentInput>): ReviewCommentInput => ({
|
||||
path: "src/foo.ts",
|
||||
line: 11,
|
||||
side: "RIGHT",
|
||||
body: "LGTM",
|
||||
...overrides,
|
||||
});
|
||||
|
||||
it("keeps comments anchored to added lines on RIGHT", () => {
|
||||
const result = validateInlineComments([base({ line: 12 })], diffMap);
|
||||
expect(result.valid).toHaveLength(1);
|
||||
expect(result.dropped).toHaveLength(0);
|
||||
});
|
||||
|
||||
it("keeps comments anchored to removed lines on LEFT", () => {
|
||||
const result = validateInlineComments([base({ line: 11, side: "LEFT" })], diffMap);
|
||||
expect(result.valid).toHaveLength(1);
|
||||
expect(result.dropped).toHaveLength(0);
|
||||
});
|
||||
|
||||
it("drops comments on files not in the diff", () => {
|
||||
const result = validateInlineComments([base({ path: "other/bar.ts" })], diffMap);
|
||||
expect(result.valid).toHaveLength(0);
|
||||
expect(result.dropped).toHaveLength(1);
|
||||
expect(result.dropped[0].reason).toContain("file not in PR diff");
|
||||
});
|
||||
|
||||
it("distinguishes binary/no-patch files from files with hunks", () => {
|
||||
// file present in the PR but with no patch data (binary file).
|
||||
const binaryMap = buildMap([
|
||||
["src/foo.ts", patch],
|
||||
["assets/logo.png", undefined as unknown as string],
|
||||
]);
|
||||
const result = validateInlineComments([base({ path: "assets/logo.png", line: 1 })], binaryMap);
|
||||
expect(result.valid).toHaveLength(0);
|
||||
expect(result.dropped).toHaveLength(1);
|
||||
expect(result.dropped[0].reason).toContain("no textual diff");
|
||||
expect(result.dropped[0].reason).not.toContain("not inside a diff hunk");
|
||||
});
|
||||
|
||||
it("drops comments on lines outside diff hunks", () => {
|
||||
const result = validateInlineComments([base({ line: 500 })], diffMap);
|
||||
expect(result.valid).toHaveLength(0);
|
||||
expect(result.dropped).toHaveLength(1);
|
||||
expect(result.dropped[0].reason).toContain("line 500");
|
||||
expect(result.dropped[0].reason).toContain("RIGHT");
|
||||
});
|
||||
|
||||
it("drops comments whose side mismatches the hunk (added line on LEFT)", () => {
|
||||
// line 12 is "+new" — only in RIGHT. Asking for it on LEFT should drop.
|
||||
const result = validateInlineComments([base({ line: 12, side: "LEFT" })], diffMap);
|
||||
expect(result.valid).toHaveLength(0);
|
||||
expect(result.dropped).toHaveLength(1);
|
||||
});
|
||||
|
||||
it("drops multi-line comments where start_line is out of range", () => {
|
||||
const result = validateInlineComments([base({ line: 12, start_line: 3 })], diffMap);
|
||||
expect(result.valid).toHaveLength(0);
|
||||
expect(result.dropped).toHaveLength(1);
|
||||
expect(result.dropped[0].reason).toContain("start_line 3");
|
||||
});
|
||||
|
||||
it("keeps multi-line comments fully inside a hunk", () => {
|
||||
const result = validateInlineComments([base({ line: 12, start_line: 11 })], diffMap);
|
||||
expect(result.valid).toHaveLength(1);
|
||||
expect(result.dropped).toHaveLength(0);
|
||||
});
|
||||
|
||||
it("drops inverted ranges (start_line > line) with a precise reason", () => {
|
||||
// both 11 and 12 anchor in the hunk, but GitHub 422s with "invalid line
|
||||
// numbers" when start_line > line. dropping locally avoids the opaque
|
||||
// remote failure and tells the agent exactly what to fix.
|
||||
const result = validateInlineComments([base({ line: 11, start_line: 12 })], diffMap);
|
||||
expect(result.valid).toHaveLength(0);
|
||||
expect(result.dropped).toHaveLength(1);
|
||||
expect(result.dropped[0].reason).toMatch(/start_line 12 is after line 11/);
|
||||
expect(result.dropped[0].reason).toMatch(/start_line <= line/);
|
||||
});
|
||||
|
||||
it("partitions a batch — valid and invalid comments survive independently", () => {
|
||||
const result = validateInlineComments(
|
||||
[base({ line: 12 }), base({ line: 9999 }), base({ path: "missing.ts" })],
|
||||
diffMap
|
||||
);
|
||||
expect(result.valid).toHaveLength(1);
|
||||
expect(result.dropped).toHaveLength(2);
|
||||
});
|
||||
|
||||
it("defaults side to RIGHT when omitted", () => {
|
||||
const result = validateInlineComments([{ path: "src/foo.ts", line: 12, body: "" }], diffMap);
|
||||
expect(result.valid).toHaveLength(1);
|
||||
});
|
||||
});
|
||||
|
||||
describe("buildCommentableMap", () => {
|
||||
it("returns the cached snapshot when toolState matches PR and checkoutSha", async () => {
|
||||
// simulates checkout_pr having pre-populated the cache. the cache pins the
|
||||
// commentable lines to checkoutSha so review-time validation matches what
|
||||
// GitHub anchors to, even if the PR is updated mid-run.
|
||||
const cached = buildMap([["src/foo.ts", "@@ -1,1 +1,2 @@\n ctx\n+new"]]);
|
||||
const paginate = vi.fn();
|
||||
const ctx = {
|
||||
octokit: { paginate, rest: { pulls: { listFiles: {} } } },
|
||||
repo: { owner: "o", name: "r" },
|
||||
toolState: {
|
||||
commentableLinesByFile: cached,
|
||||
commentableLinesPullNumber: 42,
|
||||
commentableLinesCheckoutSha: "sha1",
|
||||
checkoutSha: "sha1",
|
||||
},
|
||||
} as unknown as ToolContext;
|
||||
|
||||
const result = await buildCommentableMap(ctx, 42);
|
||||
|
||||
expect(result).toBe(cached);
|
||||
expect(paginate).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it("ignores the cached snapshot when it was built for a different PR", async () => {
|
||||
// without this guard, checkout_pr(B) followed by review(A) would validate
|
||||
// A's inline comments against B's diff — silently dropping valid anchors.
|
||||
const cached = buildMap([["src/foo.ts", "@@ -1,1 +1,2 @@\n ctx\n+new"]]);
|
||||
const freshFile = { filename: "src/bar.ts", patch: "@@ -1,1 +1,2 @@\n ctx\n+added" };
|
||||
const paginate = vi.fn().mockResolvedValue([freshFile]);
|
||||
const ctx = {
|
||||
octokit: { paginate, rest: { pulls: { listFiles: {} } } },
|
||||
repo: { owner: "o", name: "r" },
|
||||
toolState: {
|
||||
commentableLinesByFile: cached,
|
||||
commentableLinesPullNumber: 99,
|
||||
commentableLinesCheckoutSha: "sha1",
|
||||
checkoutSha: "sha1",
|
||||
},
|
||||
} as unknown as ToolContext;
|
||||
|
||||
const result = await buildCommentableMap(ctx, 42);
|
||||
|
||||
expect(paginate).toHaveBeenCalledTimes(1);
|
||||
expect(result).not.toBe(cached);
|
||||
expect(result.get("src/bar.ts")?.RIGHT.has(2)).toBe(true);
|
||||
});
|
||||
|
||||
it("ignores the cached snapshot when checkoutSha has moved since it was built", async () => {
|
||||
// simulates a second checkout_pr(42) that bumped checkoutSha but failed
|
||||
// before repopulating the cache (e.g., listFiles rate-limited). without
|
||||
// the sha guard, review would reuse the stale snapshot against the new
|
||||
// anchor and either drop valid comments or let invalid ones through.
|
||||
const cached = buildMap([["src/foo.ts", "@@ -1,1 +1,2 @@\n ctx\n+new"]]);
|
||||
const freshFile = { filename: "src/bar.ts", patch: "@@ -1,1 +1,2 @@\n ctx\n+added" };
|
||||
const paginate = vi.fn().mockResolvedValue([freshFile]);
|
||||
const ctx = {
|
||||
octokit: { paginate, rest: { pulls: { listFiles: {} } } },
|
||||
repo: { owner: "o", name: "r" },
|
||||
toolState: {
|
||||
commentableLinesByFile: cached,
|
||||
commentableLinesPullNumber: 42,
|
||||
commentableLinesCheckoutSha: "sha-old",
|
||||
checkoutSha: "sha-new",
|
||||
},
|
||||
} as unknown as ToolContext;
|
||||
|
||||
const result = await buildCommentableMap(ctx, 42);
|
||||
|
||||
expect(paginate).toHaveBeenCalledTimes(1);
|
||||
expect(result).not.toBe(cached);
|
||||
});
|
||||
|
||||
it("falls back to listFiles when no cache exists", async () => {
|
||||
const file = { filename: "src/bar.ts", patch: "@@ -1,1 +1,2 @@\n ctx\n+added" };
|
||||
const paginate = vi.fn().mockResolvedValue([file]);
|
||||
const ctx = {
|
||||
octokit: { paginate, rest: { pulls: { listFiles: {} } } },
|
||||
repo: { owner: "o", name: "r" },
|
||||
toolState: {},
|
||||
} as unknown as ToolContext;
|
||||
|
||||
const result = await buildCommentableMap(ctx, 42);
|
||||
|
||||
expect(paginate).toHaveBeenCalledTimes(1);
|
||||
expect(result.get("src/bar.ts")?.RIGHT.has(2)).toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
describe("formatDroppedCommentsNote", () => {
|
||||
it("renders single-line dropped entries with `path:line`", () => {
|
||||
const dropped: DroppedComment[] = [
|
||||
{
|
||||
path: "src/foo.ts",
|
||||
line: 42,
|
||||
side: "RIGHT",
|
||||
reason: "line 42 (RIGHT) is not inside a diff hunk",
|
||||
},
|
||||
];
|
||||
const note = formatDroppedCommentsNote(dropped);
|
||||
expect(note).toContain("**Note:** 1 inline comment(s) dropped");
|
||||
expect(note).toContain("`src/foo.ts:42` (RIGHT)");
|
||||
expect(note).toContain("line 42 (RIGHT) is not inside a diff hunk");
|
||||
});
|
||||
|
||||
it("renders multi-line dropped entries with `path:start-end`", () => {
|
||||
const dropped: DroppedComment[] = [
|
||||
{
|
||||
path: "src/bar.ts",
|
||||
line: 20,
|
||||
startLine: 15,
|
||||
side: "LEFT",
|
||||
reason: "start_line 15 (LEFT) is not inside a diff hunk",
|
||||
},
|
||||
];
|
||||
const note = formatDroppedCommentsNote(dropped);
|
||||
expect(note).toContain("`src/bar.ts:15-20` (LEFT)");
|
||||
});
|
||||
|
||||
it("falls back to single-line format when startLine equals line", () => {
|
||||
const dropped: DroppedComment[] = [
|
||||
{ path: "src/baz.ts", line: 7, startLine: 7, side: "RIGHT", reason: "file not in PR diff" },
|
||||
];
|
||||
const note = formatDroppedCommentsNote(dropped);
|
||||
expect(note).toContain("`src/baz.ts:7` (RIGHT)");
|
||||
expect(note).not.toContain("7-7");
|
||||
});
|
||||
|
||||
it("caps detail lines and reports the remainder so body stays under GitHub's size limit", () => {
|
||||
const overflow = MAX_DROPPED_COMMENT_LINES + 7;
|
||||
const dropped: DroppedComment[] = Array.from({ length: overflow }, (_, i) => ({
|
||||
path: `src/file${i}.ts`,
|
||||
line: i + 1,
|
||||
side: "RIGHT" as const,
|
||||
reason: "file not in PR diff",
|
||||
}));
|
||||
const note = formatDroppedCommentsNote(dropped);
|
||||
expect(note).toContain(`**Note:** ${overflow} inline comment(s) dropped`);
|
||||
// still reports the full count in the header
|
||||
expect(note).toContain(`${overflow} inline comment(s)`);
|
||||
// first entry shown, last entry elided
|
||||
expect(note).toContain("`src/file0.ts:1` (RIGHT)");
|
||||
expect(note).not.toContain(`src/file${overflow - 1}.ts`);
|
||||
expect(note).toContain("…and 7 more dropped comment(s) not shown");
|
||||
});
|
||||
|
||||
it("does not add a truncation line when drops fit under the cap", () => {
|
||||
const dropped: DroppedComment[] = Array.from({ length: MAX_DROPPED_COMMENT_LINES }, (_, i) => ({
|
||||
path: `src/f${i}.ts`,
|
||||
line: i + 1,
|
||||
side: "RIGHT" as const,
|
||||
reason: "file not in PR diff",
|
||||
}));
|
||||
const note = formatDroppedCommentsNote(dropped);
|
||||
expect(note).not.toContain("more dropped comment(s) not shown");
|
||||
});
|
||||
});
|
||||
|
||||
describe("clearStrandedPendingReview", () => {
|
||||
function pendingReviewError(status: number, message: string): Error {
|
||||
const err = new Error(message) as Error & { status: number };
|
||||
err.status = status;
|
||||
return err;
|
||||
}
|
||||
|
||||
const baseParams = { owner: "o", repo: "r", pull_number: 42 };
|
||||
|
||||
it("rethrows the original error when status is not 422", async () => {
|
||||
const err = pendingReviewError(500, "server exploded");
|
||||
const ctx = {
|
||||
octokit: {
|
||||
paginate: vi.fn(),
|
||||
rest: { pulls: { listReviews: {}, deletePendingReview: vi.fn() } },
|
||||
},
|
||||
} as unknown as ToolContext;
|
||||
await expect(clearStrandedPendingReview(ctx, { ...baseParams, originalErr: err })).rejects.toBe(
|
||||
err
|
||||
);
|
||||
expect(ctx.octokit.paginate).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it("rethrows the original error when 422 does not mention pending review", async () => {
|
||||
// a 422 from an unrelated validation (e.g., invalid anchor) must not
|
||||
// trigger a destructive delete of the user's own draft.
|
||||
const err = pendingReviewError(422, "pull_request_review_thread is not part of the diff");
|
||||
const deletePendingReview = vi.fn();
|
||||
const ctx = {
|
||||
octokit: {
|
||||
paginate: vi.fn(),
|
||||
rest: { pulls: { listReviews: {}, deletePendingReview } },
|
||||
},
|
||||
} as unknown as ToolContext;
|
||||
await expect(clearStrandedPendingReview(ctx, { ...baseParams, originalErr: err })).rejects.toBe(
|
||||
err
|
||||
);
|
||||
expect(ctx.octokit.paginate).not.toHaveBeenCalled();
|
||||
expect(deletePendingReview).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it("rethrows the original error when no PENDING review is found", async () => {
|
||||
// 422 claimed a pending exists but listReviews returns only SUBMITTED —
|
||||
// likely a transient GitHub inconsistency. retry won't help; surface the
|
||||
// original error so the caller sees why createReview failed.
|
||||
const err = pendingReviewError(422, "User already has a pending review for this pull request");
|
||||
const paginate = vi.fn().mockResolvedValue([{ id: 1, state: "COMMENTED" } as unknown as never]);
|
||||
const deletePendingReview = vi.fn();
|
||||
const ctx = {
|
||||
octokit: { paginate, rest: { pulls: { listReviews: {}, deletePendingReview } } },
|
||||
} as unknown as ToolContext;
|
||||
await expect(clearStrandedPendingReview(ctx, { ...baseParams, originalErr: err })).rejects.toBe(
|
||||
err
|
||||
);
|
||||
expect(paginate).toHaveBeenCalledTimes(1);
|
||||
expect(deletePendingReview).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it("deletes the leftover PENDING review and resolves on success", async () => {
|
||||
const err = pendingReviewError(422, "User already has a pending review for this pull request");
|
||||
const paginate = vi.fn().mockResolvedValue([
|
||||
{ id: 100, state: "COMMENTED" },
|
||||
{ id: 101, state: "PENDING" },
|
||||
] as unknown as never);
|
||||
const deletePendingReview = vi.fn().mockResolvedValue({ status: 204 });
|
||||
const ctx = {
|
||||
octokit: { paginate, rest: { pulls: { listReviews: {}, deletePendingReview } } },
|
||||
} as unknown as ToolContext;
|
||||
await expect(
|
||||
clearStrandedPendingReview(ctx, { ...baseParams, originalErr: err })
|
||||
).resolves.toBeUndefined();
|
||||
expect(deletePendingReview).toHaveBeenCalledWith({
|
||||
owner: "o",
|
||||
repo: "r",
|
||||
pull_number: 42,
|
||||
review_id: 101,
|
||||
});
|
||||
});
|
||||
|
||||
it("swallows a 404 from deletePendingReview (raced with another cleanup)", async () => {
|
||||
const err = pendingReviewError(422, "User already has a pending review for this pull request");
|
||||
const paginate = vi.fn().mockResolvedValue([{ id: 101, state: "PENDING" }] as unknown as never);
|
||||
const deletePendingReview = vi.fn().mockRejectedValue(pendingReviewError(404, "not found"));
|
||||
const ctx = {
|
||||
octokit: { paginate, rest: { pulls: { listReviews: {}, deletePendingReview } } },
|
||||
} as unknown as ToolContext;
|
||||
await expect(
|
||||
clearStrandedPendingReview(ctx, { ...baseParams, originalErr: err })
|
||||
).resolves.toBeUndefined();
|
||||
});
|
||||
|
||||
it("swallows a 422 from deletePendingReview (draft submitted by a concurrent caller)", async () => {
|
||||
const err = pendingReviewError(422, "User already has a pending review for this pull request");
|
||||
const paginate = vi.fn().mockResolvedValue([{ id: 101, state: "PENDING" }] as unknown as never);
|
||||
const deletePendingReview = vi
|
||||
.fn()
|
||||
.mockRejectedValue(pendingReviewError(422, "review has already been submitted"));
|
||||
const ctx = {
|
||||
octokit: { paginate, rest: { pulls: { listReviews: {}, deletePendingReview } } },
|
||||
} as unknown as ToolContext;
|
||||
await expect(
|
||||
clearStrandedPendingReview(ctx, { ...baseParams, originalErr: err })
|
||||
).resolves.toBeUndefined();
|
||||
});
|
||||
|
||||
it("rethrows the ORIGINAL 422 when listReviews fails so the real blocker isn't masked", async () => {
|
||||
// if listReviews throws a transient 502 during cleanup, we must surface
|
||||
// the pending-review 422 — not the 502 — so the caller sees the actual
|
||||
// reason createReview failed and can retry the cleanup. masking the 422
|
||||
// with a 502 previously sent agents chasing phantom server errors.
|
||||
const err = pendingReviewError(422, "User already has a pending review for this pull request");
|
||||
const paginate = vi.fn().mockRejectedValue(pendingReviewError(502, "bad gateway"));
|
||||
const deletePendingReview = vi.fn();
|
||||
const ctx = {
|
||||
octokit: { paginate, rest: { pulls: { listReviews: {}, deletePendingReview } } },
|
||||
} as unknown as ToolContext;
|
||||
await expect(clearStrandedPendingReview(ctx, { ...baseParams, originalErr: err })).rejects.toBe(
|
||||
err
|
||||
);
|
||||
expect(deletePendingReview).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it("rethrows non-404/422 errors from deletePendingReview so the real cause surfaces", async () => {
|
||||
const err = pendingReviewError(422, "User already has a pending review for this pull request");
|
||||
const paginate = vi.fn().mockResolvedValue([{ id: 101, state: "PENDING" }] as unknown as never);
|
||||
const cleanupErr = pendingReviewError(500, "internal server error");
|
||||
const deletePendingReview = vi.fn().mockRejectedValue(cleanupErr);
|
||||
const ctx = {
|
||||
octokit: { paginate, rest: { pulls: { listReviews: {}, deletePendingReview } } },
|
||||
} as unknown as ToolContext;
|
||||
await expect(clearStrandedPendingReview(ctx, { ...baseParams, originalErr: err })).rejects.toBe(
|
||||
cleanupErr
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
describe("createReviewWithStrandedRecovery", () => {
|
||||
function pendingReviewError(status: number, message: string): Error {
|
||||
const err = new Error(message) as Error & { status: number };
|
||||
err.status = status;
|
||||
return err;
|
||||
}
|
||||
|
||||
const params = {
|
||||
owner: "o",
|
||||
repo: "r",
|
||||
pull_number: 42,
|
||||
event: "COMMENT" as const,
|
||||
};
|
||||
|
||||
it("returns createReview result directly when no stranded draft exists", async () => {
|
||||
const response = { data: { id: 1, node_id: "n1" } };
|
||||
const createReview = vi.fn().mockResolvedValue(response);
|
||||
const ctx = {
|
||||
octokit: {
|
||||
paginate: vi.fn(),
|
||||
rest: { pulls: { createReview, listReviews: {}, deletePendingReview: vi.fn() } },
|
||||
},
|
||||
} as unknown as ToolContext;
|
||||
await expect(createReviewWithStrandedRecovery(ctx, params)).resolves.toBe(response);
|
||||
expect(createReview).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
it("clears a stranded PENDING draft and retries on pending-review 422 — covers the no-body path", async () => {
|
||||
// regression: the no-body review path (approve-with-no-feedback,
|
||||
// comments-only) used to call createReview directly. a prior body-path run
|
||||
// that crashed between createReview(PENDING) and submitReview would leave
|
||||
// a stranded PENDING draft; every subsequent no-body review would 422
|
||||
// with "already has a pending review" until a body-path run happened to
|
||||
// clear it. this test exercises the recovery: first createReview 422s,
|
||||
// clearStranded deletes the leftover, and the retry succeeds.
|
||||
const stranded = pendingReviewError(
|
||||
422,
|
||||
"User already has a pending review for this pull request"
|
||||
);
|
||||
const response = { data: { id: 2, node_id: "n2" } };
|
||||
const createReview = vi.fn().mockRejectedValueOnce(stranded).mockResolvedValueOnce(response);
|
||||
const paginate = vi.fn().mockResolvedValue([{ id: 77, state: "PENDING" }] as unknown as never);
|
||||
const deletePendingReview = vi.fn().mockResolvedValue({ status: 204 });
|
||||
const ctx = {
|
||||
octokit: {
|
||||
paginate,
|
||||
rest: { pulls: { createReview, listReviews: {}, deletePendingReview } },
|
||||
},
|
||||
} as unknown as ToolContext;
|
||||
await expect(createReviewWithStrandedRecovery(ctx, params)).resolves.toBe(response);
|
||||
expect(createReview).toHaveBeenCalledTimes(2);
|
||||
expect(deletePendingReview).toHaveBeenCalledWith({
|
||||
owner: "o",
|
||||
repo: "r",
|
||||
pull_number: 42,
|
||||
review_id: 77,
|
||||
});
|
||||
});
|
||||
|
||||
it("rethrows non-pending 422s without retrying — avoids masking a real validation error", async () => {
|
||||
// if the 422 is unrelated to a stranded draft (e.g. body too long, bad
|
||||
// anchor), clearStrandedPendingReview rethrows and we must not retry
|
||||
// blindly — a retry would just hit the same validation and double the
|
||||
// GitHub API traffic for nothing.
|
||||
const err = pendingReviewError(422, "body is too long");
|
||||
const createReview = vi.fn().mockRejectedValue(err);
|
||||
const paginate = vi.fn();
|
||||
const deletePendingReview = vi.fn();
|
||||
const ctx = {
|
||||
octokit: {
|
||||
paginate,
|
||||
rest: { pulls: { createReview, listReviews: {}, deletePendingReview } },
|
||||
},
|
||||
} as unknown as ToolContext;
|
||||
await expect(createReviewWithStrandedRecovery(ctx, params)).rejects.toBe(err);
|
||||
expect(createReview).toHaveBeenCalledTimes(1);
|
||||
expect(deletePendingReview).not.toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
|
||||
describe("reviewSkipDecision", () => {
|
||||
// GitHub 422s `event: "COMMENT"` reviews with no body + no comments
|
||||
// ("{\"message\":\"Unprocessable Entity\",\"errors\":[\"\"]}"). verified
|
||||
// empirically against repos/pullfrog/preview-546-run-issues-fixes/pulls/1
|
||||
// with and without commit_id set. the skip function must return a decision
|
||||
// for every shape that lands on that API call.
|
||||
|
||||
it("skips with 'no-issues' when !approved + empty body + no comments", () => {
|
||||
const decision = reviewSkipDecision({
|
||||
approved: false,
|
||||
body: "",
|
||||
hasComments: false,
|
||||
prApproveEnabled: true,
|
||||
});
|
||||
expect(decision?.kind).toBe("no-issues");
|
||||
expect(decision?.reason).toContain("nothing to post");
|
||||
});
|
||||
|
||||
it("treats null body the same as empty string", () => {
|
||||
const decision = reviewSkipDecision({
|
||||
approved: false,
|
||||
body: null,
|
||||
hasComments: false,
|
||||
prApproveEnabled: true,
|
||||
});
|
||||
expect(decision?.kind).toBe("no-issues");
|
||||
});
|
||||
|
||||
it("treats undefined body the same as empty string", () => {
|
||||
const decision = reviewSkipDecision({
|
||||
approved: false,
|
||||
body: undefined,
|
||||
hasComments: false,
|
||||
prApproveEnabled: true,
|
||||
});
|
||||
expect(decision?.kind).toBe("no-issues");
|
||||
});
|
||||
|
||||
it("skips with 'empty-downgraded-approve' when approved + !prApproveEnabled + empty", () => {
|
||||
// this is the F3 regression case — agent requests APPROVE, runtime
|
||||
// downgrades to COMMENT (prApproveEnabled off), and the empty COMMENT
|
||||
// 422s at GitHub. before this fix, the tool returned a stranded-success
|
||||
// shape that didn't map to any persisted review.
|
||||
const decision = reviewSkipDecision({
|
||||
approved: true,
|
||||
body: "",
|
||||
hasComments: false,
|
||||
prApproveEnabled: false,
|
||||
});
|
||||
expect(decision?.kind).toBe("empty-downgraded-approve");
|
||||
expect(decision?.reason).toContain("prApproveEnabled is disabled");
|
||||
});
|
||||
|
||||
it("does NOT skip legitimate bare APPROVE (approved + prApproveEnabled + empty)", () => {
|
||||
// GitHub accepts empty APPROVE reviews — the stamp itself is the content.
|
||||
// skipping here would silently drop agents' real approvals.
|
||||
const decision = reviewSkipDecision({
|
||||
approved: true,
|
||||
body: "",
|
||||
hasComments: false,
|
||||
prApproveEnabled: true,
|
||||
});
|
||||
expect(decision).toBeNull();
|
||||
});
|
||||
|
||||
it("does NOT skip when body is present (no-issues path)", () => {
|
||||
const decision = reviewSkipDecision({
|
||||
approved: false,
|
||||
body: "found some issues",
|
||||
hasComments: false,
|
||||
prApproveEnabled: true,
|
||||
});
|
||||
expect(decision).toBeNull();
|
||||
});
|
||||
|
||||
it("does NOT skip when body is present (downgrade path)", () => {
|
||||
// approved+!prApproveEnabled with a body becomes a real COMMENT review
|
||||
// (downgrade + body). GitHub accepts those; don't skip.
|
||||
const decision = reviewSkipDecision({
|
||||
approved: true,
|
||||
body: "nits follow",
|
||||
hasComments: false,
|
||||
prApproveEnabled: false,
|
||||
});
|
||||
expect(decision).toBeNull();
|
||||
});
|
||||
|
||||
it("does NOT skip when comments are present (no-issues path)", () => {
|
||||
const decision = reviewSkipDecision({
|
||||
approved: false,
|
||||
body: "",
|
||||
hasComments: true,
|
||||
prApproveEnabled: true,
|
||||
});
|
||||
expect(decision).toBeNull();
|
||||
});
|
||||
|
||||
it("does NOT skip when comments are present (downgrade path)", () => {
|
||||
const decision = reviewSkipDecision({
|
||||
approved: true,
|
||||
body: "",
|
||||
hasComments: true,
|
||||
prApproveEnabled: false,
|
||||
});
|
||||
expect(decision).toBeNull();
|
||||
});
|
||||
});
|
||||
|
||||
describe("duplicateReviewDecision", () => {
|
||||
// regression: colinhacks/zod#5897 had two reviews submitted from the same
|
||||
// workflow run 8 seconds apart — a substantive review followed by an empty
|
||||
// "No new issues found." follow-up. the agent re-classified the first
|
||||
// review's non-blocking observations as "no actionable issues" and
|
||||
// submitted the canonical body per modes.ts. this guard makes the second
|
||||
// call a no-op without burning a GitHub API call or polluting the PR.
|
||||
|
||||
it("allows the first submission when no prior review exists", () => {
|
||||
const decision = duplicateReviewDecision({
|
||||
existing: undefined,
|
||||
currentCheckoutSha: "sha1",
|
||||
});
|
||||
expect(decision).toBeNull();
|
||||
});
|
||||
|
||||
it("blocks a second submission when checkoutSha matches the prior reviewedSha", () => {
|
||||
// exact reproduction of the zod#5897 shape: same session, same checked-out
|
||||
// SHA, second create_pull_request_review call.
|
||||
const decision = duplicateReviewDecision({
|
||||
existing: { id: 100, reviewedSha: "sha1" },
|
||||
currentCheckoutSha: "sha1",
|
||||
});
|
||||
expect(decision?.kind).toBe("already-submitted");
|
||||
expect(decision?.reviewId).toBe(100);
|
||||
expect(decision?.reason).toContain("already submitted");
|
||||
expect(decision?.reason).toContain("checkout_pr");
|
||||
});
|
||||
|
||||
it("allows a follow-up when checkoutSha advanced past the prior reviewedSha", () => {
|
||||
// the new-commits-mid-review path advances toolState.checkoutSha to the
|
||||
// new HEAD before returning, and the agent is told to call checkout_pr
|
||||
// again — both paths leave checkoutSha != reviewedSha. those are real
|
||||
// follow-up reviews and must go through.
|
||||
const decision = duplicateReviewDecision({
|
||||
existing: { id: 100, reviewedSha: "sha-old" },
|
||||
currentCheckoutSha: "sha-new",
|
||||
});
|
||||
expect(decision).toBeNull();
|
||||
});
|
||||
|
||||
it("blocks when checkoutSha is missing — cannot prove the SHA moved", () => {
|
||||
// if the agent never called checkout_pr, we have no anchor to compare
|
||||
// against. assume duplicate rather than letting a second review through
|
||||
// — the prior review still satisfies the agent's intent.
|
||||
const decision = duplicateReviewDecision({
|
||||
existing: { id: 100, reviewedSha: "sha1" },
|
||||
currentCheckoutSha: undefined,
|
||||
});
|
||||
expect(decision?.kind).toBe("already-submitted");
|
||||
});
|
||||
|
||||
it("blocks when prior reviewedSha is missing — cannot prove the SHA moved", () => {
|
||||
// belt-and-suspenders: if for any reason the prior review didn't capture
|
||||
// a reviewedSha, treat the second call as a duplicate to be safe.
|
||||
const decision = duplicateReviewDecision({
|
||||
existing: { id: 100, reviewedSha: undefined },
|
||||
currentCheckoutSha: "sha1",
|
||||
});
|
||||
expect(decision?.kind).toBe("already-submitted");
|
||||
});
|
||||
});
|
||||
-919
@@ -1,919 +0,0 @@
|
||||
import type { RestEndpointMethodTypes } from "@octokit/rest";
|
||||
import { type } from "arktype";
|
||||
import { formatMcpToolRef } from "../external.ts";
|
||||
import type { CommentableLines } from "../toolState.ts";
|
||||
import { getApiUrl } from "../utils/apiUrl.ts";
|
||||
import { buildPullfrogFooter } from "../utils/buildPullfrogFooter.ts";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import {
|
||||
countLinesInRanges,
|
||||
getDiffCoverageBreakdown,
|
||||
renderDiffCoverageBreakdown,
|
||||
} from "../utils/diffCoverage.ts";
|
||||
import { fixDoubleEscapedString } from "../utils/fixDoubleEscapedString.ts";
|
||||
import { patchWorkflowRunFields } from "../utils/patchWorkflowRunFields.ts";
|
||||
import { retry } from "../utils/retry.ts";
|
||||
import { deleteProgressComment } from "./comment.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
export type { CommentableLines };
|
||||
|
||||
function getHttpStatus(err: unknown): number | undefined {
|
||||
if (typeof err !== "object" || err === null) return undefined;
|
||||
const status = (err as Record<string, unknown>).status;
|
||||
return typeof status === "number" ? status : undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* detect GitHub's generic server-side 422 ("An internal error occurred,
|
||||
* please try again.") that sometimes fires on `POST /pulls/{n}/reviews`.
|
||||
*
|
||||
* the body is stable across occurrences and distinct from every other 422
|
||||
* cause we care about (anchor validation, body length, malformed suggestion
|
||||
* blocks) — those all cite the specific problem. treating this as a
|
||||
* transient server error unlocks bounded in-tool retry instead of surfacing
|
||||
* it to the agent with the generic "likely causes (1)(2)(3)" prompt, which
|
||||
* induces whack-a-mole comment dropping on content that was never the issue.
|
||||
*/
|
||||
export function isTransientReviewError(err: unknown): boolean {
|
||||
if (getHttpStatus(err) !== 422) return false;
|
||||
const msg = err instanceof Error ? err.message : String(err);
|
||||
return /internal error occurred, please try again/i.test(msg);
|
||||
}
|
||||
|
||||
// backoff schedule for transient GitHub 422 "internal error" responses on the
|
||||
// reviews endpoint. 3 attempts total (initial + 2 retries) with 1s/3s delays
|
||||
// — most transient GH errors clear within a few seconds, and longer delays
|
||||
// push review submission past agent-perceived responsiveness.
|
||||
export const TRANSIENT_REVIEW_RETRY_DELAYS_MS = [1_000, 3_000];
|
||||
|
||||
type PullFile = RestEndpointMethodTypes["pulls"]["listFiles"]["response"]["data"][number];
|
||||
|
||||
/**
|
||||
* parse a PR file's patch to determine which line numbers on each side are
|
||||
* valid anchors for inline comments. GitHub only accepts comments on lines
|
||||
* inside a diff hunk: added/context lines on RIGHT, removed/context lines
|
||||
* on LEFT.
|
||||
*/
|
||||
export function commentableLinesForFile(patch: string | undefined): CommentableLines {
|
||||
const right = new Set<number>();
|
||||
const left = new Set<number>();
|
||||
if (!patch) return { RIGHT: right, LEFT: left };
|
||||
|
||||
let oldLine = 0;
|
||||
let newLine = 0;
|
||||
for (const line of patch.split("\n")) {
|
||||
const hunk = line.match(/^@@ -(\d+)(?:,\d+)? \+(\d+)(?:,\d+)? @@/);
|
||||
if (hunk) {
|
||||
oldLine = parseInt(hunk[1], 10);
|
||||
newLine = parseInt(hunk[2], 10);
|
||||
continue;
|
||||
}
|
||||
const changeType = line[0];
|
||||
if (changeType === "+") {
|
||||
right.add(newLine);
|
||||
newLine++;
|
||||
} else if (changeType === "-") {
|
||||
left.add(oldLine);
|
||||
oldLine++;
|
||||
} else if (changeType === " ") {
|
||||
right.add(newLine);
|
||||
left.add(oldLine);
|
||||
newLine++;
|
||||
oldLine++;
|
||||
}
|
||||
// "\" (no newline marker) and anything else: skip, don't advance counters
|
||||
}
|
||||
return { RIGHT: right, LEFT: left };
|
||||
}
|
||||
|
||||
export async function buildCommentableMap(
|
||||
ctx: ToolContext,
|
||||
pullNumber: number
|
||||
): Promise<Map<string, CommentableLines>> {
|
||||
// prefer the snapshot captured by checkout_pr — it matches the diff GitHub
|
||||
// will anchor to (commit_id=checkoutSha). refetching via listFiles at review
|
||||
// time gives the LATEST PR state, which can drift from what the agent
|
||||
// actually reviewed if the PR was updated mid-run.
|
||||
//
|
||||
// only reuse the cache if it was built for THIS pull request AND for the
|
||||
// sha we will anchor the review to. a second checkout_pr that bumps
|
||||
// checkoutSha but fails before repopulating the cache (e.g., listFiles 5xx)
|
||||
// would otherwise leave a stale snapshot keyed to the right PR number but
|
||||
// the wrong sha, silently mis-validating comments.
|
||||
const cached = ctx.toolState.commentableLinesByFile;
|
||||
const cachedFor = ctx.toolState.commentableLinesPullNumber;
|
||||
const cachedSha = ctx.toolState.commentableLinesCheckoutSha;
|
||||
const currentSha = ctx.toolState.checkoutSha;
|
||||
if (cached && cachedFor === pullNumber && cachedSha && cachedSha === currentSha) return cached;
|
||||
|
||||
const files: PullFile[] = await ctx.octokit.paginate(ctx.octokit.rest.pulls.listFiles, {
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
pull_number: pullNumber,
|
||||
per_page: 100,
|
||||
});
|
||||
const map = new Map<string, CommentableLines>();
|
||||
for (const file of files) {
|
||||
map.set(file.filename, commentableLinesForFile(file.patch));
|
||||
}
|
||||
return map;
|
||||
}
|
||||
|
||||
export type ReviewCommentInput = NonNullable<
|
||||
RestEndpointMethodTypes["pulls"]["createReview"]["parameters"]["comments"]
|
||||
>[number];
|
||||
|
||||
export interface DroppedComment {
|
||||
path: string;
|
||||
line: number;
|
||||
startLine?: number | undefined;
|
||||
side: "LEFT" | "RIGHT";
|
||||
reason: string;
|
||||
}
|
||||
|
||||
export function validateInlineComments(
|
||||
comments: ReviewCommentInput[],
|
||||
map: Map<string, CommentableLines>
|
||||
): { valid: ReviewCommentInput[]; dropped: DroppedComment[] } {
|
||||
const valid: ReviewCommentInput[] = [];
|
||||
const dropped: DroppedComment[] = [];
|
||||
for (const c of comments) {
|
||||
const side = c.side === "LEFT" ? "LEFT" : "RIGHT";
|
||||
const line = c.line ?? 0;
|
||||
const startLine = c.start_line ?? line;
|
||||
const lines = map.get(c.path);
|
||||
const record = (reason: string): void => {
|
||||
const entry: DroppedComment = { path: c.path, line, side, reason };
|
||||
if (c.start_line != null) entry.startLine = c.start_line;
|
||||
dropped.push(entry);
|
||||
};
|
||||
if (!lines) {
|
||||
record(`file not in PR diff`);
|
||||
continue;
|
||||
}
|
||||
if (lines.LEFT.size === 0 && lines.RIGHT.size === 0) {
|
||||
// file is in the PR but has no textual patch — usually binary, a
|
||||
// pure rename with no content change, or a mode-only change. GitHub
|
||||
// won't accept inline comments on these regardless of line number.
|
||||
record(`file has no textual diff (binary, pure rename, or mode change)`);
|
||||
continue;
|
||||
}
|
||||
const anchors = lines[side];
|
||||
if (!anchors.has(line)) {
|
||||
record(`line ${line} (${side}) is not inside a diff hunk`);
|
||||
continue;
|
||||
}
|
||||
// GitHub requires start_line <= line. both anchors could be valid but
|
||||
// inverted (e.g. start=44, line=42) — GitHub 422s with "invalid line
|
||||
// numbers". catch it here so the agent sees a precise reason.
|
||||
if (c.start_line != null && c.start_line > line) {
|
||||
record(
|
||||
`start_line ${c.start_line} is after line ${line} — ranges must satisfy start_line <= line`
|
||||
);
|
||||
continue;
|
||||
}
|
||||
if (startLine !== line && !anchors.has(startLine)) {
|
||||
record(`start_line ${startLine} (${side}) is not inside a diff hunk`);
|
||||
continue;
|
||||
}
|
||||
valid.push(c);
|
||||
}
|
||||
return { valid, dropped };
|
||||
}
|
||||
|
||||
// cap the detail list so a pathological run (agent emits hundreds of invalid
|
||||
// comments on a huge PR) doesn't push the review body past GitHub's ~65KB
|
||||
// limit and fail the whole submission with a body-too-long 422.
|
||||
export const MAX_DROPPED_COMMENT_LINES = 50;
|
||||
|
||||
/**
|
||||
* reason a create_pull_request_review call should be skipped without hitting
|
||||
* GitHub. returned by reviewSkipDecision; null means submit normally.
|
||||
*/
|
||||
export type ReviewSkipDecision =
|
||||
| { kind: "no-issues"; reason: string }
|
||||
| { kind: "empty-downgraded-approve"; reason: string };
|
||||
|
||||
/**
|
||||
* decision returned by duplicateReviewDecision when a session has already
|
||||
* submitted a review and the current call would be a duplicate.
|
||||
*/
|
||||
export type DuplicateReviewDecision = {
|
||||
kind: "already-submitted";
|
||||
reviewId: number;
|
||||
reason: string;
|
||||
};
|
||||
|
||||
/**
|
||||
* decide whether a second create_pull_request_review call in the same session
|
||||
* is a duplicate of an earlier submission.
|
||||
*
|
||||
* the agent is instructed to call create_pull_request_review exactly once per
|
||||
* Review-mode session (see action/modes.ts), but in practice it sometimes
|
||||
* submits twice — once with substantive feedback, then again with the
|
||||
* canonical "No new issues found." body when the prompt's branch logic
|
||||
* re-classifies non-blocking observations. the second submission is
|
||||
* always redundant: the first review is the record, and the duplicate just
|
||||
* adds noise to the PR.
|
||||
*
|
||||
* legitimate follow-up reviews after new commits ARE allowed: the
|
||||
* new-commits-mid-review path advances toolState.checkoutSha past the
|
||||
* previously reviewed sha, and a subsequent checkout_pr advances it again.
|
||||
* any call where checkoutSha has moved past the prior reviewedSha is a real
|
||||
* follow-up and goes through. anything else — same sha, or no checkoutSha
|
||||
* to compare against — is a duplicate.
|
||||
*/
|
||||
export function duplicateReviewDecision(params: {
|
||||
existing: { id: number; reviewedSha: string | undefined } | undefined;
|
||||
currentCheckoutSha: string | undefined;
|
||||
}): DuplicateReviewDecision | null {
|
||||
const existing = params.existing;
|
||||
if (!existing) return null;
|
||||
// checkoutSha advanced past the prior reviewed sha — legitimate follow-up
|
||||
// (e.g. after checkout_pr re-fetched new commits the agent was nudged to
|
||||
// pull). only treat as a duplicate when we cannot prove the SHA moved.
|
||||
if (
|
||||
params.currentCheckoutSha &&
|
||||
existing.reviewedSha &&
|
||||
params.currentCheckoutSha !== existing.reviewedSha
|
||||
) {
|
||||
return null;
|
||||
}
|
||||
return {
|
||||
kind: "already-submitted",
|
||||
reviewId: existing.id,
|
||||
reason: `review ${existing.id} was already submitted in this session; ignoring duplicate call (call \`checkout_pr\` again first if new commits were pushed)`,
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* decide whether to skip a review submission before any network call.
|
||||
*
|
||||
* GitHub rejects `event: "COMMENT"` reviews with no body and no inline comments
|
||||
* with HTTP 422 "Unprocessable Entity". two paths produce that shape:
|
||||
*
|
||||
* 1. `!approved` + empty body/comments: agent's "no issues found" result.
|
||||
* skipping preserves the agent's intent (nothing to post is a fine
|
||||
* outcome for a review run) without a spurious 422.
|
||||
* 2. `approved` + `!prApproveEnabled` + empty body/comments: the runtime
|
||||
* downgrades APPROVE to COMMENT when prApproveEnabled is off, and the
|
||||
* resulting empty-COMMENT is exactly the shape GitHub 422s. skipping
|
||||
* here surfaces the cause (downgrade + nothing to say) instead of an
|
||||
* opaque 422 the agent can't recover from.
|
||||
*
|
||||
* legitimate bare approvals (`approved` + `prApproveEnabled`, no body/comments)
|
||||
* are never skipped — GitHub accepts empty APPROVE reviews and the approval
|
||||
* stamp itself is the review's content.
|
||||
*/
|
||||
export function reviewSkipDecision(params: {
|
||||
approved: boolean;
|
||||
body: string | null | undefined;
|
||||
hasComments: boolean;
|
||||
prApproveEnabled: boolean;
|
||||
}): ReviewSkipDecision | null {
|
||||
if (params.body || params.hasComments) return null;
|
||||
if (!params.approved) {
|
||||
return {
|
||||
kind: "no-issues",
|
||||
reason: "no issues found — nothing to post",
|
||||
};
|
||||
}
|
||||
if (!params.prApproveEnabled) {
|
||||
return {
|
||||
kind: "empty-downgraded-approve",
|
||||
reason:
|
||||
"approve requested but prApproveEnabled is disabled; no feedback body or comments to post as a COMMENT review instead",
|
||||
};
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
export function formatDroppedCommentsNote(dropped: DroppedComment[]): string {
|
||||
const renderEntry = (d: DroppedComment): string => {
|
||||
const range =
|
||||
d.startLine != null && d.startLine !== d.line ? `${d.startLine}-${d.line}` : `${d.line}`;
|
||||
return `- \`${d.path}:${range}\` (${d.side}) — ${d.reason}`;
|
||||
};
|
||||
const shown = dropped.slice(0, MAX_DROPPED_COMMENT_LINES).map(renderEntry);
|
||||
const remainder = dropped.length - shown.length;
|
||||
if (remainder > 0) shown.push(`- …and ${remainder} more dropped comment(s) not shown`);
|
||||
return (
|
||||
`\n\n---\n\n` +
|
||||
`**Note:** ${dropped.length} inline comment(s) dropped because they did not anchor to lines inside the PR diff:\n` +
|
||||
shown.join("\n")
|
||||
);
|
||||
}
|
||||
|
||||
// one-shot review tool
|
||||
export const CreatePullRequestReview = type({
|
||||
pull_number: type.number.describe("The pull request number to review"),
|
||||
body: type.string
|
||||
.describe(
|
||||
"1-2 sentence high-level summary with urgency level, critical callouts, and feedback about code outside the diff. Specific feedback on diff lines goes in 'comments' array."
|
||||
)
|
||||
.optional(),
|
||||
approved: type.boolean
|
||||
.describe(
|
||||
"Set to true to submit as an approval. Use for `> ✅ No new issues found.` reviews where the PR is mergeable as-is and nothing in the body warrants code changes — approving also suppresses the Fix-button footer affordance so users don't dispatch a fix run on non-actionable feedback. Reserve approved: false for `> ℹ️ ...` (minor suggestions inline), `> [!IMPORTANT]` (recommended changes), and `> [!CAUTION]` (critical) reviews. Defaults to false (comment-only review). Rejections are not supported."
|
||||
)
|
||||
.optional(),
|
||||
commit_id: type.string
|
||||
.describe(
|
||||
"Optional SHA of the commit being reviewed. Defaults to latest. Must be the FULL 40-character SHA — abbreviated SHAs are rejected by GitHub with `422 Unprocessable Entity`. The PR-synchronize event payload's `head_sha` is already full-length."
|
||||
)
|
||||
.optional(),
|
||||
comments: type({
|
||||
path: type.string.describe(
|
||||
"The file path to comment on (relative to repo root). Must be a file that appears in the PR diff."
|
||||
),
|
||||
line: type.number.describe(
|
||||
"Line number to comment on. For multi-line ranges, this is the end line. Use NEW column from diff format. Must sit inside a `@@` hunk in the PR diff — anchors on context-only or untouched lines are dropped silently (the rest of the review still posts; dropped entries are reported under `droppedComments` in the response)."
|
||||
),
|
||||
side: type
|
||||
.enumerated("LEFT", "RIGHT")
|
||||
.describe(
|
||||
"Side of the diff: LEFT (old code, lines starting with -) or RIGHT (new code, lines starting with + or unchanged). Defaults to RIGHT."
|
||||
)
|
||||
.optional(),
|
||||
body: type.string
|
||||
.describe("Explanatory comment text (optional if suggestion is provided)")
|
||||
.optional(),
|
||||
suggestion: type.string
|
||||
.describe(
|
||||
"Full replacement code for the line range [start_line, line]. MUST preserve the exact indentation of the original code."
|
||||
)
|
||||
.optional(),
|
||||
start_line: type.number
|
||||
.describe(
|
||||
"Start line for multi-line comment ranges. Omit for single-line comments. The range [start_line, line] defines which lines a suggestion replaces. Both `start_line` and `line` must sit inside the same `@@` hunk — a `start_line` outside the hunk causes the whole comment to be dropped even when `line` is valid. If you need to comment on context just above/below a hunk, shrink the range to a single line that is provably modified."
|
||||
)
|
||||
.optional(),
|
||||
})
|
||||
.array()
|
||||
.describe(
|
||||
"Inline comments on lines within diff hunks. Feedback about code outside the diff goes in 'body' instead."
|
||||
)
|
||||
.optional(),
|
||||
});
|
||||
|
||||
export function CreatePullRequestReviewTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "create_pull_request_review",
|
||||
description:
|
||||
"Submit a review for an existing pull request. " +
|
||||
'Example: `create_pull_request_review({ pull_number: 1234, body: "LGTM", approved: true, comments: [{ path: "src/api.ts", line: 42, body: "nit: rename" }] })`. ' +
|
||||
"Each call creates a permanent, visible review on the PR — NEVER submit test or diagnostic reviews. " +
|
||||
"Reviews with no body AND no comments are silently skipped (nothing to post). " +
|
||||
"IMPORTANT: 95%+ of feedback should be in 'comments' array with file paths and line numbers. " +
|
||||
"Only use 'body' for a 1-2 sentence summary with urgency and critical callouts. " +
|
||||
"Use 'suggestion' to propose replacement code - MUST preserve exact indentation of original code. " +
|
||||
"The first submission may error once with a one-time diff-coverage nudge listing unread TOC regions — retry with the same arguments and the pre-flight will not block again. " +
|
||||
"Example replacing lines 42-44 (3 lines) with 5 lines: " +
|
||||
`{ path: 'src/api.ts', start_line: 42, line: 44, suggestion: ' const result = await fetch(url);\\n if (!result.ok) {\\n log.error(result.status);\\n throw new Error("request failed");\\n }' }` +
|
||||
" CONSTRAINT: Inline comments can ONLY target files and lines that appear in the PR diff." +
|
||||
" Comments anchored outside a diff hunk are dropped automatically (with a note appended to the review body) — the rest of the review still posts.",
|
||||
parameters: CreatePullRequestReview,
|
||||
execute: execute(async ({ pull_number, body, approved, commit_id, comments = [] }) => {
|
||||
if (body) body = fixDoubleEscapedString(body);
|
||||
|
||||
// set issue context (PRs are issues)
|
||||
ctx.toolState.issueNumber = pull_number;
|
||||
|
||||
// guard against duplicate review submissions in the same session.
|
||||
// see duplicateReviewDecision for the rationale — short version: the
|
||||
// agent occasionally submits twice (substantive review + canonical
|
||||
// "no issues found" follow-up) and the second is always redundant.
|
||||
// legit re-reviews after new commits are still allowed because
|
||||
// checkout_pr advances toolState.checkoutSha past the prior reviewedSha.
|
||||
const dup = duplicateReviewDecision({
|
||||
existing: ctx.toolState.review,
|
||||
currentCheckoutSha: ctx.toolState.checkoutSha,
|
||||
});
|
||||
if (dup) {
|
||||
log.info(`skipping duplicate review submission: ${dup.reason}`);
|
||||
return {
|
||||
success: true,
|
||||
skipped: true,
|
||||
reason: dup.reason,
|
||||
reviewId: dup.reviewId,
|
||||
};
|
||||
}
|
||||
|
||||
// skip empty COMMENT reviews before any GitHub call. see reviewSkipDecision
|
||||
// for the cases (no-issues vs empty-downgraded-approve) and why GitHub 422s
|
||||
// the shape we'd otherwise POST.
|
||||
const skip = reviewSkipDecision({
|
||||
approved: approved ?? false,
|
||||
body,
|
||||
hasComments: comments.length > 0,
|
||||
prApproveEnabled: ctx.prApproveEnabled,
|
||||
});
|
||||
if (skip) {
|
||||
log.info(`skipping review submission: ${skip.reason}`);
|
||||
return { success: true, skipped: true, reason: skip.reason };
|
||||
}
|
||||
|
||||
// enforce prApproveEnabled: downgrade APPROVE to COMMENT if disabled.
|
||||
// by this point we already returned if the downgrade would produce an
|
||||
// empty COMMENT (the skip above), so every downgrade that reaches here
|
||||
// carries either a body or inline comments.
|
||||
let event: "APPROVE" | "COMMENT" = approved ? "APPROVE" : "COMMENT";
|
||||
if (event === "APPROVE" && !ctx.prApproveEnabled) {
|
||||
log.info("prApproveEnabled is disabled — downgrading APPROVE to COMMENT");
|
||||
event = "COMMENT";
|
||||
}
|
||||
|
||||
const params: RestEndpointMethodTypes["pulls"]["createReview"]["parameters"] = {
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
pull_number,
|
||||
event,
|
||||
};
|
||||
let latestHeadSha: string | undefined;
|
||||
if (commit_id) {
|
||||
params.commit_id = commit_id;
|
||||
} else {
|
||||
const pr = await ctx.octokit.rest.pulls.get({
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
pull_number,
|
||||
});
|
||||
latestHeadSha = pr.data.head.sha;
|
||||
// anchor to checkout sha so line numbers match the diff the agent analyzed
|
||||
params.commit_id = ctx.toolState.checkoutSha ?? latestHeadSha;
|
||||
if (ctx.toolState.checkoutSha && latestHeadSha !== ctx.toolState.checkoutSha) {
|
||||
log.info(
|
||||
`anchoring review to checkout ${ctx.toolState.checkoutSha.slice(0, 7)} ` +
|
||||
`(HEAD is now ${latestHeadSha.slice(0, 7)})`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
runDiffCoveragePreflight({ ctx });
|
||||
|
||||
type ReviewComment = NonNullable<typeof params.comments>[number];
|
||||
const reviewComments = comments.map((comment) => {
|
||||
let commentBody = fixDoubleEscapedString(comment.body || "");
|
||||
if (comment.suggestion !== undefined) {
|
||||
const suggestionBlock = "```suggestion\n" + comment.suggestion + "\n```";
|
||||
commentBody = commentBody ? commentBody + "\n\n" + suggestionBlock : suggestionBlock;
|
||||
}
|
||||
const side = comment.side || "RIGHT";
|
||||
const reviewComment: ReviewComment = {
|
||||
path: comment.path,
|
||||
line: comment.line,
|
||||
body: commentBody,
|
||||
side,
|
||||
};
|
||||
if (comment.start_line != null && comment.start_line !== comment.line) {
|
||||
reviewComment.start_line = comment.start_line;
|
||||
reviewComment.start_side = side;
|
||||
}
|
||||
return reviewComment;
|
||||
});
|
||||
|
||||
// pre-validate inline comments against the current PR diff. drop any
|
||||
// comment that does not anchor to a line inside a hunk, rather than
|
||||
// letting GitHub 422 and sink the whole review.
|
||||
let droppedComments: DroppedComment[] = [];
|
||||
if (reviewComments.length > 0) {
|
||||
const commentableMap = await buildCommentableMap(ctx, pull_number);
|
||||
const validation = validateInlineComments(reviewComments, commentableMap);
|
||||
droppedComments = validation.dropped;
|
||||
if (droppedComments.length > 0) {
|
||||
log.info(
|
||||
`dropping ${droppedComments.length}/${reviewComments.length} inline comment(s) that do not anchor to PR diff lines`
|
||||
);
|
||||
}
|
||||
// always reassign so all-dropped reviews leave params.comments empty
|
||||
// instead of carrying the original invalid set (which would 422).
|
||||
params.comments = validation.valid;
|
||||
}
|
||||
|
||||
// if we dropped comments, surface them in the review body so the
|
||||
// author (and the agent, on retry) can see what was skipped.
|
||||
if (droppedComments.length > 0) {
|
||||
const note = formatDroppedCommentsNote(droppedComments);
|
||||
body = body ? body + note : note.replace(/^\n\n/, "");
|
||||
}
|
||||
|
||||
// after dropping, an empty non-approve review has nothing left to post.
|
||||
if (!approved && !body && !params.comments?.length) {
|
||||
log.info("review has no body and all inline comments were dropped — skipping submission");
|
||||
return {
|
||||
success: true,
|
||||
skipped: true,
|
||||
reason: "all inline comments were invalid — nothing to post",
|
||||
droppedComments,
|
||||
};
|
||||
}
|
||||
|
||||
// no body → single-step createReview (no footer needed)
|
||||
// has body → pending + submit so we can build footer with Fix links using review ID
|
||||
//
|
||||
// wrap the submission in `retry` so GitHub's transient 422 "internal
|
||||
// error" body (distinct from anchor / body-length / suggestion 422s,
|
||||
// which all cite the specific cause) clears on its own instead of
|
||||
// surfacing through the generic 422 handler — that framing sent the
|
||||
// agent dropping valid inline comments chasing a non-issue.
|
||||
// `shouldRetry` scopes retries to the transient body only, so real
|
||||
// validation 422s still fail fast.
|
||||
let result;
|
||||
try {
|
||||
result = await retry(
|
||||
() =>
|
||||
body
|
||||
? createAndSubmitWithFooter(ctx, params, {
|
||||
body,
|
||||
approved: approved ?? false,
|
||||
hasComments: (params.comments?.length ?? 0) > 0,
|
||||
})
|
||||
: createReviewWithStrandedRecovery(ctx, params),
|
||||
{
|
||||
delaysMs: TRANSIENT_REVIEW_RETRY_DELAYS_MS,
|
||||
shouldRetry: isTransientReviewError,
|
||||
label: "review submission",
|
||||
}
|
||||
);
|
||||
} catch (err: unknown) {
|
||||
// GitHub's transient 422 "internal error" is distinct from anchor /
|
||||
// body-length / suggestion validation failures — framing it with the
|
||||
// generic "likely causes (1)(2)(3)" prompt sends the agent dropping
|
||||
// comments that were never the problem. after bounded in-tool retry
|
||||
// we surface a dedicated message that tells the agent to wait-and-
|
||||
// retry or fall back to a body-only review.
|
||||
if (isTransientReviewError(err)) {
|
||||
const rawMsg = err instanceof Error ? err.message : String(err);
|
||||
throw new Error(
|
||||
`GitHub returned a transient 422 "internal error" on the reviews endpoint after ${TRANSIENT_REVIEW_RETRY_DELAYS_MS.length + 1} attempts. ` +
|
||||
`This is a GitHub-side issue, not a problem with your review content. ` +
|
||||
`Do NOT modify or drop inline comments — their content is not the cause. ` +
|
||||
`Wait ~30 seconds and call this tool once more with the SAME arguments. ` +
|
||||
`If it still fails, submit a body-only review (move all inline feedback into \`body\` as text) so nothing is lost. ` +
|
||||
`GitHub said: ${rawMsg}`,
|
||||
{ cause: err }
|
||||
);
|
||||
}
|
||||
if (getHttpStatus(err) !== 422 || !params.comments?.length) throw err;
|
||||
|
||||
const details = params.comments.map((c) => {
|
||||
const line = c.line ?? 0;
|
||||
const startLine = c.start_line ?? line;
|
||||
const range = startLine !== line ? `${startLine}-${line}` : `${line}`;
|
||||
return `${c.path}:${range} (${c.side ?? "RIGHT"})`;
|
||||
});
|
||||
// a 422 on createReview-with-comments is USUALLY about comment
|
||||
// anchors, but could also be about body length, invalid suggestion
|
||||
// blocks, etc. include the verbatim GitHub error so the agent can
|
||||
// diagnose non-anchor 422s without us having to enumerate every
|
||||
// possible GitHub validation rule.
|
||||
const rawMsg = err instanceof Error ? err.message : String(err);
|
||||
const checkoutRef = formatMcpToolRef(ctx.agentId, "checkout_pr");
|
||||
throw new Error(
|
||||
`GitHub rejected the review with 422 even after pre-validation. ` +
|
||||
`Likely causes (check "GitHub said" below to narrow down): ` +
|
||||
`(1) new commits pushed after pre-validation — call \`${checkoutRef}\` again to refresh the diff snapshot, then resubmit; ` +
|
||||
`(2) the review body exceeded GitHub's ~65KB limit — shorten it and retry; ` +
|
||||
`(3) a \`suggestion\` block is malformed (missing backticks, extra backticks, or wrong indentation) — inspect the affected comments below. ` +
|
||||
`If none apply, move the failing comments into the review body as text so the rest still posts. ` +
|
||||
`Affected comments: ${details.join(", ")}. ` +
|
||||
`GitHub said: ${rawMsg}`,
|
||||
{ cause: err }
|
||||
);
|
||||
}
|
||||
log.debug(`createReview response: ${JSON.stringify(result.data)}`);
|
||||
if (!result.data.id) {
|
||||
throw new Error(`createReview returned invalid data: ${JSON.stringify(result.data)}`);
|
||||
}
|
||||
const reviewId = result.data.id;
|
||||
const reviewNodeId = result.data.node_id;
|
||||
log.info(`» created review ${reviewId} on pull request #${pull_number}`);
|
||||
|
||||
// reviewedSha = what the agent actually reviewed (checkout SHA), not the
|
||||
// submission anchor (current HEAD). this ensures postReviewCleanup dispatches
|
||||
// a follow-up if the agent doesn't handle new commits inline.
|
||||
const actuallyReviewedSha = ctx.toolState.checkoutSha ?? params.commit_id;
|
||||
ctx.toolState.review = {
|
||||
id: reviewId,
|
||||
nodeId: reviewNodeId,
|
||||
reviewedSha: actuallyReviewedSha,
|
||||
};
|
||||
|
||||
ctx.toolState.wasUpdated = true;
|
||||
|
||||
// a submitted review obsoletes the progress comment — the review IS the
|
||||
// durable artifact. owned here (not in main.ts) so cleanup is atomic with
|
||||
// submission and survives any path out of the run (success, timeout,
|
||||
// crash). deleteProgressComment sets progressComment = null, so a later
|
||||
// report_progress call short-circuits to a no-op.
|
||||
// best-effort: a cleanup failure must not turn a successful review into
|
||||
// a tool-call failure visible to the agent.
|
||||
await deleteProgressComment(ctx).catch((err) => {
|
||||
log.debug(`progress comment cleanup after review failed: ${err}`);
|
||||
});
|
||||
|
||||
// detect commits pushed since checkout and guide the agent to review them
|
||||
// inline instead of dispatching a separate workflow run
|
||||
if (
|
||||
ctx.toolState.checkoutSha &&
|
||||
latestHeadSha &&
|
||||
latestHeadSha !== ctx.toolState.checkoutSha
|
||||
) {
|
||||
const fromSha = ctx.toolState.checkoutSha;
|
||||
const toSha = latestHeadSha;
|
||||
// store old checkoutSha as beforeSha so the next checkout_pr computes an incremental diff
|
||||
ctx.toolState.beforeSha = fromSha;
|
||||
// advance checkoutSha so the next review submission tracks correctly (just in case, checkout_pr will overwrite it again)
|
||||
ctx.toolState.checkoutSha = toSha;
|
||||
|
||||
log.info(
|
||||
`new commits detected during review: ${fromSha.slice(0, 7)}..${toSha.slice(0, 7)}`
|
||||
);
|
||||
|
||||
return {
|
||||
success: true,
|
||||
reviewId,
|
||||
html_url: result.data.html_url,
|
||||
state: result.data.state,
|
||||
user: result.data.user?.login,
|
||||
submitted_at: result.data.submitted_at,
|
||||
droppedComments: droppedComments.length > 0 ? droppedComments : undefined,
|
||||
newCommits: {
|
||||
from: fromSha,
|
||||
to: toSha,
|
||||
instructions:
|
||||
`new commits were pushed while you were reviewing. ` +
|
||||
`call \`${formatMcpToolRef(ctx.agentId, "checkout_pr")}\` again to fetch the latest version — it will compute the incremental diff automatically. ` +
|
||||
`submit another review covering only the new changes. do not repeat feedback from your previous review.`,
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
return {
|
||||
success: true,
|
||||
reviewId,
|
||||
html_url: result.data.html_url,
|
||||
state: result.data.state,
|
||||
user: result.data.user?.login,
|
||||
submitted_at: result.data.submitted_at,
|
||||
droppedComments: droppedComments.length > 0 ? droppedComments : undefined,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
function runDiffCoveragePreflight(params: { ctx: ToolContext }): void {
|
||||
const coverageState = params.ctx.toolState.diffCoverage;
|
||||
if (!coverageState) {
|
||||
log.debug("diff coverage pre-flight skipped: no diffCoverage state present in toolState");
|
||||
return;
|
||||
}
|
||||
if (coverageState.coveragePreflightRan) {
|
||||
log.debug("diff coverage pre-flight skipped: already ran in this session");
|
||||
return;
|
||||
}
|
||||
|
||||
coverageState.coveragePreflightRan = true;
|
||||
log.debug(
|
||||
`diff coverage pre-flight start: diffPath=${coverageState.diffPath}, totalLines=${coverageState.totalLines}, tocEntries=${coverageState.tocEntries.length}, coveredRanges=${coverageState.coveredRanges.length}`
|
||||
);
|
||||
const breakdown = getDiffCoverageBreakdown({ state: coverageState });
|
||||
const unread: Array<{ path: string; ranges: string; unreadLines: number }> = [];
|
||||
let unreadLines = 0;
|
||||
for (const file of breakdown.files) {
|
||||
if (file.unreadRanges.length === 0) continue;
|
||||
const rangesText = file.unreadRanges
|
||||
.map((range) => `${range.startLine}-${range.endLine}`)
|
||||
.join(", ");
|
||||
const fileUnreadLines = countLinesInRanges({ ranges: file.unreadRanges });
|
||||
unread.push({ path: file.filename, ranges: rangesText, unreadLines: fileUnreadLines });
|
||||
unreadLines += fileUnreadLines;
|
||||
}
|
||||
coverageState.lastBreakdown = renderDiffCoverageBreakdown({
|
||||
diffPath: coverageState.diffPath,
|
||||
breakdown,
|
||||
});
|
||||
log.debug(
|
||||
`diff coverage pre-flight breakdown: coveredLines=${breakdown.coveredLines}, unreadLines=${unreadLines}`
|
||||
);
|
||||
|
||||
if (unreadLines === 0) {
|
||||
log.debug("diff coverage pre-flight passed: no unread regions");
|
||||
return;
|
||||
}
|
||||
|
||||
log.info(
|
||||
`diff coverage pre-flight nudge: unread lines=${unreadLines}, unread files=${unread.length}`
|
||||
);
|
||||
const unreadText = unread
|
||||
.map((entry) => `- ${entry.path} (${entry.unreadLines} lines, ${entry.ranges})`)
|
||||
.join("\n");
|
||||
throw new Error(
|
||||
`diff coverage pre-flight: some TOC regions were not read before review submission. ` +
|
||||
`this is a one-time nudge — read the ranges below from ${coverageState.diffPath} on a best-effort basis, then call create_pull_request_review again. ` +
|
||||
`you are NOT obligated to read generated artifacts (lockfiles like pnpm-lock.yaml / package-lock.json / yarn.lock / Cargo.lock; codegen output like *.gen.*, *.pb.go, *.generated.*; snapshot/fixture dirs like __snapshots__/; migration metadata like drizzle/meta/, prisma migration SQL). ` +
|
||||
`if every unread region is generated, retry immediately without reading. ` +
|
||||
`this pre-flight will not block again in this review session.\n\n` +
|
||||
`unread TOC regions:\n${unreadText}\n\n` +
|
||||
`${coverageState.lastBreakdown}`
|
||||
);
|
||||
}
|
||||
|
||||
type FooterOpts = { body: string; approved: boolean; hasComments: boolean };
|
||||
|
||||
/**
|
||||
* clear a pending review draft stranded on the PR by a prior hard-killed run
|
||||
* (workflow timeout, OOM) so the next createReview can succeed.
|
||||
*
|
||||
* GitHub enforces one-pending-review-per-user-per-PR. if the previous process
|
||||
* died between createReview(PENDING) and submitReview, the draft remains and
|
||||
* the next run's createReview 422s with "already has a pending review".
|
||||
* listReviews only exposes PENDING reviews to their author, so filtering on
|
||||
* state === "PENDING" is already scoped to the authed token's own draft.
|
||||
*
|
||||
* if `originalErr` is not a pending-review 422, or no leftover is found, this
|
||||
* function rethrows `originalErr` so the caller surfaces the original failure.
|
||||
* delete failures with 404 (draft already gone) or 422 (draft submitted by a
|
||||
* concurrent caller) are swallowed — the caller's retry will succeed in both
|
||||
* cases. any other delete error is rethrown unchanged.
|
||||
*
|
||||
* known limitation: if two runs on the SAME PR share the authed token and
|
||||
* overlap in time, the loser's createReview 422s on the winner's still-active
|
||||
* draft. recovery would then delete the winner's active draft and the
|
||||
* winner's submitReview would 404. this is not distinguishable from a
|
||||
* genuinely-stranded draft via the review object alone (PENDING reviews
|
||||
* expose no created_at timestamp, and both reviews are authored by the same
|
||||
* bot user). rely on workflow-level concurrency controls (e.g. a concurrency
|
||||
* key keyed to the PR number) to prevent overlap.
|
||||
*/
|
||||
export async function clearStrandedPendingReview(
|
||||
ctx: ToolContext,
|
||||
params: { owner: string; repo: string; pull_number: number; originalErr: unknown }
|
||||
): Promise<void> {
|
||||
const originalErr = params.originalErr;
|
||||
const msg = originalErr instanceof Error ? originalErr.message.toLowerCase() : "";
|
||||
if (getHttpStatus(originalErr) !== 422 || !msg.includes("pending review")) throw originalErr;
|
||||
// if listReviews itself fails (5xx, rate limit, etc), surface the ORIGINAL
|
||||
// 422 rather than the listing failure — "pending review conflict" is the
|
||||
// real blocker the caller needs to see. hiding it behind a transient 502
|
||||
// sent agents chasing phantom server errors instead of retrying the
|
||||
// conflict. log the listing failure for diagnosis but do not mask.
|
||||
const reviews = await ctx.octokit
|
||||
.paginate(ctx.octokit.rest.pulls.listReviews, {
|
||||
owner: params.owner,
|
||||
repo: params.repo,
|
||||
pull_number: params.pull_number,
|
||||
per_page: 100,
|
||||
})
|
||||
.catch((listErr: unknown) => {
|
||||
// surface at info so operators not running at debug still see that
|
||||
// recovery was attempted (and why) before the original 422 bubbles up.
|
||||
log.info(
|
||||
`» listReviews failed during pending-review cleanup, surfacing original 422: ${listErr instanceof Error ? listErr.message : String(listErr)}`
|
||||
);
|
||||
throw originalErr;
|
||||
});
|
||||
const leftover = reviews.find((r) => r.state === "PENDING");
|
||||
if (!leftover?.id) throw originalErr;
|
||||
log.info(
|
||||
`» clearing leftover pending review ${leftover.id} (likely stranded by a killed prior run)`
|
||||
);
|
||||
try {
|
||||
await ctx.octokit.rest.pulls.deletePendingReview({
|
||||
owner: params.owner,
|
||||
repo: params.repo,
|
||||
pull_number: params.pull_number,
|
||||
review_id: leftover.id,
|
||||
});
|
||||
} catch (cleanupErr) {
|
||||
const cleanupStatus = getHttpStatus(cleanupErr);
|
||||
if (cleanupStatus !== 404 && cleanupStatus !== 422) throw cleanupErr;
|
||||
log.debug(`» delete of leftover pending ${leftover.id} no-op (status ${cleanupStatus})`);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* single-step createReview (event != PENDING) with stranded-draft recovery.
|
||||
* the body path goes through createAndSubmitWithFooter which already recovers
|
||||
* from a stranded PENDING draft at its own createReview call. the no-body path
|
||||
* used to call createReview directly with no recovery — so a PR whose previous
|
||||
* body-path run crashed between createReview(PENDING) and submitReview would
|
||||
* permanently 422 any subsequent no-body review (approve-with-no-feedback or
|
||||
* comments-only) until a body-path run happened to clear the draft.
|
||||
*/
|
||||
export async function createReviewWithStrandedRecovery(
|
||||
ctx: ToolContext,
|
||||
params: RestEndpointMethodTypes["pulls"]["createReview"]["parameters"]
|
||||
): Promise<Awaited<ReturnType<typeof ctx.octokit.rest.pulls.createReview>>> {
|
||||
try {
|
||||
return await ctx.octokit.rest.pulls.createReview(params);
|
||||
} catch (err) {
|
||||
await clearStrandedPendingReview(ctx, {
|
||||
owner: params.owner,
|
||||
repo: params.repo,
|
||||
pull_number: params.pull_number,
|
||||
originalErr: err,
|
||||
});
|
||||
return await ctx.octokit.rest.pulls.createReview(params);
|
||||
}
|
||||
}
|
||||
|
||||
async function createAndSubmitWithFooter(
|
||||
ctx: ToolContext,
|
||||
params: RestEndpointMethodTypes["pulls"]["createReview"]["parameters"],
|
||||
opts: FooterOpts
|
||||
) {
|
||||
// create as PENDING (strip event) so we get the review ID before publishing
|
||||
const { event: _, ...pendingParams } = params;
|
||||
let pending: Awaited<ReturnType<typeof ctx.octokit.rest.pulls.createReview>>;
|
||||
try {
|
||||
pending = await ctx.octokit.rest.pulls.createReview(pendingParams);
|
||||
} catch (err) {
|
||||
await clearStrandedPendingReview(ctx, {
|
||||
owner: params.owner,
|
||||
repo: params.repo,
|
||||
pull_number: params.pull_number,
|
||||
originalErr: err,
|
||||
});
|
||||
pending = await ctx.octokit.rest.pulls.createReview(pendingParams);
|
||||
}
|
||||
if (!pending.data.id) {
|
||||
throw new Error(`createReview returned invalid data: ${JSON.stringify(pending.data)}`);
|
||||
}
|
||||
|
||||
// once the pending draft exists, GitHub only allows one pending review per
|
||||
// user per PR — so ANY failure between here and successful submit must
|
||||
// clean up, not just a submitReview throw. getApiUrl() can throw if
|
||||
// API_URL is misconfigured, and future footer-building changes could
|
||||
// introduce new throw paths. keep the whole body wrapped.
|
||||
try {
|
||||
// Fix buttons are suppressed on approving reviews — those are mergeable
|
||||
// by definition (the `> ✅ No new issues found.` tier, with no inline
|
||||
// comments), so dispatching a fix run would be a UX trap.
|
||||
const customParts: string[] = [];
|
||||
if (!opts.approved) {
|
||||
const apiUrl = getApiUrl();
|
||||
if (opts.hasComments) {
|
||||
const fixAllUrl = `${apiUrl}/trigger/${ctx.repo.owner}/${ctx.repo.name}/${params.pull_number}?action=fix&review_id=${pending.data.id}`;
|
||||
const fixApprovedUrl = `${apiUrl}/trigger/${ctx.repo.owner}/${ctx.repo.name}/${params.pull_number}?action=fix-approved&review_id=${pending.data.id}`;
|
||||
customParts.push(`[Fix all ➔](${fixAllUrl})`, `[Fix 👍s ➔](${fixApprovedUrl})`);
|
||||
} else {
|
||||
const fixUrl = `${apiUrl}/trigger/${ctx.repo.owner}/${ctx.repo.name}/${params.pull_number}?action=fix&review_id=${pending.data.id}`;
|
||||
customParts.push(`[Fix it ➔](${fixUrl})`);
|
||||
}
|
||||
}
|
||||
|
||||
const footer = buildPullfrogFooter({
|
||||
workflowRun: ctx.runId
|
||||
? { owner: ctx.repo.owner, repo: ctx.repo.name, runId: ctx.runId, jobId: ctx.jobId }
|
||||
: undefined,
|
||||
customParts,
|
||||
model: ctx.toolState.model,
|
||||
fallbackFrom: ctx.toolState.modelFallback?.from,
|
||||
});
|
||||
|
||||
return await ctx.octokit.rest.pulls.submitReview({
|
||||
owner: params.owner,
|
||||
repo: params.repo,
|
||||
pull_number: params.pull_number,
|
||||
review_id: pending.data.id,
|
||||
event: params.event!,
|
||||
body: opts.body + footer,
|
||||
});
|
||||
} catch (err) {
|
||||
// anything failed after the pending draft was created. leaving the draft
|
||||
// on the PR would cause the agent's retry to fail with "already has a
|
||||
// pending review" (GitHub's one-pending-per-user-per-PR limit). best-effort
|
||||
// cleanup so retries start from a clean slate. the cleanup itself may
|
||||
// 404/422 (review already submitted by a concurrent caller, or the PR
|
||||
// was closed mid-flight) — log and swallow those so the original error
|
||||
// isn't masked.
|
||||
try {
|
||||
await ctx.octokit.rest.pulls.deletePendingReview({
|
||||
owner: params.owner,
|
||||
repo: params.repo,
|
||||
pull_number: params.pull_number,
|
||||
review_id: pending.data.id,
|
||||
});
|
||||
log.debug(`» deleted leftover pending review ${pending.data.id} after failure`);
|
||||
} catch (cleanupErr) {
|
||||
log.debug(
|
||||
`» failed to delete pending review ${pending.data.id}: ${cleanupErr instanceof Error ? cleanupErr.message : String(cleanupErr)}`
|
||||
);
|
||||
}
|
||||
throw err;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* report the review node ID so the WorkflowRun is marked as "review submitted".
|
||||
* exported for use in main.ts post-agent cleanup.
|
||||
*/
|
||||
export async function reportReviewNodeId(
|
||||
ctx: ToolContext,
|
||||
params: { nodeId: string }
|
||||
): Promise<void> {
|
||||
await patchWorkflowRunFields(ctx, { reviewNodeId: params.nodeId });
|
||||
}
|
||||
@@ -1,40 +0,0 @@
|
||||
import { readFileSync } from "node:fs";
|
||||
import { resolve } from "node:path";
|
||||
import { describe, expect, it } from "vitest";
|
||||
import { type FormatReviewDataInput, formatReviewData } from "./reviewComments.ts";
|
||||
|
||||
// fixtures captured by action/scripts/refresh-test-fixtures.ts; re-run
|
||||
// (with creds) when GitHub's review/threads/listFiles response shape
|
||||
// changes, then review the snapshot diff.
|
||||
type ReviewFixture = FormatReviewDataInput & {
|
||||
owner: string;
|
||||
name: string;
|
||||
};
|
||||
|
||||
function loadFixture(file: string): ReviewFixture {
|
||||
return JSON.parse(
|
||||
readFileSync(resolve(import.meta.dirname, "__fixtures__", file), "utf-8")
|
||||
) as ReviewFixture;
|
||||
}
|
||||
|
||||
describe("formatReviewData", () => {
|
||||
it("formats thread blocks with TOC and correct line numbers", () => {
|
||||
const fx = loadFixture("pullfrog-scratch-pr-49-review-3485940013.json");
|
||||
const result = formatReviewData(fx);
|
||||
expect(result).toBeDefined();
|
||||
if (!result) return;
|
||||
|
||||
expect(result.formatted.toc).toMatchSnapshot("toc");
|
||||
expect(result.formatted.content).toMatchSnapshot("content");
|
||||
});
|
||||
|
||||
it("formats body-only review", () => {
|
||||
const fx = loadFixture("pullfrog-scratch-pr-64-review-3531000326.json");
|
||||
const result = formatReviewData(fx);
|
||||
expect(result).toBeDefined();
|
||||
if (!result) return;
|
||||
|
||||
expect(result.formatted.toc).toMatchSnapshot("toc");
|
||||
expect(result.formatted.content).toMatchSnapshot("content");
|
||||
});
|
||||
});
|
||||
@@ -1,770 +0,0 @@
|
||||
import { writeFileSync } from "node:fs";
|
||||
import { join } from "node:path";
|
||||
import type { Octokit } from "@octokit/rest";
|
||||
import { type } from "arktype";
|
||||
import { stripExistingFooter } from "../utils/buildPullfrogFooter.ts";
|
||||
import { log } from "../utils/log.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
// GraphQL query to fetch all review threads for a PR with full comment history
|
||||
export const REVIEW_THREADS_QUERY = `
|
||||
query ($owner: String!, $name: String!, $prNumber: Int!) {
|
||||
repository(owner: $owner, name: $name) {
|
||||
pullRequest(number: $prNumber) {
|
||||
reviewThreads(first: 100) {
|
||||
nodes {
|
||||
id
|
||||
path
|
||||
line
|
||||
startLine
|
||||
diffSide
|
||||
isResolved
|
||||
isOutdated
|
||||
comments(first: 50) {
|
||||
nodes {
|
||||
fullDatabaseId
|
||||
body
|
||||
createdAt
|
||||
diffHunk
|
||||
line
|
||||
startLine
|
||||
originalLine
|
||||
originalStartLine
|
||||
author { login }
|
||||
pullRequestReview {
|
||||
databaseId
|
||||
author { login }
|
||||
}
|
||||
reactionGroups {
|
||||
content
|
||||
reactors(first: 10) {
|
||||
nodes {
|
||||
... on Actor { login }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
export type ReviewThreadComment = {
|
||||
fullDatabaseId: string | null;
|
||||
body: string;
|
||||
createdAt: string;
|
||||
diffHunk: string;
|
||||
line: number | null;
|
||||
startLine: number | null;
|
||||
originalLine: number | null;
|
||||
originalStartLine: number | null;
|
||||
author: { login: string } | null;
|
||||
pullRequestReview: {
|
||||
databaseId: number | null;
|
||||
author: { login: string } | null;
|
||||
} | null;
|
||||
reactionGroups: Array<{
|
||||
content: string;
|
||||
reactors: { nodes: Array<{ login: string } | null> | null } | null;
|
||||
}> | null;
|
||||
};
|
||||
|
||||
export type ReviewThread = {
|
||||
id: string;
|
||||
path: string;
|
||||
line: number | null;
|
||||
startLine: number | null;
|
||||
diffSide: "LEFT" | "RIGHT";
|
||||
isResolved: boolean;
|
||||
isOutdated: boolean;
|
||||
comments: {
|
||||
nodes: (ReviewThreadComment | null)[] | null;
|
||||
} | null;
|
||||
};
|
||||
|
||||
export type ReviewThreadsQueryResponse = {
|
||||
repository: {
|
||||
pullRequest: {
|
||||
reviewThreads: {
|
||||
nodes: (ReviewThread | null)[] | null;
|
||||
} | null;
|
||||
} | null;
|
||||
} | null;
|
||||
};
|
||||
|
||||
export function countLines(str: string): number {
|
||||
let count = 1;
|
||||
let index = -1;
|
||||
// biome-ignore lint/suspicious/noAssignInExpressions: assignment in while condition is intentional for indexOf loop pattern
|
||||
while ((index = str.indexOf("\n", index + 1)) !== -1) {
|
||||
count++;
|
||||
}
|
||||
return count;
|
||||
}
|
||||
|
||||
// extract exactly the commented line range from diffHunk, plus context
|
||||
const CONTEXT_PADDING = 3;
|
||||
|
||||
function extractCommentedLines(
|
||||
diffHunk: string,
|
||||
startLine: number | null,
|
||||
endLine: number | null,
|
||||
side: "LEFT" | "RIGHT"
|
||||
): string {
|
||||
const lines = diffHunk.split("\n");
|
||||
if (lines.length <= 1) return diffHunk;
|
||||
|
||||
const header = lines[0];
|
||||
const contentLines = lines.slice(1);
|
||||
|
||||
// parse header: @@ -old_start,old_count +new_start,new_count @@
|
||||
const headerMatch = header.match(/@@ -(\d+)(?:,\d+)? \+(\d+)(?:,\d+)? @@/);
|
||||
if (!headerMatch) return diffHunk;
|
||||
|
||||
const hunkOldStart = parseInt(headerMatch[1], 10);
|
||||
const hunkNewStart = parseInt(headerMatch[2], 10);
|
||||
|
||||
// LEFT = old file (deletions), RIGHT = new file (additions)
|
||||
const hunkStart = side === "LEFT" ? hunkOldStart : hunkNewStart;
|
||||
const commentStart = startLine ?? endLine ?? hunkStart;
|
||||
const commentEnd = endLine ?? commentStart;
|
||||
|
||||
// walk through diff lines, tracking line numbers for both old and new files
|
||||
// - lines: old file only (LEFT)
|
||||
// + lines: new file only (RIGHT)
|
||||
// context lines: both files
|
||||
type DiffLine = { text: string; lineNum: number | null };
|
||||
const diffLines: DiffLine[] = [];
|
||||
let oldLineNum = hunkOldStart;
|
||||
let newLineNum = hunkNewStart;
|
||||
|
||||
for (const line of contentLines) {
|
||||
const prefix = line[0];
|
||||
if (prefix === "-") {
|
||||
// deletion - only has old line number
|
||||
diffLines.push({ text: line, lineNum: side === "LEFT" ? oldLineNum : null });
|
||||
oldLineNum++;
|
||||
} else if (prefix === "+") {
|
||||
// addition - only has new line number
|
||||
diffLines.push({ text: line, lineNum: side === "RIGHT" ? newLineNum : null });
|
||||
newLineNum++;
|
||||
} else {
|
||||
// context - has both line numbers
|
||||
diffLines.push({ text: line, lineNum: side === "LEFT" ? oldLineNum : newLineNum });
|
||||
oldLineNum++;
|
||||
newLineNum++;
|
||||
}
|
||||
}
|
||||
|
||||
// find lines for comment range with context
|
||||
const targetStart = commentStart - CONTEXT_PADDING;
|
||||
const targetEnd = commentEnd;
|
||||
|
||||
const result: string[] = [];
|
||||
let truncatedBefore = 0;
|
||||
|
||||
for (let i = 0; i < diffLines.length; i++) {
|
||||
const dl = diffLines[i];
|
||||
// include if: within target range, OR it's an "other side" line adjacent to included lines
|
||||
const inRange = dl.lineNum !== null && dl.lineNum >= targetStart && dl.lineNum <= targetEnd;
|
||||
// include opposite-side lines if they're between included lines
|
||||
const adjacentOtherSide = dl.lineNum === null && result.length > 0 && i < diffLines.length - 1;
|
||||
|
||||
if (inRange || adjacentOtherSide) {
|
||||
result.push(dl.text);
|
||||
} else if (result.length === 0) {
|
||||
truncatedBefore++;
|
||||
}
|
||||
}
|
||||
|
||||
if (truncatedBefore > 0) {
|
||||
return `${header}\n... (${truncatedBefore} lines above) ...\n${result.join("\n")}`;
|
||||
}
|
||||
return `${header}\n${result.join("\n")}`;
|
||||
}
|
||||
|
||||
// parsed hunk from a unified diff
|
||||
export type ParsedHunk = {
|
||||
header: string;
|
||||
oldStart: number;
|
||||
oldCount: number;
|
||||
newStart: number;
|
||||
newCount: number;
|
||||
content: string[];
|
||||
};
|
||||
|
||||
// parse a full file patch into individual hunks
|
||||
export function parseFilePatches(patch: string): ParsedHunk[] {
|
||||
const hunks: ParsedHunk[] = [];
|
||||
const lines = patch.split("\n");
|
||||
|
||||
let currentHunk: ParsedHunk | null = null;
|
||||
|
||||
for (const line of lines) {
|
||||
const hunkMatch = line.match(/@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))? @@/);
|
||||
if (hunkMatch) {
|
||||
if (currentHunk) hunks.push(currentHunk);
|
||||
currentHunk = {
|
||||
header: line,
|
||||
oldStart: parseInt(hunkMatch[1], 10),
|
||||
oldCount: parseInt(hunkMatch[2] ?? "1", 10),
|
||||
newStart: parseInt(hunkMatch[3], 10),
|
||||
newCount: parseInt(hunkMatch[4] ?? "1", 10),
|
||||
content: [],
|
||||
};
|
||||
} else if (currentHunk) {
|
||||
currentHunk.content.push(line);
|
||||
}
|
||||
}
|
||||
if (currentHunk) hunks.push(currentHunk);
|
||||
|
||||
return hunks;
|
||||
}
|
||||
|
||||
// find hunks that overlap with a line range (for LEFT or RIGHT side)
|
||||
function findOverlappingHunks(
|
||||
hunks: ParsedHunk[],
|
||||
startLine: number,
|
||||
endLine: number,
|
||||
side: "LEFT" | "RIGHT"
|
||||
): ParsedHunk[] {
|
||||
return hunks.filter((hunk) => {
|
||||
const hunkStart = side === "LEFT" ? hunk.oldStart : hunk.newStart;
|
||||
const hunkCount = side === "LEFT" ? hunk.oldCount : hunk.newCount;
|
||||
const hunkEnd = hunkStart + hunkCount - 1;
|
||||
|
||||
// check for overlap: ranges overlap if start1 <= end2 && start2 <= end1
|
||||
return startLine <= hunkEnd && hunkStart <= endLine;
|
||||
});
|
||||
}
|
||||
|
||||
// extract diff content from multiple hunks for a comment range
|
||||
function extractFromFilePatches(
|
||||
hunks: ParsedHunk[],
|
||||
startLine: number,
|
||||
endLine: number,
|
||||
side: "LEFT" | "RIGHT"
|
||||
): string {
|
||||
const overlapping = findOverlappingHunks(hunks, startLine, endLine, side);
|
||||
|
||||
if (overlapping.length === 0) {
|
||||
return `(no diff hunks found for lines ${startLine}-${endLine})`;
|
||||
}
|
||||
|
||||
if (overlapping.length === 1) {
|
||||
// single hunk - use existing extraction logic
|
||||
const hunk = overlapping[0];
|
||||
const fullHunk = hunk.header + "\n" + hunk.content.join("\n");
|
||||
return extractCommentedLines(fullHunk, startLine, endLine, side);
|
||||
}
|
||||
|
||||
// multiple hunks - combine them with gap indicators
|
||||
const result: string[] = [];
|
||||
let prevHunkEnd = 0;
|
||||
|
||||
for (let i = 0; i < overlapping.length; i++) {
|
||||
const hunk = overlapping[i];
|
||||
const hunkStart = side === "LEFT" ? hunk.oldStart : hunk.newStart;
|
||||
const hunkCount = side === "LEFT" ? hunk.oldCount : hunk.newCount;
|
||||
const hunkEnd = hunkStart + hunkCount - 1;
|
||||
|
||||
// add gap indicator if there's a gap between hunks
|
||||
if (i > 0 && hunkStart > prevHunkEnd + 1) {
|
||||
const gapSize = hunkStart - prevHunkEnd - 1;
|
||||
result.push(`\n... (${gapSize} unchanged lines) ...\n`);
|
||||
}
|
||||
|
||||
// add the hunk header and content
|
||||
result.push(hunk.header);
|
||||
result.push(...hunk.content);
|
||||
|
||||
prevHunkEnd = hunkEnd;
|
||||
}
|
||||
|
||||
return result.join("\n");
|
||||
}
|
||||
|
||||
export const GetReviewComments = type({
|
||||
pull_number: type.number.describe("The pull request number"),
|
||||
review_id: type.number.describe("The review ID to get comments for"),
|
||||
});
|
||||
|
||||
function hasThumbsUpFrom(comment: ReviewThreadComment, username: string): boolean {
|
||||
if (!comment.reactionGroups) return false;
|
||||
const thumbsUp = comment.reactionGroups.find((g) => g.content === "THUMBS_UP");
|
||||
if (!thumbsUp?.reactors?.nodes) return false;
|
||||
const needle = username.toLowerCase();
|
||||
return thumbsUp.reactors.nodes.some((r) => r?.login?.toLowerCase() === needle);
|
||||
}
|
||||
|
||||
function threadHasThumbsUpFrom(thread: ReviewThread, username: string): boolean {
|
||||
const comments = thread.comments?.nodes ?? [];
|
||||
return comments.some((c) => c && hasThumbsUpFrom(c, username));
|
||||
}
|
||||
|
||||
/**
|
||||
* formats thread blocks into markdown with TOC and line numbers.
|
||||
* extracted for testability.
|
||||
*/
|
||||
export function formatReviewThreads(
|
||||
threadBlocks: Array<{ path: string; lineRange: string; content: string[] }>,
|
||||
header: { pullNumber: number; reviewId: number; reviewer: string; reviewBody?: string }
|
||||
) {
|
||||
// header section takes: title (1) + blank (1) + "## TOC" (1) + blank (1) + N TOC entries + blank (1) + "---" (1) + blank (1)
|
||||
const tocHeaderLines = 4;
|
||||
const tocFooterLines = 3;
|
||||
let currentLine = tocHeaderLines + threadBlocks.length + tocFooterLines + 1;
|
||||
|
||||
// account for review body section if present
|
||||
const reviewBodyLines: string[] = [];
|
||||
if (header.reviewBody) {
|
||||
reviewBodyLines.push("## Review Body", "", header.reviewBody, "");
|
||||
currentLine += reviewBodyLines.reduce((sum, line) => sum + countLines(line), 0);
|
||||
}
|
||||
|
||||
const tocEntries: string[] = [];
|
||||
const threadLines: string[] = [];
|
||||
|
||||
for (const block of threadBlocks) {
|
||||
const startLine = currentLine;
|
||||
const actualLineCount = block.content.reduce((sum, line) => sum + countLines(line), 0);
|
||||
const endLine = currentLine + actualLineCount - 1;
|
||||
tocEntries.push(`- ${block.path}:${block.lineRange} → lines ${startLine}-${endLine}`);
|
||||
threadLines.push(...block.content);
|
||||
currentLine += actualLineCount;
|
||||
}
|
||||
|
||||
const lines: string[] = [];
|
||||
lines.push(
|
||||
`# Review Threads (${threadBlocks.length}) for PR #${header.pullNumber} - Review ${header.reviewId} by ${header.reviewer}`
|
||||
);
|
||||
lines.push("");
|
||||
if (threadBlocks.length > 0) {
|
||||
lines.push("## TOC");
|
||||
lines.push("");
|
||||
lines.push(...tocEntries);
|
||||
lines.push("");
|
||||
}
|
||||
lines.push(...reviewBodyLines);
|
||||
lines.push("---");
|
||||
lines.push("");
|
||||
lines.push(...threadLines);
|
||||
|
||||
return {
|
||||
toc: tocEntries.join("\n"),
|
||||
content: lines.join("\n"),
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* builds thread blocks from review threads and file patches.
|
||||
* extracted for testability.
|
||||
*/
|
||||
export function buildThreadBlocks(
|
||||
threads: ReviewThread[],
|
||||
filePatchMap: Map<string, ParsedHunk[]>,
|
||||
reviewId: number
|
||||
) {
|
||||
// sort threads by file path, then by line number
|
||||
threads.sort((a, b) => {
|
||||
const pathCmp = a.path.localeCompare(b.path);
|
||||
if (pathCmp !== 0) return pathCmp;
|
||||
const aLine = a.startLine ?? a.line ?? 0;
|
||||
const bLine = b.startLine ?? b.line ?? 0;
|
||||
return aLine - bLine;
|
||||
});
|
||||
|
||||
const threadBlocks: Array<{ path: string; lineRange: string; content: string[] }> = [];
|
||||
|
||||
for (const thread of threads) {
|
||||
const allComments = (thread.comments?.nodes ?? []).filter(
|
||||
(c): c is ReviewThreadComment => c !== null
|
||||
);
|
||||
if (allComments.length === 0) continue;
|
||||
|
||||
// get line info from thread, or fall back to first comment's line info
|
||||
const firstComment = allComments[0];
|
||||
const line =
|
||||
thread.line ?? firstComment?.line ?? firstComment?.originalLine ?? thread.startLine ?? 0;
|
||||
const startLine =
|
||||
thread.startLine ?? firstComment?.startLine ?? firstComment?.originalStartLine ?? line;
|
||||
const lineRange = startLine === line ? `${line}` : `${startLine}-${line}`;
|
||||
const block: string[] = [];
|
||||
|
||||
// header with file:line range and status
|
||||
const status = thread.isResolved ? " [RESOLVED]" : thread.isOutdated ? " [OUTDATED]" : "";
|
||||
block.push(`## ${thread.path}:${lineRange}${status}`);
|
||||
block.push("");
|
||||
|
||||
// show all comments in the thread (full conversation history)
|
||||
for (const comment of allComments) {
|
||||
const author = comment.author?.login ?? "unknown";
|
||||
const isTargetReview = comment.pullRequestReview?.databaseId === reviewId;
|
||||
const marker = isTargetReview ? " *" : "";
|
||||
|
||||
block.push(
|
||||
`\`\`\`\`comment author=${author} id=${comment.fullDatabaseId ?? "unknown"} review=${comment.pullRequestReview?.databaseId ?? "unknown"} thread=${thread.id}${marker}`
|
||||
);
|
||||
block.push(comment.body || "(no comment body)");
|
||||
block.push("````");
|
||||
block.push("");
|
||||
}
|
||||
|
||||
// diff context
|
||||
const fileHunks = filePatchMap.get(thread.path);
|
||||
const firstCommentWithHunk = allComments.find((c) => c.diffHunk);
|
||||
let diffContent: string | null = null;
|
||||
|
||||
if (fileHunks && fileHunks.length > 0) {
|
||||
const overlapping = findOverlappingHunks(fileHunks, startLine, line, thread.diffSide);
|
||||
if (overlapping.length > 0) {
|
||||
diffContent = extractFromFilePatches(fileHunks, startLine, line, thread.diffSide);
|
||||
}
|
||||
}
|
||||
|
||||
if (!diffContent && firstCommentWithHunk) {
|
||||
diffContent = extractCommentedLines(
|
||||
firstCommentWithHunk.diffHunk,
|
||||
startLine,
|
||||
line,
|
||||
thread.diffSide
|
||||
);
|
||||
}
|
||||
|
||||
if (diffContent) {
|
||||
block.push(`\`\`\`diff file=${thread.path} lines=${lineRange} side=${thread.diffSide}`);
|
||||
block.push(diffContent);
|
||||
block.push("```");
|
||||
block.push("");
|
||||
} else {
|
||||
block.push(`\`\`\`diff file=${thread.path} lines=${lineRange} side=${thread.diffSide}`);
|
||||
block.push(`(no diff context available - comment on unchanged lines)`);
|
||||
block.push("```");
|
||||
block.push("");
|
||||
}
|
||||
|
||||
threadBlocks.push({ path: thread.path, lineRange, content: block });
|
||||
}
|
||||
|
||||
return threadBlocks;
|
||||
}
|
||||
|
||||
async function getReviewThreads(input: GetReviewDataInput) {
|
||||
const response = await input.octokit.graphql<ReviewThreadsQueryResponse>(REVIEW_THREADS_QUERY, {
|
||||
owner: input.owner,
|
||||
name: input.name,
|
||||
prNumber: input.pullNumber,
|
||||
});
|
||||
|
||||
const allThreads = response.repository?.pullRequest?.reviewThreads?.nodes ?? [];
|
||||
|
||||
if (allThreads.length >= 100) {
|
||||
log.warning(
|
||||
`PR ${input.owner}/${input.name}#${input.pullNumber}: reviewThreads returned 100 results (limit reached, some threads may be missing)`
|
||||
);
|
||||
}
|
||||
for (const thread of allThreads) {
|
||||
if (thread?.comments?.nodes && thread.comments.nodes.length >= 50) {
|
||||
log.warning(
|
||||
`PR ${input.owner}/${input.name}#${input.pullNumber}: review thread at ${thread.path}:${thread.line} has 50 comments (limit reached, some comments may be missing)`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
const threadsForReview = allThreads.filter((thread): thread is ReviewThread => {
|
||||
if (!thread?.comments?.nodes) return false;
|
||||
return thread.comments.nodes.some((c) => c?.pullRequestReview?.databaseId === input.reviewId);
|
||||
});
|
||||
|
||||
if (!input.approvedBy) {
|
||||
return threadsForReview;
|
||||
}
|
||||
|
||||
const username = input.approvedBy;
|
||||
return threadsForReview.filter((thread) => threadHasThumbsUpFrom(thread, username));
|
||||
}
|
||||
|
||||
interface GetReviewDataInput {
|
||||
octokit: Octokit;
|
||||
owner: string;
|
||||
name: string;
|
||||
pullNumber: number;
|
||||
reviewId: number;
|
||||
approvedBy?: string | undefined;
|
||||
}
|
||||
|
||||
// pure formatter: takes already-fetched GitHub responses and produces the
|
||||
// review data the MCP tool returns. extracted from getReviewData so tests
|
||||
// can drive it from checked-in fixtures without live API access.
|
||||
//
|
||||
// `prFiles` may be empty when `threads` is empty — callers that hit the
|
||||
// network should skip the listFiles call in that case as a perf
|
||||
// optimization. when both are empty and `review.body` is also empty, the
|
||||
// formatter returns undefined just like getReviewData.
|
||||
export interface FormatReviewDataInput {
|
||||
review: ReviewResponse;
|
||||
threads: ReviewThread[];
|
||||
prFiles: ReviewPrFile[];
|
||||
pullNumber: number;
|
||||
reviewId: number;
|
||||
}
|
||||
|
||||
export type ReviewResponse = {
|
||||
body: string | null | undefined;
|
||||
user: { login: string } | null | undefined;
|
||||
};
|
||||
|
||||
export type ReviewPrFile = {
|
||||
filename: string;
|
||||
patch?: string | undefined;
|
||||
};
|
||||
|
||||
export function formatReviewData(input: FormatReviewDataInput):
|
||||
| {
|
||||
threadBlocks: Array<{ path: string; lineRange: string; content: string[] }>;
|
||||
reviewer: string;
|
||||
formatted: { toc: string; content: string };
|
||||
}
|
||||
| undefined {
|
||||
const rawReviewBody = input.review.body;
|
||||
const reviewBody = rawReviewBody ? stripExistingFooter(rawReviewBody) : "";
|
||||
const reviewer = input.review.user?.login ?? "unknown";
|
||||
|
||||
if (input.threads.length === 0 && !reviewBody) return undefined;
|
||||
|
||||
let threadBlocks: Array<{ path: string; lineRange: string; content: string[] }> = [];
|
||||
|
||||
if (input.threads.length > 0) {
|
||||
const filePatchMap = new Map<string, ParsedHunk[]>();
|
||||
for (const file of input.prFiles) {
|
||||
if (file.patch) {
|
||||
filePatchMap.set(file.filename, parseFilePatches(file.patch));
|
||||
}
|
||||
}
|
||||
threadBlocks = buildThreadBlocks(input.threads, filePatchMap, input.reviewId);
|
||||
}
|
||||
|
||||
const formatted = formatReviewThreads(threadBlocks, {
|
||||
pullNumber: input.pullNumber,
|
||||
reviewId: input.reviewId,
|
||||
reviewer,
|
||||
reviewBody,
|
||||
});
|
||||
|
||||
return { threadBlocks, reviewer, formatted };
|
||||
}
|
||||
|
||||
export async function getReviewData(input: GetReviewDataInput): Promise<
|
||||
| {
|
||||
threadBlocks: Array<{ path: string; lineRange: string; content: string[] }>;
|
||||
reviewer: string;
|
||||
formatted: { toc: string; content: string };
|
||||
}
|
||||
| undefined
|
||||
> {
|
||||
const [review, threads] = await Promise.all([
|
||||
input.octokit.rest.pulls.getReview({
|
||||
owner: input.owner,
|
||||
repo: input.name,
|
||||
pull_number: input.pullNumber,
|
||||
review_id: input.reviewId,
|
||||
}),
|
||||
getReviewThreads(input),
|
||||
]);
|
||||
|
||||
// skip listFiles when there are no threads — prFiles is only used for
|
||||
// building thread blocks, and an empty array short-circuits below.
|
||||
const prFiles =
|
||||
threads.length > 0
|
||||
? await input.octokit.paginate(input.octokit.rest.pulls.listFiles, {
|
||||
owner: input.owner,
|
||||
repo: input.name,
|
||||
pull_number: input.pullNumber,
|
||||
per_page: 100,
|
||||
})
|
||||
: [];
|
||||
|
||||
return formatReviewData({
|
||||
review: review.data,
|
||||
threads,
|
||||
prFiles,
|
||||
pullNumber: input.pullNumber,
|
||||
reviewId: input.reviewId,
|
||||
});
|
||||
}
|
||||
|
||||
export function GetReviewCommentsTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "get_review_comments",
|
||||
description:
|
||||
"Get review comments for a pull request review with full thread context. " +
|
||||
"Example: `get_review_comments({ pull_number: 1234, review_id: 567890 })`. " +
|
||||
"Automatically filters to approved comments when applicable. " +
|
||||
"Returns a TOC and commentsPath pointing to a markdown file with full comment details.",
|
||||
parameters: GetReviewComments,
|
||||
execute: execute(async (params) => {
|
||||
// auto-filter to approved comments when the event has approved_only set
|
||||
const approvedBy =
|
||||
ctx.payload.event.trigger === "fix_review" && ctx.payload.event.approved_only
|
||||
? ctx.payload.triggerer
|
||||
: undefined;
|
||||
|
||||
const result = await getReviewData({
|
||||
octokit: ctx.octokit,
|
||||
owner: ctx.repo.owner,
|
||||
name: ctx.repo.name,
|
||||
pullNumber: params.pull_number,
|
||||
reviewId: params.review_id,
|
||||
approvedBy,
|
||||
});
|
||||
|
||||
if (!result) {
|
||||
return {
|
||||
review_id: params.review_id,
|
||||
pull_number: params.pull_number,
|
||||
reviewer: "unknown",
|
||||
threadCount: 0,
|
||||
commentsPath: null,
|
||||
toc: null,
|
||||
instructions: approvedBy
|
||||
? `no threads with 👍 from ${approvedBy}`
|
||||
: "no threads found for this review",
|
||||
};
|
||||
}
|
||||
|
||||
const { threadBlocks, reviewer, formatted } = result;
|
||||
|
||||
const tempDir = process.env.PULLFROG_TEMP_DIR;
|
||||
if (!tempDir) {
|
||||
throw new Error("PULLFROG_TEMP_DIR not set");
|
||||
}
|
||||
const filename = `review-${params.review_id}-threads.md`;
|
||||
const commentsPath = join(tempDir, filename);
|
||||
writeFileSync(commentsPath, formatted.content);
|
||||
log.debug(`wrote ${threadBlocks.length} threads to ${commentsPath}`);
|
||||
|
||||
return {
|
||||
review_id: params.review_id,
|
||||
pull_number: params.pull_number,
|
||||
reviewer,
|
||||
threadCount: threadBlocks.length,
|
||||
commentsPath,
|
||||
toc: formatted.toc,
|
||||
instructions:
|
||||
`the file at commentsPath contains ${threadBlocks.length} review threads with full conversation history. ` +
|
||||
`comments marked with * are from the target review (${params.review_id}). ` +
|
||||
`the TOC shows each thread's file:line and the line number where it appears in the file. ` +
|
||||
`to read a specific thread, use: grep -A 50 "^## <file:line>" ${commentsPath} ` +
|
||||
`(replace <file:line> with the path from the TOC, e.g. "^## action/utils/foo.ts:42"). ` +
|
||||
`address each thread in order, working through one file at a time.`,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
export const ListPullRequestReviews = type({
|
||||
pull_number: type.number.describe("The pull request number to list reviews for"),
|
||||
});
|
||||
|
||||
export function ListPullRequestReviewsTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "list_pull_request_reviews",
|
||||
description:
|
||||
"List all reviews for a pull request. Returns all reviews including approvals, request changes, and comments. " +
|
||||
"Example: `list_pull_request_reviews({ pull_number: 1234 })`.",
|
||||
parameters: ListPullRequestReviews,
|
||||
execute: execute(async (params) => {
|
||||
const reviews = await ctx.octokit.paginate(ctx.octokit.rest.pulls.listReviews, {
|
||||
owner: ctx.repo.owner,
|
||||
repo: ctx.repo.name,
|
||||
pull_number: params.pull_number,
|
||||
});
|
||||
|
||||
return {
|
||||
pull_number: params.pull_number,
|
||||
reviews: reviews.map((review) => ({
|
||||
id: review.id,
|
||||
node_id: review.node_id,
|
||||
body: review.body,
|
||||
state: review.state,
|
||||
user: review.user?.login,
|
||||
submitted_at: review.submitted_at,
|
||||
commit_id: review.commit_id,
|
||||
html_url: review.html_url,
|
||||
})),
|
||||
count: reviews.length,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
const RESOLVE_REVIEW_THREAD_MUTATION = `
|
||||
mutation($threadId: ID!) {
|
||||
resolveReviewThread(input: {threadId: $threadId}) {
|
||||
thread {
|
||||
id
|
||||
isResolved
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
export const ResolveReviewThread = type({
|
||||
thread_id: type.string.describe("The GraphQL node ID of the review thread to resolve"),
|
||||
});
|
||||
|
||||
export function ResolveReviewThreadTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "resolve_review_thread",
|
||||
description:
|
||||
"Mark a review thread as resolved using GitHub's GraphQL API. " +
|
||||
"Only call this after addressing the review feedback, implementing fixes, testing them, and posting a reply. " +
|
||||
"Do not resolve threads that are already resolved, threads where no action was taken, or threads where you disagree with the feedback.",
|
||||
parameters: ResolveReviewThread,
|
||||
execute: execute(async (params) => {
|
||||
try {
|
||||
const response = await ctx.octokit.graphql<{
|
||||
resolveReviewThread: {
|
||||
thread: {
|
||||
id: string;
|
||||
isResolved: boolean;
|
||||
};
|
||||
};
|
||||
}>(RESOLVE_REVIEW_THREAD_MUTATION, {
|
||||
threadId: params.thread_id,
|
||||
});
|
||||
|
||||
const thread = response.resolveReviewThread.thread;
|
||||
log.info(`» resolved review thread ${thread.id}`);
|
||||
|
||||
return {
|
||||
thread_id: thread.id,
|
||||
is_resolved: thread.isResolved,
|
||||
success: true,
|
||||
message: "Thread resolved successfully",
|
||||
};
|
||||
} catch (error) {
|
||||
// handle common error cases gracefully
|
||||
const errorMessage = error instanceof Error ? error.message : String(error);
|
||||
const isResolved =
|
||||
errorMessage.includes("already resolved") || errorMessage.includes("isResolved");
|
||||
|
||||
const message = isResolved
|
||||
? `thread ${params.thread_id} was already resolved`
|
||||
: `failed to resolve thread ${params.thread_id}: ${errorMessage}`;
|
||||
log.info(message);
|
||||
|
||||
return {
|
||||
thread_id: params.thread_id,
|
||||
is_resolved: isResolved,
|
||||
success: isResolved,
|
||||
message,
|
||||
};
|
||||
}
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,720 +0,0 @@
|
||||
import { describe, expect, it } from "vitest";
|
||||
import { checkoutPrBranch, type PrData } from "./checkout.ts";
|
||||
import {
|
||||
AUTH_REQUIRED_REDIRECT,
|
||||
DeleteBranchTool,
|
||||
NOSHELL_BLOCKED_ARGS,
|
||||
NOSHELL_BLOCKED_SUBCOMMANDS,
|
||||
rejectIfLeadingDash,
|
||||
rejectSpecialRef,
|
||||
validateTagName,
|
||||
} from "./git.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
|
||||
// ─── git tool security tests ────────────────────────────────────────────
|
||||
//
|
||||
// the validation function below mirrors the logic in GitTool.execute, but
|
||||
// imports the AUTH/NOSHELL tables directly from git.ts so tests don't silently
|
||||
// drift if the runtime messages are edited. if the *algorithm* in git.ts
|
||||
// changes, validateGitCommand needs to be updated here too.
|
||||
|
||||
type ShellPermission = "disabled" | "restricted" | "enabled";
|
||||
|
||||
type ValidateGitParams = {
|
||||
command: string;
|
||||
args: string[];
|
||||
shellPermission: ShellPermission;
|
||||
};
|
||||
|
||||
// matches the arkregex pattern used in the Git schema
|
||||
const SUBCOMMAND_PATTERN = /^[a-z][a-z0-9-]*$/;
|
||||
|
||||
// mirrors the validation logic in GitTool.execute
|
||||
function validateGitCommand(params: ValidateGitParams): string | null {
|
||||
// schema-level regex validation — applies in ALL modes
|
||||
if (!SUBCOMMAND_PATTERN.test(params.command)) {
|
||||
return `command must be Git subcommand (was "${params.command}")`;
|
||||
}
|
||||
|
||||
const redirect = AUTH_REQUIRED_REDIRECT[params.command];
|
||||
if (redirect) {
|
||||
return `git ${params.command} requires authentication. ${redirect}`;
|
||||
}
|
||||
|
||||
// subcommand and arg blocking only applies when shell is disabled
|
||||
if (params.shellPermission === "disabled") {
|
||||
const blocked = NOSHELL_BLOCKED_SUBCOMMANDS[params.command];
|
||||
if (blocked) {
|
||||
return blocked;
|
||||
}
|
||||
|
||||
for (const arg of params.args) {
|
||||
const isBlocked = NOSHELL_BLOCKED_ARGS.some(
|
||||
(flag) => arg === flag || arg.startsWith(flag + "=")
|
||||
);
|
||||
if (isBlocked) {
|
||||
return `Blocked: '${arg}' flag can execute arbitrary code and is not allowed.`;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return null; // no error
|
||||
}
|
||||
|
||||
describe("git tool security - subcommand regex validation", () => {
|
||||
it("blocks -c flag as subcommand in ALL modes (alias injection)", () => {
|
||||
const modes: ShellPermission[] = ["disabled", "restricted", "enabled"];
|
||||
for (const mode of modes) {
|
||||
const error = validateGitCommand({
|
||||
command: "-c",
|
||||
args: ["alias.x=!evil-command", "x"],
|
||||
shellPermission: mode,
|
||||
});
|
||||
expect(error).toContain("Git subcommand");
|
||||
}
|
||||
});
|
||||
|
||||
it("blocks --exec-path as subcommand", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "--exec-path=/malicious",
|
||||
args: ["status"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("Git subcommand");
|
||||
});
|
||||
|
||||
it("blocks -C as subcommand (change directory)", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "-C",
|
||||
args: ["/tmp", "init"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("Git subcommand");
|
||||
});
|
||||
|
||||
it("blocks --config-env as subcommand", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "--config-env",
|
||||
args: ["core.pager=PATH", "log"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("Git subcommand");
|
||||
});
|
||||
|
||||
it("blocks all flags starting with - as subcommand", () => {
|
||||
const flags = ["-c", "-C", "-p", "--paginate", "--git-dir", "--work-tree", "--bare"];
|
||||
for (const flag of flags) {
|
||||
const error = validateGitCommand({
|
||||
command: flag,
|
||||
args: [],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("Git subcommand");
|
||||
}
|
||||
});
|
||||
|
||||
it("blocks uppercase subcommands", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "STATUS",
|
||||
args: [],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("Git subcommand");
|
||||
});
|
||||
|
||||
it("blocks subcommands with special characters", () => {
|
||||
const bad = ["git;evil", "status$(cmd)", "log|cat", "diff&bg"];
|
||||
for (const sub of bad) {
|
||||
const error = validateGitCommand({
|
||||
command: sub,
|
||||
args: [],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("Git subcommand");
|
||||
}
|
||||
});
|
||||
|
||||
it("allows valid subcommands", () => {
|
||||
const safe = ["status", "log", "diff", "show", "branch", "tag", "stash", "blame"];
|
||||
for (const sub of safe) {
|
||||
const error = validateGitCommand({
|
||||
command: sub,
|
||||
args: [],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
}
|
||||
});
|
||||
|
||||
it("allows hyphenated subcommands", () => {
|
||||
const safe = ["filter-branch", "update-index", "ls-remote", "ls-files", "rev-parse"];
|
||||
for (const sub of safe) {
|
||||
const error = validateGitCommand({
|
||||
command: sub,
|
||||
args: [],
|
||||
shellPermission: "enabled",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
describe("git tool security - blocked subcommands (disabled mode only)", () => {
|
||||
it("blocks config in disabled mode", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "config",
|
||||
args: ["core.hooksPath", "./hooks"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("git config");
|
||||
});
|
||||
|
||||
it("allows config in restricted mode (agent has shell)", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "config",
|
||||
args: ["filter.evil.clean", "bash -c 'evil'"],
|
||||
shellPermission: "restricted",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
});
|
||||
|
||||
it("blocks submodule in disabled mode", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "submodule",
|
||||
args: ["add", "https://evil.com/repo.git"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("submodule");
|
||||
});
|
||||
|
||||
it("allows submodule in restricted mode", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "submodule",
|
||||
args: ["add", "https://example.com/repo.git"],
|
||||
shellPermission: "restricted",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
});
|
||||
|
||||
it("blocks rebase in disabled mode", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "rebase",
|
||||
args: ["--exec", "evil-command", "HEAD~1"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("rebase");
|
||||
});
|
||||
|
||||
it("allows rebase in restricted mode", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "rebase",
|
||||
args: ["main"],
|
||||
shellPermission: "restricted",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
});
|
||||
|
||||
it("blocks bisect in disabled mode", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "bisect",
|
||||
args: ["run", "evil-command"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("bisect");
|
||||
});
|
||||
|
||||
it("blocks filter-branch in disabled mode", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "filter-branch",
|
||||
args: ["--tree-filter", "evil-command", "HEAD"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("filter-branch");
|
||||
});
|
||||
|
||||
// regression: NOSHELL_BLOCKED_ARGS matches only the long `--extcmd` /
|
||||
// `--extcmd=...` forms. `git difftool -x <cmd>` is the short form and
|
||||
// slipped through — verified executing a canary via
|
||||
// `yes | git difftool -x 'echo PWN' HEAD~1 HEAD` on a real repo.
|
||||
// globally blocking `-x` would false-positive on `git cherry-pick -x`
|
||||
// (a metadata-appending flag, not code exec), so difftool is blocked
|
||||
// at the subcommand level instead.
|
||||
it("blocks difftool in disabled mode (closes -x short-form bypass)", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "difftool",
|
||||
args: ["-x", "evil-command", "HEAD~1", "HEAD"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("difftool");
|
||||
});
|
||||
|
||||
it("blocks difftool even with --extcmd long form (subcommand-level stops it first)", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "difftool",
|
||||
args: ["--extcmd=evil-command", "HEAD"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("difftool");
|
||||
});
|
||||
|
||||
it("blocks mergetool in disabled mode (configured tool commands execute code)", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "mergetool",
|
||||
args: [],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("mergetool");
|
||||
});
|
||||
|
||||
it("allows blocked subcommands in enabled mode", () => {
|
||||
const blocked = [
|
||||
"config",
|
||||
"submodule",
|
||||
"rebase",
|
||||
"bisect",
|
||||
"filter-branch",
|
||||
"difftool",
|
||||
"mergetool",
|
||||
];
|
||||
for (const sub of blocked) {
|
||||
const error = validateGitCommand({
|
||||
command: sub,
|
||||
args: [],
|
||||
shellPermission: "enabled",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
}
|
||||
});
|
||||
|
||||
it("allows blocked subcommands in restricted mode (stripped env is security boundary)", () => {
|
||||
const blocked = [
|
||||
"config",
|
||||
"submodule",
|
||||
"rebase",
|
||||
"bisect",
|
||||
"filter-branch",
|
||||
"difftool",
|
||||
"mergetool",
|
||||
];
|
||||
for (const sub of blocked) {
|
||||
const error = validateGitCommand({
|
||||
command: sub,
|
||||
args: [],
|
||||
shellPermission: "restricted",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
describe("git tool security - blocked arg flags (disabled mode only)", () => {
|
||||
it("blocks --exec in args (disabled)", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "log",
|
||||
args: ["--exec", "evil-command"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("arbitrary code");
|
||||
});
|
||||
|
||||
it("blocks --exec= in args (disabled)", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "log",
|
||||
args: ["--exec=evil-command"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("arbitrary code");
|
||||
});
|
||||
|
||||
it("blocks --extcmd in args (disabled) — on a subcommand that isn't blocked at the subcommand level", () => {
|
||||
// difftool itself is now blocked at the subcommand level (closes the `-x`
|
||||
// short-form bypass), so the arg-level check never runs for difftool in
|
||||
// disabled mode. use `log --extcmd=...` to exercise the arg-level code
|
||||
// path: `log` isn't in NOSHELL_BLOCKED_SUBCOMMANDS, so validation falls
|
||||
// through to the arg scan and the --extcmd block triggers.
|
||||
const error = validateGitCommand({
|
||||
command: "log",
|
||||
args: ["--extcmd=evil-command", "HEAD~1"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("arbitrary code");
|
||||
});
|
||||
|
||||
it("blocks --upload-pack in args (disabled)", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "ls-remote",
|
||||
args: ["--upload-pack=evil"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toContain("arbitrary code");
|
||||
});
|
||||
|
||||
it("allows --exec in restricted mode (agent has shell)", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "rebase",
|
||||
args: ["--exec", "npm test", "HEAD~1"],
|
||||
shellPermission: "restricted",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
});
|
||||
|
||||
it("allows --extcmd in restricted mode", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "difftool",
|
||||
args: ["--extcmd=less"],
|
||||
shellPermission: "restricted",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
});
|
||||
|
||||
it("allows blocked args in enabled mode", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "difftool",
|
||||
args: ["--extcmd=less"],
|
||||
shellPermission: "enabled",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
});
|
||||
|
||||
it("allows normal args in disabled mode", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "log",
|
||||
args: ["--oneline", "-10", "--format=%H %s"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
});
|
||||
|
||||
it("does not false-positive on --exclude-standard (not --exec)", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "ls-files",
|
||||
args: ["--exclude-standard"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
});
|
||||
|
||||
it("does not false-positive on --execute (not --exec=)", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "log",
|
||||
args: ["--execute-something"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
});
|
||||
|
||||
it("does not false-positive on -c (combined diff format for git log)", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "log",
|
||||
args: ["-c", "--oneline"],
|
||||
shellPermission: "disabled",
|
||||
});
|
||||
expect(error).toBeNull();
|
||||
});
|
||||
});
|
||||
|
||||
describe("git tool security - auth redirect", () => {
|
||||
it("redirects push in all modes", () => {
|
||||
const modes: ShellPermission[] = ["disabled", "restricted", "enabled"];
|
||||
for (const mode of modes) {
|
||||
const error = validateGitCommand({
|
||||
command: "push",
|
||||
args: [],
|
||||
shellPermission: mode,
|
||||
});
|
||||
expect(error).toContain("authentication");
|
||||
}
|
||||
});
|
||||
|
||||
it("redirects fetch", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "fetch",
|
||||
args: [],
|
||||
shellPermission: "enabled",
|
||||
});
|
||||
expect(error).toContain("authentication");
|
||||
});
|
||||
|
||||
it("redirects pull", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "pull",
|
||||
args: [],
|
||||
shellPermission: "enabled",
|
||||
});
|
||||
expect(error).toContain("authentication");
|
||||
});
|
||||
|
||||
it("pull redirect recommends merge (not rebase) regardless of shell mode", () => {
|
||||
// F5 regression: the redirect previously suggested "or 'rebase' unless
|
||||
// shell is disabled", which was misleading noise under shell=disabled
|
||||
// (rebase is blocked by NOSHELL_BLOCKED_SUBCOMMANDS there) and redundant
|
||||
// under other modes (agents can invoke rebase directly if they want).
|
||||
// the current redirect names only merge — the one alternative that
|
||||
// works in every shell mode.
|
||||
for (const mode of ["disabled", "restricted", "enabled"] as ShellPermission[]) {
|
||||
const error = validateGitCommand({
|
||||
command: "pull",
|
||||
args: [],
|
||||
shellPermission: mode,
|
||||
});
|
||||
expect(error).toContain("merge");
|
||||
expect(error).not.toMatch(/rebase/i);
|
||||
}
|
||||
});
|
||||
|
||||
it("redirects clone", () => {
|
||||
const error = validateGitCommand({
|
||||
command: "clone",
|
||||
args: [],
|
||||
shellPermission: "enabled",
|
||||
});
|
||||
expect(error).toContain("authentication");
|
||||
});
|
||||
});
|
||||
|
||||
// ─── dependency install security tests ──────────────────────────────────
|
||||
|
||||
// mirrors the logic in dependencies.ts startInstallation()
|
||||
function shouldIgnoreScripts(shellPermission: ShellPermission): boolean {
|
||||
return shellPermission === "disabled";
|
||||
}
|
||||
|
||||
describe("git tool security - rejectIfLeadingDash", () => {
|
||||
it("rejects refs starting with --", () => {
|
||||
expect(() => rejectIfLeadingDash("--upload-pack=evil", "ref")).toThrow(
|
||||
/Blocked: ref '--upload-pack=evil' starts with '-'/
|
||||
);
|
||||
});
|
||||
|
||||
it("rejects refs starting with a single -", () => {
|
||||
expect(() => rejectIfLeadingDash("-c", "ref")).toThrow(/starts with '-'/);
|
||||
});
|
||||
|
||||
it("allows normal branch names", () => {
|
||||
expect(() => rejectIfLeadingDash("main", "ref")).not.toThrow();
|
||||
expect(() => rejectIfLeadingDash("feature/foo", "ref")).not.toThrow();
|
||||
expect(() => rejectIfLeadingDash("pull/123/head", "ref")).not.toThrow();
|
||||
expect(() => rejectIfLeadingDash("release-1.2", "ref")).not.toThrow();
|
||||
});
|
||||
|
||||
it("allows branch names containing dashes (not leading)", () => {
|
||||
expect(() => rejectIfLeadingDash("feat-x", "branchName")).not.toThrow();
|
||||
});
|
||||
|
||||
it("customizes the kind label in the error", () => {
|
||||
expect(() => rejectIfLeadingDash("-evil", "branchName")).toThrow(/branchName '-evil'/);
|
||||
});
|
||||
});
|
||||
|
||||
describe("git tool security - rejectSpecialRef (default-branch bypass)", () => {
|
||||
// an agent in restricted mode normally can't push to the default branch —
|
||||
// PushBranchTool compares the resolved remoteBranch against defaultBranch
|
||||
// and blocks the match. before this guard, passing `branchName:
|
||||
// "refs/heads/main"` bypassed the check (the exact-string compare fails
|
||||
// because "refs/heads/main" !== "main") while git still pushed to main.
|
||||
it("rejects fully-qualified refs/heads/... branch names", () => {
|
||||
expect(() => rejectSpecialRef("refs/heads/main", "branch")).toThrow(/fully-qualified ref path/);
|
||||
expect(() => rejectSpecialRef("refs/heads/feature/foo", "branch")).toThrow(
|
||||
/fully-qualified ref path/
|
||||
);
|
||||
});
|
||||
|
||||
it("rejects refs/tags/... and refs/remotes/... forms too", () => {
|
||||
// push_branch only pushes branches, so every refs/-prefixed form is
|
||||
// illegitimate here — no need to whitelist refs/heads/ alone.
|
||||
expect(() => rejectSpecialRef("refs/tags/v1", "branch")).toThrow(/fully-qualified ref path/);
|
||||
expect(() => rejectSpecialRef("refs/remotes/origin/main", "branch")).toThrow(
|
||||
/fully-qualified ref path/
|
||||
);
|
||||
});
|
||||
|
||||
it("rejects symbolic refs that resolve to arbitrary commits", () => {
|
||||
// `git push origin HEAD` and friends pick up whatever commit those refs
|
||||
// point at — not what the agent named, and not constrained by the
|
||||
// default-branch guard either.
|
||||
for (const ref of ["HEAD", "FETCH_HEAD", "ORIG_HEAD", "MERGE_HEAD"]) {
|
||||
expect(() => rejectSpecialRef(ref, "branch")).toThrow(/symbolic ref/);
|
||||
}
|
||||
});
|
||||
|
||||
it("still rejects leading-dash (inherits rejectIfLeadingDash)", () => {
|
||||
expect(() => rejectSpecialRef("-evil", "branch")).toThrow(/starts with '-'/);
|
||||
});
|
||||
|
||||
it("allows bare branch names including ones with slashes", () => {
|
||||
for (const b of ["main", "pr-123", "feature/foo", "release/v2", "user/name/topic"]) {
|
||||
expect(() => rejectSpecialRef(b, "branch")).not.toThrow();
|
||||
}
|
||||
});
|
||||
|
||||
// refspec syntax: git push accepts `[+]src[:dst]`. without these checks an
|
||||
// agent under push:restricted smuggles a full refspec through branchName,
|
||||
// and the downstream exact-string default-branch guard misses because the
|
||||
// value isn't literally "main". these are the exact attacks the new
|
||||
// rejection closes.
|
||||
it("rejects ':' (refspec src:dst split that targets main)", () => {
|
||||
expect(() => rejectSpecialRef("evil:refs/heads/main", "branch")).toThrow(
|
||||
/refspec\/revision syntax/
|
||||
);
|
||||
});
|
||||
|
||||
it("rejects leading ':' (delete-ref refspec deletes remote main)", () => {
|
||||
expect(() => rejectSpecialRef(":refs/heads/main", "branch")).toThrow(
|
||||
/refspec\/revision syntax/
|
||||
);
|
||||
});
|
||||
|
||||
it("rejects leading '+' (force-push refspec prefix)", () => {
|
||||
expect(() => rejectSpecialRef("+main", "branch")).toThrow(/refspec\/revision syntax/);
|
||||
});
|
||||
|
||||
it("rejects '~' and '^' (revision modifiers that resolve to parents)", () => {
|
||||
expect(() => rejectSpecialRef("main~1", "branch")).toThrow(/refspec\/revision syntax/);
|
||||
expect(() => rejectSpecialRef("main^", "branch")).toThrow(/refspec\/revision syntax/);
|
||||
});
|
||||
|
||||
it("rejects whitespace (not permitted in git branch names)", () => {
|
||||
expect(() => rejectSpecialRef("main other", "branch")).toThrow(/refspec\/revision syntax/);
|
||||
expect(() => rejectSpecialRef("foo\tbar", "branch")).toThrow(/refspec\/revision syntax/);
|
||||
});
|
||||
|
||||
it("rejects shell/glob metacharacters forbidden in branch names", () => {
|
||||
for (const b of ["main?", "main*", "main[", "main\\x"]) {
|
||||
expect(() => rejectSpecialRef(b, "branch")).toThrow(/refspec\/revision syntax/);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
describe("git tool security - validateTagName (push_tags refspec injection)", () => {
|
||||
it("rejects tags containing ':' (refspec src:dst split)", () => {
|
||||
// without this, "foo:refs/heads/main" would push the local refs/tags/foo's
|
||||
// commit to remote main and bypass the push_branch default-branch guard.
|
||||
expect(() => validateTagName("foo:refs/heads/main")).toThrow(/could be parsed as a refspec/);
|
||||
expect(() => validateTagName("v1.0:bar")).toThrow(/refspec/);
|
||||
});
|
||||
|
||||
it("rejects tags with leading '-' (flag injection)", () => {
|
||||
expect(() => validateTagName("-c")).toThrow(/starts with '-'/);
|
||||
expect(() => validateTagName("--upload-pack=evil")).toThrow(/starts with '-'/);
|
||||
});
|
||||
|
||||
it("rejects tags with whitespace or control chars", () => {
|
||||
expect(() => validateTagName("foo bar")).toThrow(/could be parsed/);
|
||||
expect(() => validateTagName("foo\nrefs/heads/main")).toThrow(/could be parsed/);
|
||||
});
|
||||
|
||||
it("rejects tags with shell / refspec metacharacters", () => {
|
||||
const bad = ["foo~1", "foo^", "foo?", "foo*", "foo[", "foo\\bar", "foo;evil"];
|
||||
for (const t of bad) {
|
||||
expect(() => validateTagName(t)).toThrow(/could be parsed/);
|
||||
}
|
||||
});
|
||||
|
||||
it("allows plausible tag names", () => {
|
||||
const ok = ["v1.0.0", "release-2024-01", "feature/thing", "v1", "hotfix_1"];
|
||||
for (const t of ok) {
|
||||
expect(() => validateTagName(t)).not.toThrow();
|
||||
}
|
||||
});
|
||||
|
||||
it("rejects empty tag", () => {
|
||||
expect(() => validateTagName("")).toThrow(/could be parsed/);
|
||||
});
|
||||
});
|
||||
|
||||
describe("DeleteBranchTool - default-branch guard", () => {
|
||||
// push: enabled authorizes pushes — not wholesale removal of the repo's
|
||||
// primary branch. GitHub branch protection usually blocks this at the
|
||||
// remote, but not every repo has protection on, so guard locally too.
|
||||
function makeCtx(defaultBranch: string): ToolContext {
|
||||
return {
|
||||
payload: { push: "enabled" },
|
||||
repo: { data: { default_branch: defaultBranch } },
|
||||
gitToken: "test-token",
|
||||
} as unknown as ToolContext;
|
||||
}
|
||||
|
||||
it("blocks deletion of the default branch even with push: enabled", async () => {
|
||||
const tool = DeleteBranchTool(makeCtx("main"));
|
||||
const result = (await (tool.execute as (p: unknown, ctx: unknown) => Promise<unknown>)(
|
||||
{ branchName: "main" },
|
||||
{} as Parameters<NonNullable<typeof tool.execute>>[1]
|
||||
)) as { content: [{ text: string }]; isError?: boolean };
|
||||
/* cast: FastMCP execute returns a union of content shapes; these tests
|
||||
always return the handleToolError envelope, which matches this shape. */
|
||||
expect(result.isError).toBe(true);
|
||||
expect(result.content[0].text).toMatch(/default branch/i);
|
||||
});
|
||||
|
||||
it("honors the repo's actual default branch name (not just 'main')", async () => {
|
||||
const tool = DeleteBranchTool(makeCtx("trunk"));
|
||||
const result = (await (tool.execute as (p: unknown, ctx: unknown) => Promise<unknown>)(
|
||||
{ branchName: "trunk" },
|
||||
{} as Parameters<NonNullable<typeof tool.execute>>[1]
|
||||
)) as { content: [{ text: string }]; isError?: boolean };
|
||||
/* cast: FastMCP execute returns a union of content shapes; these tests
|
||||
always return the handleToolError envelope, which matches this shape. */
|
||||
expect(result.isError).toBe(true);
|
||||
expect(result.content[0].text).toMatch(/default branch 'trunk'/);
|
||||
});
|
||||
|
||||
it("still blocks when the agent tries the refs/heads/... bypass", async () => {
|
||||
// rejectSpecialRef catches this before the default-branch check, but the
|
||||
// test asserts the chain stops it — either error is acceptable, just not
|
||||
// a successful delete.
|
||||
const tool = DeleteBranchTool(makeCtx("main"));
|
||||
const result = (await (tool.execute as (p: unknown, ctx: unknown) => Promise<unknown>)(
|
||||
{ branchName: "refs/heads/main" },
|
||||
{} as Parameters<NonNullable<typeof tool.execute>>[1]
|
||||
)) as { content: [{ text: string }]; isError?: boolean };
|
||||
/* cast: FastMCP execute returns a union of content shapes; these tests
|
||||
always return the handleToolError envelope, which matches this shape. */
|
||||
expect(result.isError).toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
describe("git tool security - checkoutPrBranch rejects malicious PR refs", () => {
|
||||
// PR head/base ref names are attacker-controlled on forks (PR author picks
|
||||
// headRef freely, and baseRef could be a maliciously-named branch on the
|
||||
// target repo). they flow into `git fetch origin <ref>` and similar, so a
|
||||
// ref starting with '-' would be parsed as a flag, not a refspec.
|
||||
// checkoutPrBranch validates them up-front with rejectIfLeadingDash.
|
||||
const basePr: PrData = {
|
||||
number: 1,
|
||||
headSha: "a".repeat(40),
|
||||
headRef: "feature",
|
||||
headRepoFullName: "user/repo",
|
||||
baseRef: "main",
|
||||
baseRepoFullName: "user/repo",
|
||||
maintainerCanModify: false,
|
||||
};
|
||||
// checkoutPrBranch validates before any async call, so the params never get
|
||||
// dereferenced — a cast is enough to satisfy the type checker.
|
||||
const dummyParams = {} as Parameters<typeof checkoutPrBranch>[1];
|
||||
|
||||
it("rejects a leading-dash headRef before any git call", async () => {
|
||||
await expect(
|
||||
checkoutPrBranch({ ...basePr, headRef: "-upload-pack=evil" }, dummyParams)
|
||||
).rejects.toThrow(/PR head ref.*starts with '-'/);
|
||||
});
|
||||
|
||||
it("rejects a leading-dash baseRef before any git call", async () => {
|
||||
await expect(
|
||||
checkoutPrBranch({ ...basePr, baseRef: "--config-env=FOO=BAR" }, dummyParams)
|
||||
).rejects.toThrow(/PR base ref.*starts with '-'/);
|
||||
});
|
||||
});
|
||||
|
||||
describe("dependency install - ignore-scripts logic", () => {
|
||||
it("ignoreScripts is true when shell is disabled", () => {
|
||||
expect(shouldIgnoreScripts("disabled")).toBe(true);
|
||||
});
|
||||
|
||||
it("ignoreScripts is false when shell is restricted (scripts run in stripped env)", () => {
|
||||
expect(shouldIgnoreScripts("restricted")).toBe(false);
|
||||
});
|
||||
|
||||
it("ignoreScripts is false when shell is enabled", () => {
|
||||
expect(shouldIgnoreScripts("enabled")).toBe(false);
|
||||
});
|
||||
});
|
||||
@@ -1,181 +0,0 @@
|
||||
import { type } from "arktype";
|
||||
import { formatMcpToolRef } from "../external.ts";
|
||||
import type { Mode } from "../modes.ts";
|
||||
import { apiFetch } from "../utils/apiFetch.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
export const SelectModeParams = type({
|
||||
mode: type.string.describe(
|
||||
"the name of the mode to select (e.g., 'Build', 'Plan', 'Review', 'IncrementalReview', 'Fix', 'AddressReviews', 'Task', 'ResolveConflicts')"
|
||||
),
|
||||
"issue_number?": type("number").describe(
|
||||
"optional issue number; when provided with Plan mode, used to look up an existing plan comment for this issue (edit vs create)"
|
||||
),
|
||||
});
|
||||
|
||||
function resolveMode(modes: Mode[], modeName: string): Mode | null {
|
||||
return modes.find((m) => m.name.toLowerCase() === modeName.toLowerCase()) ?? null;
|
||||
}
|
||||
|
||||
function buildModeOverrides(t: (name: string) => string): Record<string, string> {
|
||||
return {
|
||||
PlanEdit: `### Checklist (editing existing plan)
|
||||
|
||||
An existing plan comment was found for this issue. Update that comment with the revised plan — do not create a new plan comment.
|
||||
|
||||
1. **task list**: create your task list for this run as your first action.
|
||||
2. Use \`previousPlanBody\` from this response as the plan to revise; do not call \`get_issue\` or \`get_issue_comments\`.
|
||||
3. Revise the plan based on the user's request:
|
||||
- incorporate the current plan (\`previousPlanBody\`) and the user's revision request
|
||||
- gather relevant codebase context (file paths, architecture notes from AGENTS.md)
|
||||
- produce a structured plan with clear milestones
|
||||
4. Call \`${t("report_progress")}\` with the full revised plan text and \`{ target_plan_comment: true }\` so it updates the existing plan comment (not the progress comment).
|
||||
5. Then post a short note to the progress comment (e.g. "Plan has been updated in the comment above.") via \`${t("report_progress")}\` so it is not left as "Leaping...".`,
|
||||
};
|
||||
}
|
||||
|
||||
type OrchestratorGuidance = {
|
||||
modeName: string;
|
||||
description: string;
|
||||
orchestratorGuidance: string;
|
||||
};
|
||||
|
||||
// IncrementalReview inherits Review's user instructions, Fix inherits Build's
|
||||
const modeInstructionParent: Record<string, string> = {
|
||||
IncrementalReview: "Review",
|
||||
Fix: "Build",
|
||||
};
|
||||
|
||||
function buildOrchestratorGuidance(
|
||||
ctx: ToolContext,
|
||||
mode: Mode,
|
||||
overrideGuidance?: string
|
||||
): OrchestratorGuidance {
|
||||
const hardcoded = overrideGuidance ?? mode.prompt ?? "";
|
||||
const lookupKey = modeInstructionParent[mode.name] ?? mode.name;
|
||||
const userInstructions = ctx.modeInstructions[lookupKey] ?? "";
|
||||
const guidance = [hardcoded, userInstructions].filter(Boolean).join("\n\n");
|
||||
return {
|
||||
modeName: mode.name,
|
||||
description: mode.description,
|
||||
orchestratorGuidance: guidance,
|
||||
};
|
||||
}
|
||||
|
||||
// matches the API response for /repo/[owner]/[repo]/issue/[issueNumber]/plan-comment
|
||||
export type PlanCommentResponsePayload = { error: string } | { commentId: number; body: string };
|
||||
|
||||
// IMPORTANT: this route authenticates via GitHub installation token (getEnrichedRepo),
|
||||
// NOT the Pullfrog API JWT (ctx.apiToken). use ctx.githubInstallationToken here.
|
||||
// see wiki/api-auth.md for the two auth patterns.
|
||||
async function fetchExistingPlanComment(
|
||||
ctx: ToolContext,
|
||||
issueNumber: number
|
||||
): Promise<Extract<PlanCommentResponsePayload, { commentId: number }> | null> {
|
||||
if (!ctx.githubInstallationToken) return null;
|
||||
try {
|
||||
const response = await apiFetch({
|
||||
path: `/api/repo/${ctx.repo.owner}/${ctx.repo.name}/issue/${issueNumber}/plan-comment`,
|
||||
method: "GET",
|
||||
headers: { authorization: `Bearer ${ctx.githubInstallationToken}` },
|
||||
signal: AbortSignal.timeout(10_000),
|
||||
});
|
||||
const data = (await response.json()) as PlanCommentResponsePayload;
|
||||
return response.ok && "commentId" in data ? data : null;
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
const SUMMARY_MODES = new Set(["Review", "IncrementalReview", "Task"]);
|
||||
|
||||
/** modes that gain the PR summary edit step when toolState.summaryFilePath is set.
|
||||
*
|
||||
* NOTE: this snapshot is an internal artifact consumed by future agent runs. it is
|
||||
* deliberately NOT shaped by user-supplied summary instructions — those would warp
|
||||
* the durable agent context. user-facing summarization (e.g. the review body's
|
||||
* "Reviewed changes" section) is governed by review-mode prompts and review
|
||||
* instructions, separately from this snapshot. */
|
||||
function buildSummaryAddendum(t: (name: string) => string, ctx: ToolContext): string {
|
||||
const filePath = ctx.toolState.summaryFilePath;
|
||||
if (!filePath) return "";
|
||||
return `### PR summary snapshot — required step
|
||||
|
||||
A rolling PR summary lives at \`${filePath}\`. It is your durable cross-run agent context — a functional summary of what this PR does, the subsystems and files it touches, the material behavior of its changes, and any risks or open questions worth carrying forward. It is NOT a chronological log of past review runs; commit-level history can already be reconstructed from \`${t("list_pull_request_reviews")}\`.
|
||||
|
||||
How to use it:
|
||||
|
||||
- read \`${filePath}\` at the START of the run, alongside the diff. it represents what previous agent runs already understood about this PR — absorb it before picking lenses or crafting subagent dispatch prompts. if it's a fresh seed (file is one or two lines), this is a first review and you'll be filling it in from the diff.
|
||||
- let the snapshot inform triage and dispatch. when it already tracks a risk, your lens prompts to subagents are stronger when they reference that context (e.g. "the JSDoc explicitly scopes to code points — do not flag grapheme-cluster issues" if the snapshot already documents that contract). when something the snapshot tracks is now resolved by new commits, note that. when new commits introduce something the snapshot doesn't yet describe, that's exactly where your fan-out should focus.
|
||||
- update the file in place to reflect the PR's CURRENT state. revise stale claims, drop resolved risks, add new behavior or risks. accuracy over breadth — every claim must be grounded in the diff. write for the next agent run, not for a human.
|
||||
- structure however serves THIS PR. there is no required section template. a refactor might organize by renamed export and call-site impact; a feature by capability; a billing change by money path. a compact note of which commit ranges have been reviewed should always be present so future runs scope correctly, but the rest is your call. when the structure works across runs, keep it stable so range-diffs are clean; when the PR's character changes (e.g. scope expands), reshape.
|
||||
|
||||
Do NOT call \`${t("create_issue_comment")}\` for the summary — the server reads this file at end-of-run and persists it. The file edit is mandatory regardless of whether a review is submitted; the snapshot feeds the next run.`;
|
||||
}
|
||||
|
||||
export function SelectModeTool(ctx: ToolContext) {
|
||||
const t = (name: string) => formatMcpToolRef(ctx.agentId, name);
|
||||
const overrides = buildModeOverrides(t);
|
||||
|
||||
return tool({
|
||||
name: "select_mode",
|
||||
description:
|
||||
"Select a mode and receive step-by-step guidance on how to handle the task. Call this to understand the best workflow for the current mode. " +
|
||||
'Example: `select_mode({ mode: "Review" })` or `select_mode({ mode: "Plan", issue_number: 1234 })`.',
|
||||
parameters: SelectModeParams,
|
||||
execute: execute(async (params) => {
|
||||
if (ctx.toolState.selectedMode) {
|
||||
return {
|
||||
error: `mode already selected: "${ctx.toolState.selectedMode}". mode selection is final and cannot be changed. complete your current workflow within this mode.`,
|
||||
};
|
||||
}
|
||||
|
||||
const modeName = params.mode;
|
||||
|
||||
const selectedMode = resolveMode(ctx.modes, modeName);
|
||||
|
||||
if (!selectedMode) {
|
||||
const availableModes = ctx.modes.map((m) => m.name).join(", ");
|
||||
return {
|
||||
error: `mode "${modeName}" not found. available modes: ${availableModes}`,
|
||||
availableModes: ctx.modes.map((m) => ({
|
||||
name: m.name,
|
||||
description: m.description,
|
||||
})),
|
||||
};
|
||||
}
|
||||
|
||||
ctx.toolState.selectedMode = selectedMode.name;
|
||||
|
||||
if (selectedMode.name === "Plan") {
|
||||
const issueNumber = params.issue_number ?? ctx.payload.event.issue_number;
|
||||
if (issueNumber !== undefined) {
|
||||
const existing = await fetchExistingPlanComment(ctx, issueNumber);
|
||||
if (existing !== null) {
|
||||
ctx.toolState.existingPlanCommentId = existing.commentId;
|
||||
ctx.toolState.previousPlanBody = existing.body;
|
||||
return {
|
||||
...buildOrchestratorGuidance(ctx, selectedMode, overrides.PlanEdit),
|
||||
previousPlanBody: existing.body,
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const summaryAddendum = SUMMARY_MODES.has(selectedMode.name)
|
||||
? buildSummaryAddendum(t, ctx)
|
||||
: "";
|
||||
|
||||
const base = buildOrchestratorGuidance(ctx, selectedMode);
|
||||
if (summaryAddendum.length > 0) {
|
||||
return {
|
||||
...base,
|
||||
orchestratorGuidance: `${base.orchestratorGuidance}\n\n${summaryAddendum}`,
|
||||
summaryFilePath: ctx.toolState.summaryFilePath,
|
||||
};
|
||||
}
|
||||
return base;
|
||||
}),
|
||||
});
|
||||
}
|
||||
-298
@@ -1,298 +0,0 @@
|
||||
// this must be imported first
|
||||
import "./arkConfig.ts";
|
||||
import { createServer } from "node:net";
|
||||
import { setTimeout as sleep } from "node:timers/promises";
|
||||
import { FastMCP, type Tool } from "fastmcp";
|
||||
import { type AgentId, pullfrogMcpName } from "../external.ts";
|
||||
import type { Mode } from "../modes.ts";
|
||||
import type { ToolState } from "../toolState.ts";
|
||||
import { closeBrowserDaemon } from "../utils/browser.ts";
|
||||
import type { OctokitWithPlugins } from "../utils/github.ts";
|
||||
import type { ResolvedPayload } from "../utils/payload.ts";
|
||||
import type { AccountPlan } from "../utils/runContext.ts";
|
||||
import type { RunContextData } from "../utils/runContextData.ts";
|
||||
import { CheckoutPrTool } from "./checkout.ts";
|
||||
import { GetCheckSuiteLogsTool } from "./checkSuite.ts";
|
||||
import {
|
||||
CreateCommentTool,
|
||||
EditCommentTool,
|
||||
ReplyToReviewCommentTool,
|
||||
ReportProgressTool,
|
||||
} from "./comment.ts";
|
||||
import { CommitInfoTool } from "./commitInfo.ts";
|
||||
import {
|
||||
AwaitDependencyInstallationTool,
|
||||
StartDependencyInstallationTool,
|
||||
} from "./dependencies.ts";
|
||||
import { DeleteBranchTool, GitFetchTool, GitTool, PushBranchTool, PushTagsTool } from "./git.ts";
|
||||
import { IssueTool } from "./issue.ts";
|
||||
import { GetIssueCommentsTool } from "./issueComments.ts";
|
||||
import { GetIssueEventsTool } from "./issueEvents.ts";
|
||||
import { IssueInfoTool } from "./issueInfo.ts";
|
||||
import { AddLabelsTool } from "./labels.ts";
|
||||
import { SetOutputTool } from "./output.ts";
|
||||
import { CreatePullRequestTool, UpdatePullRequestBodyTool } from "./pr.ts";
|
||||
import { PullRequestInfoTool } from "./prInfo.ts";
|
||||
import { CreatePullRequestReviewTool } from "./review.ts";
|
||||
import {
|
||||
GetReviewCommentsTool,
|
||||
ListPullRequestReviewsTool,
|
||||
ResolveReviewThreadTool,
|
||||
} from "./reviewComments.ts";
|
||||
import { SelectModeTool } from "./selectMode.ts";
|
||||
import { addTools } from "./shared.ts";
|
||||
import { KillBackgroundTool, ShellTool } from "./shell.ts";
|
||||
import { UploadFileTool } from "./upload.ts";
|
||||
|
||||
export interface ToolContext {
|
||||
agentId: AgentId;
|
||||
repo: RunContextData["repo"];
|
||||
payload: ResolvedPayload;
|
||||
octokit: OctokitWithPlugins;
|
||||
githubInstallationToken: string;
|
||||
gitToken: string;
|
||||
apiToken: string;
|
||||
modes: Mode[];
|
||||
postCheckoutScript: string | null;
|
||||
prepushScript: string | null;
|
||||
prApproveEnabled: boolean;
|
||||
modeInstructions: Record<string, string>;
|
||||
toolState: ToolState;
|
||||
runId: number | undefined;
|
||||
jobId: string | undefined;
|
||||
mcpServerUrl: string;
|
||||
tmpdir: string;
|
||||
// repo-level OSS flag + account-level billing plan. together they decide
|
||||
// whether pullfrog is paying for marginal infra — see `isInfraCovered` in
|
||||
// the server's `utils/billing.ts`. plan gating for endpoints like the
|
||||
// learnings PATCH is enforced server-side via 402, so we pass plan along
|
||||
// mostly for future use / observability. see wiki/pricing.md.
|
||||
oss: boolean;
|
||||
plan: AccountPlan;
|
||||
// resolved upstream model specifier (e.g. "google/gemini-3.1-pro-preview").
|
||||
// undefined when payload.proxyModel is set or when the alias is unresolvable.
|
||||
// used by the schema sanitizer to detect Gemini-routed traffic.
|
||||
resolvedModel: string | undefined;
|
||||
}
|
||||
|
||||
const mcpPortStart = 3764;
|
||||
const mcpPortAttempts = 100;
|
||||
const mcpHost = "127.0.0.1";
|
||||
const mcpEndpoint = "/mcp";
|
||||
|
||||
function readEnvPort(): number | null {
|
||||
const rawPort = process.env.PULLFROG_MCP_PORT;
|
||||
if (!rawPort) return null;
|
||||
const parsed = Number.parseInt(rawPort, 10);
|
||||
if (!Number.isInteger(parsed) || parsed <= 0 || parsed > 65535) {
|
||||
throw new Error(`invalid PULLFROG_MCP_PORT: ${rawPort}`);
|
||||
}
|
||||
return parsed;
|
||||
}
|
||||
|
||||
function isPortAvailable(port: number): Promise<boolean> {
|
||||
return new Promise((resolve) => {
|
||||
const server = createServer();
|
||||
server.unref();
|
||||
server.once("error", () => resolve(false));
|
||||
server.once("listening", () => {
|
||||
server.close(() => resolve(true));
|
||||
});
|
||||
server.listen(port, mcpHost);
|
||||
});
|
||||
}
|
||||
|
||||
function getErrorMessage(error: unknown): string {
|
||||
if (error instanceof Error) return error.message;
|
||||
return String(error);
|
||||
}
|
||||
|
||||
function isAddressInUse(error: unknown): boolean {
|
||||
const message = getErrorMessage(error).toLowerCase();
|
||||
return message.includes("eaddrinuse") || message.includes("address already in use");
|
||||
}
|
||||
|
||||
type JsonSchema = Record<string, unknown>;
|
||||
|
||||
function buildCommonTools(ctx: ToolContext, outputSchema?: JsonSchema): Tool<any, any>[] {
|
||||
const tools: Tool<any, any>[] = [
|
||||
StartDependencyInstallationTool(ctx),
|
||||
AwaitDependencyInstallationTool(ctx),
|
||||
CreateCommentTool(ctx),
|
||||
EditCommentTool(ctx),
|
||||
ReplyToReviewCommentTool(ctx),
|
||||
IssueTool(ctx),
|
||||
IssueInfoTool(ctx),
|
||||
GetIssueCommentsTool(ctx),
|
||||
GetIssueEventsTool(ctx),
|
||||
CreatePullRequestReviewTool(ctx),
|
||||
PullRequestInfoTool(ctx),
|
||||
CommitInfoTool(ctx),
|
||||
CheckoutPrTool(ctx),
|
||||
GetReviewCommentsTool(ctx),
|
||||
ListPullRequestReviewsTool(ctx),
|
||||
ResolveReviewThreadTool(ctx),
|
||||
GetCheckSuiteLogsTool(ctx),
|
||||
AddLabelsTool(ctx),
|
||||
GitTool(ctx),
|
||||
GitFetchTool(ctx),
|
||||
UploadFileTool(ctx),
|
||||
];
|
||||
|
||||
const isStandalone = ctx.payload.event.trigger === "unknown";
|
||||
if (isStandalone || outputSchema) {
|
||||
tools.push(SetOutputTool(ctx, outputSchema));
|
||||
}
|
||||
|
||||
// MCP shell with filtered env (no secrets leaked to child processes)
|
||||
if (ctx.payload.shell === "restricted") {
|
||||
tools.push(ShellTool(ctx));
|
||||
tools.push(KillBackgroundTool(ctx));
|
||||
}
|
||||
|
||||
return tools;
|
||||
}
|
||||
|
||||
function buildOrchestratorTools(ctx: ToolContext, outputSchema?: JsonSchema): Tool<any, any>[] {
|
||||
return [
|
||||
...buildCommonTools(ctx, outputSchema),
|
||||
ReportProgressTool(ctx),
|
||||
SelectModeTool(ctx),
|
||||
PushBranchTool(ctx),
|
||||
PushTagsTool(ctx),
|
||||
DeleteBranchTool(ctx),
|
||||
CreatePullRequestTool(ctx),
|
||||
UpdatePullRequestBodyTool(ctx),
|
||||
];
|
||||
}
|
||||
|
||||
type McpStartResult = {
|
||||
server: FastMCP;
|
||||
url: string;
|
||||
port: number;
|
||||
};
|
||||
|
||||
async function tryStartMcpServer(
|
||||
ctx: ToolContext,
|
||||
tools: Tool<any, any>[],
|
||||
port: number
|
||||
): Promise<McpStartResult | null> {
|
||||
const server = new FastMCP({ name: pullfrogMcpName, version: "0.0.1" });
|
||||
addTools(ctx, server, tools);
|
||||
|
||||
try {
|
||||
await server.start({
|
||||
transportType: "httpStream",
|
||||
httpStream: {
|
||||
port,
|
||||
host: mcpHost,
|
||||
endpoint: mcpEndpoint,
|
||||
},
|
||||
});
|
||||
const url = `http://${mcpHost}:${port}${mcpEndpoint}`;
|
||||
return { server, url, port };
|
||||
} catch (error) {
|
||||
if (!isAddressInUse(error)) {
|
||||
throw error;
|
||||
}
|
||||
try {
|
||||
await server.stop();
|
||||
} catch {
|
||||
// ignore cleanup errors on failed start
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
async function selectMcpPort(ctx: ToolContext, tools: Tool<any, any>[]): Promise<McpStartResult> {
|
||||
let lastError: unknown = null;
|
||||
|
||||
const requestedPort = readEnvPort();
|
||||
if (requestedPort !== null) {
|
||||
if (await isPortAvailable(requestedPort)) {
|
||||
const requestedResult = await tryStartMcpServer(ctx, tools, requestedPort);
|
||||
if (requestedResult) {
|
||||
return requestedResult;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// randomize start offset to reduce collision chance in parallel runs
|
||||
const randomOffset = Math.floor(Math.random() * 50);
|
||||
|
||||
for (let offset = 0; offset < mcpPortAttempts; offset++) {
|
||||
const port = mcpPortStart + randomOffset + offset;
|
||||
try {
|
||||
if (!(await isPortAvailable(port))) {
|
||||
continue;
|
||||
}
|
||||
const result = await tryStartMcpServer(ctx, tools, port);
|
||||
if (result) {
|
||||
return result;
|
||||
}
|
||||
} catch (error) {
|
||||
lastError = error;
|
||||
if (!isAddressInUse(error)) {
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const message = getErrorMessage(lastError);
|
||||
throw new Error(
|
||||
`could not find available mcp port starting at ${mcpPortStart} (last error: ${message})`
|
||||
);
|
||||
}
|
||||
|
||||
async function killBackgroundProcesses(toolState: ToolState): Promise<void> {
|
||||
const backgroundProcesses = toolState.backgroundProcesses;
|
||||
if (backgroundProcesses.size === 0) return;
|
||||
for (const proc of backgroundProcesses.values()) {
|
||||
try {
|
||||
process.kill(-proc.pid, "SIGTERM");
|
||||
} catch {
|
||||
// already dead
|
||||
}
|
||||
}
|
||||
await sleep(200);
|
||||
for (const proc of backgroundProcesses.values()) {
|
||||
try {
|
||||
process.kill(-proc.pid, "SIGKILL");
|
||||
} catch {
|
||||
// already dead
|
||||
}
|
||||
}
|
||||
backgroundProcesses.clear();
|
||||
}
|
||||
|
||||
type McpHttpServerOptions = {
|
||||
outputSchema?: JsonSchema | undefined;
|
||||
};
|
||||
|
||||
/**
|
||||
* Start the MCP HTTP server.
|
||||
*
|
||||
* The returned disposer is idempotent — safe to call multiple times.
|
||||
* Callers (e.g. the inner activity-timeout handler in main.ts) may need to
|
||||
* stop the server before the `await using` block exits; a subsequent
|
||||
* automatic dispose is then a no-op.
|
||||
*/
|
||||
export async function startMcpHttpServer(
|
||||
ctx: ToolContext,
|
||||
options?: McpHttpServerOptions
|
||||
): Promise<{ url: string; [Symbol.asyncDispose]: () => Promise<void> }> {
|
||||
const tools = buildOrchestratorTools(ctx, options?.outputSchema);
|
||||
const startResult = await selectMcpPort(ctx, tools);
|
||||
|
||||
let disposed = false;
|
||||
return {
|
||||
url: startResult.url,
|
||||
[Symbol.asyncDispose]: async () => {
|
||||
if (disposed) return;
|
||||
disposed = true;
|
||||
closeBrowserDaemon(ctx.toolState);
|
||||
await killBackgroundProcesses(ctx.toolState);
|
||||
await startResult.server.stop();
|
||||
},
|
||||
};
|
||||
}
|
||||
@@ -1,71 +0,0 @@
|
||||
import type { StandardSchemaV1 } from "@standard-schema/spec";
|
||||
import { encode as toonEncode } from "@toon-format/toon";
|
||||
import type { FastMCP, Tool } from "fastmcp";
|
||||
import { formatJsonValue, log } from "../utils/cli.ts";
|
||||
import { isGeminiRouted, sanitizeToolForGemini } from "./geminiSanitizer.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
|
||||
export const tool = <const params>(
|
||||
toolDef: Tool<any, StandardSchemaV1<params>>
|
||||
): Tool<any, StandardSchemaV1<params>> => toolDef;
|
||||
|
||||
export interface ToolResult {
|
||||
content: {
|
||||
type: "text";
|
||||
text: string;
|
||||
}[];
|
||||
isError?: boolean;
|
||||
}
|
||||
|
||||
export const handleToolSuccess = (data: Record<string, any> | string): ToolResult => {
|
||||
const text = typeof data === "string" ? data : toonEncode(data);
|
||||
return {
|
||||
content: [{ type: "text", text }],
|
||||
};
|
||||
};
|
||||
|
||||
export const handleToolError = (error: unknown): ToolResult => {
|
||||
const errorMessage = error instanceof Error ? error.message : String(error);
|
||||
return {
|
||||
content: [
|
||||
{
|
||||
type: "text",
|
||||
text: `Error: ${errorMessage}`,
|
||||
},
|
||||
],
|
||||
isError: true,
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Helper to wrap a tool execute function with error handling.
|
||||
* Captures ctx in closure so tools don't need to handle try/catch.
|
||||
* @param fn - the function to execute
|
||||
* @param toolName - optional tool name for error logging
|
||||
*/
|
||||
export const execute = <T, R extends Record<string, any> | string>(
|
||||
fn: (params: T) => Promise<R>,
|
||||
toolName?: string
|
||||
) => {
|
||||
const _fn = async (params: T): Promise<ToolResult> => {
|
||||
try {
|
||||
const result = await fn(params);
|
||||
return handleToolSuccess(result);
|
||||
} catch (error) {
|
||||
const errorMessage = error instanceof Error ? error.message : String(error);
|
||||
const prefix = toolName ? `[${toolName}]` : "tool";
|
||||
log.info(`${prefix} error: ${errorMessage}`);
|
||||
log.debug(`${prefix} params: ${formatJsonValue(params)}`);
|
||||
return handleToolError(error);
|
||||
}
|
||||
};
|
||||
return _fn;
|
||||
};
|
||||
|
||||
export const addTools = (ctx: ToolContext, server: FastMCP<any>, tools: Tool<any, any>[]) => {
|
||||
const shouldSanitize = isGeminiRouted(ctx);
|
||||
for (const tool of tools) {
|
||||
server.addTool(shouldSanitize ? sanitizeToolForGemini(tool) : tool);
|
||||
}
|
||||
return server;
|
||||
};
|
||||
-403
@@ -1,403 +0,0 @@
|
||||
// changes to shell security (filterEnv, spawnShell) should be reflected in wiki/security.md and docs/security.mdx
|
||||
import { type ChildProcess, type StdioOptions, spawn, spawnSync } from "node:child_process";
|
||||
import { randomUUID } from "node:crypto";
|
||||
import { closeSync, openSync, writeFileSync } from "node:fs";
|
||||
import { userInfo } from "node:os";
|
||||
import { join } from "node:path";
|
||||
import { setTimeout as sleep } from "node:timers/promises";
|
||||
import { type } from "arktype";
|
||||
import { ensureBrowserDaemon } from "../utils/browser.ts";
|
||||
import { log } from "../utils/log.ts";
|
||||
import { resolveEnv } from "../utils/secrets.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
export const ShellParams = type({
|
||||
command: "string",
|
||||
description: "string",
|
||||
"timeout?": type.number.describe(
|
||||
"Timeout in MILLISECONDS (not seconds). Default 30000 (30s), max 120000 (2m). e.g. timeout: 180000 for 3 minutes; timeout: 180 means 180ms and will kill the process almost immediately."
|
||||
),
|
||||
"working_directory?": "string",
|
||||
"background?": "boolean",
|
||||
});
|
||||
|
||||
type SpawnParams = {
|
||||
command: string;
|
||||
env: Record<string, string | undefined>;
|
||||
cwd: string;
|
||||
stdio: StdioOptions;
|
||||
};
|
||||
|
||||
export type SandboxMethod = "unshare" | "sudo-unshare" | "none";
|
||||
|
||||
/** cached result of sandbox capability check */
|
||||
let detectedSandboxMethod: SandboxMethod | undefined;
|
||||
|
||||
/** get the current sandbox method (for testing/diagnostics) */
|
||||
export function getSandboxMethod(): SandboxMethod {
|
||||
return detectSandboxMethod();
|
||||
}
|
||||
|
||||
/** detect which sandbox method is available on this system */
|
||||
function detectSandboxMethod(): SandboxMethod {
|
||||
if (detectedSandboxMethod !== undefined) {
|
||||
return detectedSandboxMethod;
|
||||
}
|
||||
|
||||
// only attempt in CI environments - sandbox has overhead and is primarily for untrusted code
|
||||
if (process.env.CI !== "true") {
|
||||
detectedSandboxMethod = "none";
|
||||
log.debug("sandbox disabled (CI !== true)");
|
||||
return "none";
|
||||
}
|
||||
|
||||
// try unprivileged unshare first (works on some systems)
|
||||
try {
|
||||
const result = spawnSync("unshare", ["--pid", "--fork", "--mount-proc", "true"], {
|
||||
timeout: 5000,
|
||||
stdio: "ignore",
|
||||
});
|
||||
if (result.status === 0) {
|
||||
detectedSandboxMethod = "unshare";
|
||||
log.debug("PID namespace isolation enabled (unprivileged unshare)");
|
||||
return "unshare";
|
||||
}
|
||||
} catch {
|
||||
// continue to try sudo
|
||||
}
|
||||
|
||||
// sudo unshare (works on GHA runners)
|
||||
try {
|
||||
const result = spawnSync("sudo", ["unshare", "--pid", "--fork", "--mount-proc", "true"], {
|
||||
timeout: 5000,
|
||||
stdio: "ignore",
|
||||
});
|
||||
if (result.status === 0) {
|
||||
detectedSandboxMethod = "sudo-unshare";
|
||||
log.debug("PID namespace isolation enabled (sudo unshare)");
|
||||
return "sudo-unshare";
|
||||
}
|
||||
} catch {
|
||||
// no sandbox available
|
||||
}
|
||||
|
||||
detectedSandboxMethod = "none";
|
||||
log.info("PID namespace isolation not available");
|
||||
return "none";
|
||||
}
|
||||
|
||||
// strip inherited proc mount that sits underneath --mount-proc's overlay.
|
||||
// --mount-proc mounts fresh proc on top, but `umount /proc` peels it off and exposes the
|
||||
// host's proc with all host PIDs — allowing /proc/<pid>/environ exfiltration.
|
||||
// double-umount removes both layers, then a clean mount gives only sandbox PIDs.
|
||||
// on unprivileged systems where umount fails, --mount-proc still provides isolation
|
||||
// (the agent also can't umount in that case).
|
||||
const PROC_CLEANUP =
|
||||
"umount /proc 2>/dev/null; umount /proc 2>/dev/null; mount -t proc proc /proc 2>/dev/null;";
|
||||
|
||||
// block container-runtime sockets that would otherwise grant a PID-namespace
|
||||
// escape: `docker run --pid=host --privileged busybox cat /proc/<pid>/environ`
|
||||
// reads the parent action process's env (which contains user secrets) even
|
||||
// though the sandbox itself is unsharing PIDs. GHA `ubuntu-latest` puts the
|
||||
// `runner` user in the `docker` group by default, so the socket is reachable
|
||||
// without sudo. bind-mounting /dev/null on top inside the sandbox's mount
|
||||
// namespace makes the socket unreachable from sandboxed shells without
|
||||
// touching the host runner (so it doesn't break user workflow steps that
|
||||
// run before/after pullfrog and legitimately need docker). same trick for
|
||||
// podman/containerd/cri-o sockets — all silent-fail if the path is missing.
|
||||
const SOCKET_CLEANUP = [
|
||||
"/var/run/docker.sock",
|
||||
"/run/docker.sock",
|
||||
"/var/run/podman/podman.sock",
|
||||
"/run/podman/podman.sock",
|
||||
"/run/containerd/containerd.sock",
|
||||
"/var/run/crio/crio.sock",
|
||||
]
|
||||
.map((path) => `mount --bind /dev/null ${path} 2>/dev/null;`)
|
||||
.join(" ");
|
||||
|
||||
function spawnShell(params: SpawnParams): ChildProcess {
|
||||
const spawnOpts = { env: params.env, cwd: params.cwd, stdio: params.stdio, detached: true };
|
||||
const sandboxMethod = detectSandboxMethod();
|
||||
const ci = process.env.CI === "true";
|
||||
|
||||
if (ci && sandboxMethod === "none") {
|
||||
throw new Error(
|
||||
"pid namespace isolation is required in CI but unavailable (both unshare and sudo unshare failed)"
|
||||
);
|
||||
}
|
||||
|
||||
if (sandboxMethod === "unshare") {
|
||||
return spawn(
|
||||
"unshare",
|
||||
[
|
||||
"--pid",
|
||||
"--fork",
|
||||
"--mount-proc",
|
||||
"bash",
|
||||
"-c",
|
||||
`${PROC_CLEANUP} ${SOCKET_CLEANUP} ${params.command}`,
|
||||
],
|
||||
spawnOpts
|
||||
);
|
||||
}
|
||||
|
||||
if (sandboxMethod === "sudo-unshare") {
|
||||
const envArgs: string[] = [];
|
||||
for (const [k, v] of Object.entries(params.env)) {
|
||||
if (v !== undefined) {
|
||||
envArgs.push(`${k}=${v}`);
|
||||
}
|
||||
}
|
||||
// drop back to original user after PROC_CLEANUP so files aren't owned by root.
|
||||
// sudo is only needed for unshare; the actual command should run as the normal user
|
||||
// to avoid ownership mismatches with files created by the Node.js parent process.
|
||||
const username = userInfo().username;
|
||||
// su -p resets PATH on many Linux systems (ALWAYS_SET_PATH in /etc/login.defs).
|
||||
// restore it from the SANDBOX_PATH env var that survives the su transition.
|
||||
// biome-ignore lint/suspicious/noTemplateCurlyInString: we need to restore the PATH variable
|
||||
const pathRestore = 'export PATH="${SANDBOX_PATH:-$PATH}"; ';
|
||||
const escaped = (pathRestore + params.command).replace(/'/g, "'\\''");
|
||||
envArgs.push(`SANDBOX_PATH=${params.env.PATH ?? ""}`);
|
||||
return spawn(
|
||||
"sudo",
|
||||
[
|
||||
"env",
|
||||
...envArgs,
|
||||
"unshare",
|
||||
"--pid",
|
||||
"--fork",
|
||||
"--mount-proc",
|
||||
"bash",
|
||||
"-c",
|
||||
`${PROC_CLEANUP} ${SOCKET_CLEANUP} exec su -p -s /bin/bash ${username} -c '${escaped}'`,
|
||||
],
|
||||
{ ...spawnOpts, env: {} }
|
||||
);
|
||||
}
|
||||
|
||||
return spawn("bash", ["-c", params.command], spawnOpts);
|
||||
}
|
||||
|
||||
/** kill process and its entire process group */
|
||||
async function killProcessGroup(proc: ChildProcess): Promise<void> {
|
||||
if (!proc.pid) return;
|
||||
try {
|
||||
process.kill(-proc.pid, "SIGTERM");
|
||||
await new Promise((r) => setTimeout(r, 200));
|
||||
process.kill(-proc.pid, "SIGKILL");
|
||||
} catch {
|
||||
try {
|
||||
proc.kill("SIGKILL");
|
||||
} catch {
|
||||
/* already dead */
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function getTempDir(): string {
|
||||
const tempDir = process.env.PULLFROG_TEMP_DIR;
|
||||
if (!tempDir) {
|
||||
throw new Error("PULLFROG_TEMP_DIR not set");
|
||||
}
|
||||
return tempDir;
|
||||
}
|
||||
|
||||
/** chars of shell output kept inline in the agent reply. anything past this
|
||||
* blows the agent's context budget on commands that dump big logs (test
|
||||
* runners, build tools, grep on large trees), so the overflow is spilled
|
||||
* to a tempfile the agent can re-read selectively (cat/tail/grep). */
|
||||
export const MAX_OUTPUT_CHARS = 5000;
|
||||
|
||||
/** if `output` exceeds `MAX_OUTPUT_CHARS`, persist the full body to a
|
||||
* tempfile and return the last `MAX_OUTPUT_CHARS` prefixed with a sentinel
|
||||
* pointing at the saved path. otherwise return as-is. */
|
||||
function capOutput(output: string): string {
|
||||
if (output.length <= MAX_OUTPUT_CHARS) return output;
|
||||
const fullPath = join(getTempDir(), `shell-${randomUUID().slice(0, 8)}.log`);
|
||||
writeFileSync(fullPath, output);
|
||||
const elided = output.length - MAX_OUTPUT_CHARS;
|
||||
return `... [${elided} chars truncated; full output saved to ${fullPath}] ...\n${output.slice(-MAX_OUTPUT_CHARS)}`;
|
||||
}
|
||||
|
||||
/** detect git as a command invocation (not as part of another word like .gitignore) */
|
||||
function isGitCommand(command: string): boolean {
|
||||
const trimmed = command.trim();
|
||||
if (trimmed === "git" || trimmed.startsWith("git ")) return true;
|
||||
if (trimmed.startsWith("sudo git")) return true;
|
||||
return /[;&|]\s*(?:sudo\s+)?git(?:\s|$)/.test(trimmed);
|
||||
}
|
||||
|
||||
export function ShellTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "shell",
|
||||
description: `Execute shell commands securely. Environment is filtered to remove API keys and secrets.
|
||||
|
||||
Example: \`shell({ command: "pnpm test", description: "run the test suite" })\`.
|
||||
|
||||
Use this tool to:
|
||||
- Run shell commands (ls, cat, grep, find, etc.)
|
||||
- Execute build tools (npm, pnpm, cargo, make, etc.)
|
||||
- Run tests and linters
|
||||
|
||||
Output is capped at ${MAX_OUTPUT_CHARS} chars: if exceeded, only the tail is returned and the full body is saved to a tempfile (path included in the response). Re-read the tempfile with cat/tail/grep when you need more.
|
||||
|
||||
Do NOT use this tool for git commands — use the dedicated git tools instead.`,
|
||||
parameters: ShellParams,
|
||||
execute: execute(async (params) => {
|
||||
if (isGitCommand(params.command)) {
|
||||
throw new Error(
|
||||
"git commands are not allowed in the shell tool. use the dedicated git tools instead:\n" +
|
||||
"- git: local operations (status, log, diff, add, commit, checkout, merge, rebase, etc.)\n" +
|
||||
"- push_branch: push to remote (handles authentication)\n" +
|
||||
"- git_fetch: fetch from remote (handles authentication)\n" +
|
||||
"- checkout_pr: check out PR branches"
|
||||
);
|
||||
}
|
||||
|
||||
const timeout = Math.min(params.timeout ?? 30000, 120000);
|
||||
const cwd = params.working_directory ?? process.cwd();
|
||||
const env = resolveEnv(ctx.payload.shell === "enabled" ? "inherit" : "restricted");
|
||||
|
||||
if (params.command.includes("agent-browser")) {
|
||||
const daemonError = ensureBrowserDaemon(ctx.toolState);
|
||||
if (daemonError) {
|
||||
return {
|
||||
output: `browser daemon unavailable: ${daemonError}`,
|
||||
exit_code: 1,
|
||||
timed_out: false,
|
||||
};
|
||||
}
|
||||
const binDir = ctx.toolState.browserDaemon?.binDir;
|
||||
if (binDir) {
|
||||
env.PATH = `${binDir}:${env.PATH ?? ""}`;
|
||||
}
|
||||
}
|
||||
|
||||
if (params.background) {
|
||||
const tempDir = getTempDir();
|
||||
const handle = `bg-${randomUUID().slice(0, 8)}`;
|
||||
const outputPath = join(tempDir, `${handle}.log`);
|
||||
const pidPath = join(tempDir, `${handle}.pid`);
|
||||
const logFd = openSync(outputPath, "a");
|
||||
let proc: ChildProcess;
|
||||
try {
|
||||
proc = spawnShell({
|
||||
command: params.command,
|
||||
env,
|
||||
cwd,
|
||||
stdio: ["ignore", logFd, logFd],
|
||||
});
|
||||
} finally {
|
||||
closeSync(logFd);
|
||||
}
|
||||
if (!proc.pid) {
|
||||
throw new Error("failed to start background process");
|
||||
}
|
||||
proc.unref();
|
||||
writeFileSync(pidPath, `${proc.pid}\n`);
|
||||
ctx.toolState.backgroundProcesses.set(handle, { pid: proc.pid, outputPath, pidPath });
|
||||
return {
|
||||
handle,
|
||||
outputPath,
|
||||
pidPath,
|
||||
message: `started background process ${handle} (pid ${proc.pid})`,
|
||||
};
|
||||
}
|
||||
|
||||
const proc = spawnShell({
|
||||
command: params.command,
|
||||
env,
|
||||
cwd,
|
||||
stdio: ["ignore", "pipe", "pipe"],
|
||||
});
|
||||
|
||||
let stdout = "",
|
||||
stderr = "",
|
||||
timedOut = false,
|
||||
exited = false;
|
||||
proc.stdout?.on("data", (chunk: Buffer) => {
|
||||
stdout += chunk.toString();
|
||||
});
|
||||
proc.stderr?.on("data", (chunk: Buffer) => {
|
||||
stderr += chunk.toString();
|
||||
});
|
||||
|
||||
const timeoutId = setTimeout(async () => {
|
||||
if (!exited) {
|
||||
timedOut = true;
|
||||
await killProcessGroup(proc);
|
||||
}
|
||||
}, timeout);
|
||||
|
||||
const exitCode = await new Promise<number | null>((resolve) => {
|
||||
const done = (code: number | null) => {
|
||||
exited = true;
|
||||
clearTimeout(timeoutId);
|
||||
resolve(code);
|
||||
};
|
||||
proc.on("exit", done);
|
||||
proc.on("error", () => done(null));
|
||||
});
|
||||
|
||||
let output = stderr ? (stdout ? `${stdout}\n${stderr}` : stderr) : stdout;
|
||||
if (timedOut)
|
||||
output = output
|
||||
? `${output}\n[timed out after ${timeout}ms]`
|
||||
: `[timed out after ${timeout}ms]`;
|
||||
|
||||
const finalExitCode = exitCode ?? (timedOut ? 124 : -1);
|
||||
const trimmed = output.trim();
|
||||
if (finalExitCode !== 0) {
|
||||
log.info(`shell command failed with exit code ${finalExitCode}: ${params.command}`);
|
||||
if (trimmed) log.info(`output: ${trimmed}`);
|
||||
}
|
||||
|
||||
return {
|
||||
output: capOutput(trimmed),
|
||||
exit_code: finalExitCode,
|
||||
timed_out: timedOut,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
export const KillBackgroundParams = type({
|
||||
handle: type.string.describe("The handle of the background process to kill (e.g., bg-a1b2c3d4)"),
|
||||
});
|
||||
|
||||
export function KillBackgroundTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "kill_background",
|
||||
description: `Kill a background process by its handle. Use this to stop dev servers or other long-running processes started with shell({ background: true }).`,
|
||||
parameters: KillBackgroundParams,
|
||||
execute: execute(async (params) => {
|
||||
const proc = ctx.toolState.backgroundProcesses.get(params.handle);
|
||||
if (!proc) {
|
||||
return {
|
||||
success: false,
|
||||
message: `no background process with handle ${params.handle}`,
|
||||
};
|
||||
}
|
||||
|
||||
try {
|
||||
process.kill(-proc.pid, "SIGTERM");
|
||||
} catch {
|
||||
// already dead
|
||||
}
|
||||
await sleep(200);
|
||||
try {
|
||||
process.kill(-proc.pid, "SIGKILL");
|
||||
} catch {
|
||||
// already dead
|
||||
}
|
||||
|
||||
ctx.toolState.backgroundProcesses.delete(params.handle);
|
||||
return {
|
||||
success: true,
|
||||
message: `killed background process ${params.handle} (pid ${proc.pid})`,
|
||||
};
|
||||
}),
|
||||
});
|
||||
}
|
||||
@@ -1,85 +0,0 @@
|
||||
import { createServer } from "node:net";
|
||||
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
|
||||
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js";
|
||||
import { type } from "arktype";
|
||||
import { FastMCP } from "fastmcp";
|
||||
import { afterAll, beforeAll, describe, expect, it } from "vitest";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
function getRandomPort(): Promise<number> {
|
||||
return new Promise((resolve, reject) => {
|
||||
const srv = createServer();
|
||||
srv.listen(0, "127.0.0.1", () => {
|
||||
const addr = srv.address();
|
||||
if (!addr || typeof addr === "string") return reject(new Error("bad address"));
|
||||
const port = addr.port;
|
||||
srv.close(() => resolve(port));
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
async function connectMcpClient(url: string): Promise<Client> {
|
||||
const transport = new StreamableHTTPClientTransport(new URL(url));
|
||||
const client = new Client({ name: "test-client", version: "0.0.1" });
|
||||
// @ts-expect-error — exactOptionalPropertyTypes mismatch: SDK Transport.sessionId?: string vs StreamableHTTPClientTransport getter returning string | undefined
|
||||
await client.connect(transport);
|
||||
return client;
|
||||
}
|
||||
|
||||
function mockTool(name: string, description: string) {
|
||||
return tool({
|
||||
name,
|
||||
description,
|
||||
parameters: type({ value: "string" }),
|
||||
execute: execute(async () => ({ ok: true })),
|
||||
});
|
||||
}
|
||||
|
||||
describe("MCP server tool registration - integration", () => {
|
||||
let server: FastMCP;
|
||||
let serverUrl: string;
|
||||
const clients: Client[] = [];
|
||||
|
||||
beforeAll(async () => {
|
||||
const port = await getRandomPort();
|
||||
serverUrl = `http://127.0.0.1:${port}/mcp`;
|
||||
|
||||
server = new FastMCP({ name: "test-server", version: "0.0.1" });
|
||||
server.addTool(mockTool("shell", "run shell commands"));
|
||||
server.addTool(mockTool("git", "run git commands"));
|
||||
server.addTool(mockTool("set_output", "set output"));
|
||||
server.addTool(mockTool("select_mode", "select a mode"));
|
||||
server.addTool(mockTool("push_branch", "push branch"));
|
||||
server.addTool(mockTool("create_pull_request", "create PR"));
|
||||
|
||||
await server.start({
|
||||
transportType: "httpStream",
|
||||
httpStream: { port, host: "127.0.0.1", endpoint: "/mcp" },
|
||||
});
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
for (const client of clients) {
|
||||
try {
|
||||
await client.close();
|
||||
} catch {
|
||||
// best-effort cleanup
|
||||
}
|
||||
}
|
||||
await server.stop();
|
||||
});
|
||||
|
||||
it("server exposes all registered tools", async () => {
|
||||
const client = await connectMcpClient(serverUrl);
|
||||
clients.push(client);
|
||||
const result = await client.listTools();
|
||||
const names = result.tools.map((t) => t.name);
|
||||
expect(names).toContain("select_mode");
|
||||
expect(names).toContain("push_branch");
|
||||
expect(names).toContain("create_pull_request");
|
||||
expect(names).toContain("shell");
|
||||
expect(names).toContain("git");
|
||||
expect(names).toContain("set_output");
|
||||
expect(names.length).toBe(6);
|
||||
});
|
||||
});
|
||||
@@ -1,74 +0,0 @@
|
||||
import * as fs from "node:fs";
|
||||
import * as path from "node:path";
|
||||
import { type } from "arktype";
|
||||
import { fileTypeFromBuffer } from "file-type";
|
||||
import { apiFetch } from "../utils/apiFetch.ts";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import type { ToolContext } from "./server.ts";
|
||||
import { execute, tool } from "./shared.ts";
|
||||
|
||||
const UploadFileParams = type({
|
||||
path: type.string.describe("absolute path to file to upload"),
|
||||
});
|
||||
|
||||
export function UploadFileTool(ctx: ToolContext) {
|
||||
return tool({
|
||||
name: "upload_file",
|
||||
description:
|
||||
"upload a file to get a permanent public URL. use for screenshots, artifacts, or any files you want to reference in PRs/comments. max 10MB, images/text/archives allowed. when embedding uploaded images in comments or PR bodies, always use markdown image syntax: ",
|
||||
parameters: UploadFileParams,
|
||||
execute: execute(async (params) => {
|
||||
// read file from disk eagerly on purpose to avoid its content being changed by the time it's uploaded
|
||||
const buffer = fs.readFileSync(params.path);
|
||||
const filename = path.basename(params.path);
|
||||
const contentLength = buffer.length;
|
||||
|
||||
const fileType = await fileTypeFromBuffer(buffer);
|
||||
const contentType = fileType?.mime || "application/octet-stream";
|
||||
|
||||
const response = await apiFetch({
|
||||
path: "/api/upload/signed-url",
|
||||
method: "POST",
|
||||
headers: {
|
||||
Authorization: `Bearer ${ctx.apiToken}`,
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
body: JSON.stringify({
|
||||
filename,
|
||||
contentType,
|
||||
contentLength,
|
||||
}),
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
const error = await response.text();
|
||||
throw new Error(`failed to get upload URL: ${error}`);
|
||||
}
|
||||
|
||||
const { uploadUrl, publicUrl, contentDisposition } = (await response.json()) as {
|
||||
uploadUrl: string;
|
||||
publicUrl: string;
|
||||
contentDisposition?: string | undefined;
|
||||
};
|
||||
|
||||
const uploadResponse = await fetch(uploadUrl, {
|
||||
method: "PUT",
|
||||
headers: {
|
||||
"Content-Type": contentType,
|
||||
// should be set automatically, but given this header is signed it's better to be explicit
|
||||
"Content-Length": String(contentLength),
|
||||
...(contentDisposition && { "Content-Disposition": contentDisposition }),
|
||||
},
|
||||
body: buffer,
|
||||
});
|
||||
|
||||
if (!uploadResponse.ok) {
|
||||
throw new Error(`failed to upload file: ${uploadResponse.statusText}`);
|
||||
}
|
||||
|
||||
log.info(`» uploaded file ${publicUrl}`);
|
||||
|
||||
return { success: true, publicUrl, filename, contentLength, contentType };
|
||||
}),
|
||||
});
|
||||
}
|
||||
-273
@@ -1,273 +0,0 @@
|
||||
import { describe, expect, it } from "vitest";
|
||||
import {
|
||||
getModelEnvVars,
|
||||
getModelProvider,
|
||||
isBedrockAnthropicId,
|
||||
modelAliases,
|
||||
parseModel,
|
||||
providers,
|
||||
resolveCliModel,
|
||||
resolveDisplayAlias,
|
||||
resolveModelSlug,
|
||||
resolveOpenRouterModel,
|
||||
} from "./models.ts";
|
||||
|
||||
describe("parseModel", () => {
|
||||
it("parses provider/model format", () => {
|
||||
const result = parseModel("anthropic/claude-opus");
|
||||
expect(result).toEqual({ provider: "anthropic", model: "claude-opus" });
|
||||
});
|
||||
|
||||
it("handles nested slashes (openrouter format)", () => {
|
||||
const result = parseModel("openrouter/anthropic/claude-opus-4.6");
|
||||
expect(result).toEqual({ provider: "openrouter", model: "anthropic/claude-opus-4.6" });
|
||||
});
|
||||
|
||||
it("throws on invalid slug without slash", () => {
|
||||
expect(() => parseModel("invalid")).toThrow("invalid model slug");
|
||||
});
|
||||
});
|
||||
|
||||
describe("getModelProvider", () => {
|
||||
it("extracts provider from slug", () => {
|
||||
expect(getModelProvider("anthropic/claude-opus")).toBe("anthropic");
|
||||
expect(getModelProvider("openai/gpt")).toBe("openai");
|
||||
expect(getModelProvider("google/gemini-pro")).toBe("google");
|
||||
});
|
||||
});
|
||||
|
||||
describe("getModelEnvVars", () => {
|
||||
it("returns correct env vars for anthropic", () => {
|
||||
expect(getModelEnvVars("anthropic/claude-opus")).toEqual([
|
||||
"ANTHROPIC_API_KEY",
|
||||
"CLAUDE_CODE_OAUTH_TOKEN",
|
||||
]);
|
||||
});
|
||||
|
||||
it("returns correct env vars for google (multiple)", () => {
|
||||
const envVars = getModelEnvVars("google/gemini-pro");
|
||||
expect(envVars).toContain("GOOGLE_GENERATIVE_AI_API_KEY");
|
||||
expect(envVars).toContain("GEMINI_API_KEY");
|
||||
});
|
||||
|
||||
it("returns empty array for unknown provider", () => {
|
||||
expect(getModelEnvVars("unknown/model")).toEqual([]);
|
||||
});
|
||||
|
||||
it("returns empty env vars for free opencode models", () => {
|
||||
expect(getModelEnvVars("opencode/big-pickle")).toEqual([]);
|
||||
expect(getModelEnvVars("opencode/mimo-v2-pro-free")).toEqual([]);
|
||||
expect(getModelEnvVars("opencode/minimax-m2.5-free")).toEqual([]);
|
||||
});
|
||||
|
||||
it("still requires OPENCODE_API_KEY for non-free opencode models", () => {
|
||||
expect(getModelEnvVars("opencode/claude-opus")).toEqual(["OPENCODE_API_KEY"]);
|
||||
expect(getModelEnvVars("opencode/gpt-5-nano")).toEqual(["OPENCODE_API_KEY"]);
|
||||
});
|
||||
});
|
||||
|
||||
describe("resolveModelSlug", () => {
|
||||
it("resolves known alias to concrete specifier", () => {
|
||||
const resolved = resolveModelSlug("anthropic/claude-opus");
|
||||
expect(resolved).toBe("anthropic/claude-opus-4-7");
|
||||
});
|
||||
|
||||
it("resolves openai alias", () => {
|
||||
const resolved = resolveModelSlug("openai/gpt");
|
||||
expect(resolved).toBe("openai/gpt-5.5");
|
||||
});
|
||||
|
||||
it("returns the raw resolve for deprecated aliases (does not walk fallback)", () => {
|
||||
expect(resolveModelSlug("openai/gpt-codex")).toBe("openai/gpt-5.3-codex");
|
||||
});
|
||||
|
||||
it("returns undefined for unknown slug", () => {
|
||||
expect(resolveModelSlug("unknown/model")).toBeUndefined();
|
||||
});
|
||||
});
|
||||
|
||||
describe("resolveCliModel", () => {
|
||||
it("returns same as resolveModelSlug (models.dev specifier)", () => {
|
||||
const slug = "anthropic/claude-opus";
|
||||
expect(resolveCliModel(slug)).toBe(resolveModelSlug(slug));
|
||||
});
|
||||
|
||||
it("returns undefined for unknown slug", () => {
|
||||
expect(resolveCliModel("bogus/nope")).toBeUndefined();
|
||||
});
|
||||
|
||||
it("walks fallback chain for deprecated deepseek aliases", () => {
|
||||
expect(resolveCliModel("deepseek/deepseek-reasoner")).toBe("deepseek/deepseek-v4-pro");
|
||||
expect(resolveCliModel("deepseek/deepseek-chat")).toBe("deepseek/deepseek-v4-flash");
|
||||
});
|
||||
|
||||
it("walks fallback chain for deprecated openai codex aliases", () => {
|
||||
expect(resolveCliModel("openai/gpt-codex")).toBe("openai/gpt-5.5");
|
||||
expect(resolveCliModel("openai/gpt-codex-mini")).toBe("openai/gpt-5.4-mini");
|
||||
expect(resolveCliModel("opencode/gpt-codex")).toBe("opencode/gpt-5.5");
|
||||
expect(resolveCliModel("openrouter/gpt-codex")).toBe("openrouter/openai/gpt-5.5");
|
||||
});
|
||||
});
|
||||
|
||||
describe("resolveDisplayAlias", () => {
|
||||
it("returns the alias itself for a non-deprecated slug", () => {
|
||||
const alias = resolveDisplayAlias("anthropic/claude-opus");
|
||||
expect(alias?.slug).toBe("anthropic/claude-opus");
|
||||
expect(alias?.displayName).toBe("Claude Opus");
|
||||
});
|
||||
|
||||
it("walks fallback chain to terminal alias for deprecated slug", () => {
|
||||
const alias = resolveDisplayAlias("openai/gpt-codex");
|
||||
expect(alias?.slug).toBe("openai/gpt");
|
||||
expect(alias?.displayName).toBe("GPT");
|
||||
});
|
||||
|
||||
it("walks fallback chain for deepseek-reasoner -> deepseek-pro", () => {
|
||||
const alias = resolveDisplayAlias("deepseek/deepseek-reasoner");
|
||||
expect(alias?.slug).toBe("deepseek/deepseek-pro");
|
||||
expect(alias?.displayName).toBe("DeepSeek Pro");
|
||||
});
|
||||
|
||||
it("returns undefined for unknown slug", () => {
|
||||
expect(resolveDisplayAlias("bogus/nope")).toBeUndefined();
|
||||
});
|
||||
});
|
||||
|
||||
describe("resolveOpenRouterModel", () => {
|
||||
it("returns the openrouter specifier for a non-deprecated alias", () => {
|
||||
expect(resolveOpenRouterModel("anthropic/claude-opus")).toBe(
|
||||
"openrouter/anthropic/claude-opus-4.7"
|
||||
);
|
||||
});
|
||||
|
||||
it("walks fallback chain for deprecated deepseek aliases", () => {
|
||||
expect(resolveOpenRouterModel("deepseek/deepseek-reasoner")).toBe(
|
||||
"openrouter/deepseek/deepseek-v4-pro"
|
||||
);
|
||||
expect(resolveOpenRouterModel("deepseek/deepseek-chat")).toBe(
|
||||
"openrouter/deepseek/deepseek-v4-flash"
|
||||
);
|
||||
expect(resolveOpenRouterModel("openrouter/deepseek-chat")).toBe(
|
||||
"openrouter/deepseek/deepseek-v4-flash"
|
||||
);
|
||||
});
|
||||
|
||||
it("walks fallback chain for deprecated openai codex aliases", () => {
|
||||
expect(resolveOpenRouterModel("openai/gpt-codex")).toBe("openrouter/openai/gpt-5.5");
|
||||
expect(resolveOpenRouterModel("openai/gpt-codex-mini")).toBe("openrouter/openai/gpt-5.4-mini");
|
||||
});
|
||||
|
||||
it("returns undefined for free opencode models with no openrouter equivalent", () => {
|
||||
expect(resolveOpenRouterModel("opencode/big-pickle")).toBeUndefined();
|
||||
});
|
||||
|
||||
it("returns undefined for unknown slug", () => {
|
||||
expect(resolveOpenRouterModel("bogus/nope")).toBeUndefined();
|
||||
});
|
||||
});
|
||||
|
||||
describe("modelAliases registry", () => {
|
||||
it("has at least one model per provider", () => {
|
||||
for (const providerKey of Object.keys(providers)) {
|
||||
const providerModels = modelAliases.filter((a) => a.provider === providerKey);
|
||||
expect(providerModels.length).toBeGreaterThan(0);
|
||||
}
|
||||
});
|
||||
|
||||
it("has exactly one preferred model per provider", () => {
|
||||
for (const providerKey of Object.keys(providers)) {
|
||||
// routing-only providers (bedrock) deliberately have no preferred
|
||||
// model — the user picks the actual model via a per-run env var, so
|
||||
// there's no "preferred default" to surface to auto-select.
|
||||
const aliases = modelAliases.filter((a) => a.provider === providerKey);
|
||||
if (aliases.every((a) => a.routing)) continue;
|
||||
const preferred = aliases.filter((a) => a.preferred);
|
||||
expect(preferred.length, `${providerKey} should have exactly 1 preferred model`).toBe(1);
|
||||
}
|
||||
});
|
||||
|
||||
it("all slugs follow provider/model format", () => {
|
||||
for (const alias of modelAliases) {
|
||||
expect(alias.slug).toContain("/");
|
||||
const parsed = parseModel(alias.slug);
|
||||
expect(parsed.provider).toBe(alias.provider);
|
||||
}
|
||||
});
|
||||
|
||||
it("all resolve values follow provider/model format", () => {
|
||||
for (const alias of modelAliases) {
|
||||
// routing slugs use a sentinel `resolve` (e.g. "bedrock") that's never
|
||||
// passed to a CLI directly — the harness reads a separate env var to
|
||||
// get the real model ID. format check doesn't apply.
|
||||
if (alias.routing) continue;
|
||||
expect(alias.resolve).toContain("/");
|
||||
}
|
||||
});
|
||||
|
||||
it("slugs are unique", () => {
|
||||
const slugs = modelAliases.map((a) => a.slug);
|
||||
expect(new Set(slugs).size).toBe(slugs.length);
|
||||
});
|
||||
});
|
||||
|
||||
describe("isBedrockAnthropicId", () => {
|
||||
it("matches geo-prefixed Anthropic foundation IDs", () => {
|
||||
expect(isBedrockAnthropicId("us.anthropic.claude-opus-4-7")).toBe(true);
|
||||
expect(isBedrockAnthropicId("eu.anthropic.claude-sonnet-4-6")).toBe(true);
|
||||
expect(isBedrockAnthropicId("global.anthropic.claude-haiku-4-5-20251001-v1:0")).toBe(true);
|
||||
});
|
||||
|
||||
it("matches in-region Anthropic foundation IDs", () => {
|
||||
expect(isBedrockAnthropicId("anthropic.claude-opus-4-7")).toBe(true);
|
||||
});
|
||||
|
||||
it("rejects non-Anthropic foundation IDs", () => {
|
||||
expect(isBedrockAnthropicId("amazon.nova-pro-v1:0")).toBe(false);
|
||||
expect(isBedrockAnthropicId("us.meta.llama4-scout-17b-instruct-v1:0")).toBe(false);
|
||||
expect(isBedrockAnthropicId("deepseek.v3.2")).toBe(false);
|
||||
});
|
||||
|
||||
// regression: PR #720 review caught that a substring-only match was
|
||||
// fragile for inference-profile ARNs (which BEDROCK_MODEL_ID accepts per
|
||||
// the AWS docs). ARN names are user-chosen — both directions of the
|
||||
// heuristic could break depending on what name the operator picked.
|
||||
// We anchor on a discrete dot-segment match (case-insensitive) instead.
|
||||
it("ignores 'anthropic' substrings inside non-segment text", () => {
|
||||
// ARN whose user-chosen profile name happens to contain "anthropic" as
|
||||
// part of a longer word — would route to claude-code under naive
|
||||
// includes("anthropic") even though the backing model is unknown.
|
||||
expect(
|
||||
isBedrockAnthropicId(
|
||||
"arn:aws:bedrock:us-east-2:123456789012:application-inference-profile/my-anthropicish-profile"
|
||||
)
|
||||
).toBe(false);
|
||||
});
|
||||
|
||||
it("matches when 'anthropic' appears as its own dot-segment in ARN", () => {
|
||||
// ARN whose profile name embeds the foundation segment correctly —
|
||||
// operator chose to surface the backing model in the name.
|
||||
expect(
|
||||
isBedrockAnthropicId(
|
||||
"arn:aws:bedrock:us-east-2:123456789012:application-inference-profile/anthropic.claude-opus-4-7"
|
||||
)
|
||||
).toBe(true);
|
||||
});
|
||||
|
||||
it("is case-insensitive", () => {
|
||||
expect(isBedrockAnthropicId("US.ANTHROPIC.CLAUDE-OPUS-4-7")).toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
describe("providers registry", () => {
|
||||
it("every provider has envVars", () => {
|
||||
for (const [key, config] of Object.entries(providers)) {
|
||||
expect(config.envVars.length, `${key} should have env vars`).toBeGreaterThan(0);
|
||||
}
|
||||
});
|
||||
|
||||
it("every provider has a displayName", () => {
|
||||
for (const [key, config] of Object.entries(providers)) {
|
||||
expect(config.displayName, `${key} should have a displayName`).toBeTruthy();
|
||||
}
|
||||
});
|
||||
});
|
||||
@@ -1,638 +0,0 @@
|
||||
/**
|
||||
* model alias registry.
|
||||
*
|
||||
* slugs use the format `provider/model-id` (e.g. "anthropic/claude-opus").
|
||||
* bump `resolve` when a new model generation ships — the alias (slug) stays stable.
|
||||
*/
|
||||
|
||||
// ── types ──────────────────────────────────────────────────────────────────────
|
||||
|
||||
/**
|
||||
* routing discriminant for entries whose `resolve` is dynamic — looked up
|
||||
* from a separate env var at run time rather than fixed in the catalog.
|
||||
*
|
||||
* `"bedrock"` means the actual model ID comes from `BEDROCK_MODEL_ID`
|
||||
* (an AWS-canonical Bedrock model ID like `us.anthropic.claude-opus-4-7`
|
||||
* or `amazon.nova-pro-v1:0`). enterprise Bedrock customers self-select for
|
||||
* version control — silent alias bumps would break compliance review,
|
||||
* model-access enrollment, and provisioned-throughput contracts. so the
|
||||
* single `bedrock/byok` entry is a routing slug, not a model alias: the
|
||||
* harness reads `BEDROCK_MODEL_ID` and routes to claude-code (when the ID
|
||||
* contains "anthropic") or opencode (everything else, with an
|
||||
* `amazon-bedrock/` prefix).
|
||||
*/
|
||||
export type ModelRouting = "bedrock";
|
||||
|
||||
export interface ModelAlias {
|
||||
/** stable alias stored in DB, e.g. "anthropic/claude-opus" */
|
||||
slug: string;
|
||||
/** provider key (matches providers keys) */
|
||||
provider: string;
|
||||
/** human-readable name shown in dropdowns */
|
||||
displayName: string;
|
||||
/** concrete models.dev specifier, e.g. "anthropic/claude-opus-4-6". sentinel for routing entries — never passed to a CLI directly. */
|
||||
resolve: string;
|
||||
/** full models.dev specifier for the OpenRouter equivalent (undefined for free models and routing entries) */
|
||||
openRouterResolve: string | undefined;
|
||||
/** top-tier pick for this provider — preferred during auto-select */
|
||||
preferred: boolean;
|
||||
/** whether this alias is free and requires no API key */
|
||||
isFree: boolean;
|
||||
/** slug of a replacement model — presence implies this model is deprecated */
|
||||
fallback: string | undefined;
|
||||
/** dynamic-resolution discriminant — see ModelRouting docs */
|
||||
routing: ModelRouting | undefined;
|
||||
/** alias key (within same provider) of the cheaper sibling reviewfrog should
|
||||
* use as its lens-fanout subagent. e.g. claude-opus → "claude-sonnet". */
|
||||
subagentModel: string | undefined;
|
||||
/** hide from selectable lists (UI dropdowns, CLI pickers). does NOT affect
|
||||
* resolution — for that use `fallback`. used for internal-only tier targets
|
||||
* (e.g. gpt-5.4 as a subagent target without exposing it to users). */
|
||||
hidden: boolean;
|
||||
}
|
||||
|
||||
interface ModelDef {
|
||||
displayName: string;
|
||||
/** concrete models.dev specifier, e.g. "anthropic/claude-opus-4-6" */
|
||||
resolve: string;
|
||||
/** full models.dev specifier for the OpenRouter equivalent, e.g. "openrouter/anthropic/claude-opus-4.6" */
|
||||
openRouterResolve?: string;
|
||||
preferred?: boolean;
|
||||
envVars?: readonly string[];
|
||||
isFree?: boolean;
|
||||
/** slug of a replacement model — presence implies this model is deprecated */
|
||||
fallback?: string;
|
||||
/** dynamic-resolution discriminant — see ModelRouting docs */
|
||||
routing?: ModelRouting;
|
||||
/** alias key (within same provider) of the cheaper sibling reviewfrog should
|
||||
* use as its lens-fanout subagent (e.g. claude-opus → "claude-sonnet"). */
|
||||
subagentModel?: string;
|
||||
/** hide from selectable lists. does NOT affect resolution; for that use `fallback`. */
|
||||
hidden?: boolean;
|
||||
}
|
||||
|
||||
export interface ProviderConfig {
|
||||
displayName: string;
|
||||
envVars: readonly string[];
|
||||
/** credentials authored only via `pullfrog auth <provider>` — never
|
||||
* user-facing in `init`, never documented as a manual GHA secret. counted
|
||||
* for hasAnyKey / log-redaction purposes but excluded from any prompt /
|
||||
* paste flow. CLI-managed magic. see wiki/codex-auth.md. */
|
||||
managedCredentials?: readonly string[];
|
||||
models: Record<string, ModelDef>;
|
||||
}
|
||||
|
||||
// ── provider + model definitions ────────────────────────────────────────────────
|
||||
|
||||
function provider(config: ProviderConfig): ProviderConfig {
|
||||
return config;
|
||||
}
|
||||
|
||||
export const providers = {
|
||||
anthropic: provider({
|
||||
displayName: "Anthropic",
|
||||
envVars: ["ANTHROPIC_API_KEY", "CLAUDE_CODE_OAUTH_TOKEN"],
|
||||
models: {
|
||||
"claude-opus": {
|
||||
displayName: "Claude Opus",
|
||||
resolve: "anthropic/claude-opus-4-7",
|
||||
openRouterResolve: "openrouter/anthropic/claude-opus-4.7",
|
||||
preferred: true,
|
||||
subagentModel: "claude-sonnet",
|
||||
},
|
||||
"claude-sonnet": {
|
||||
displayName: "Claude Sonnet",
|
||||
resolve: "anthropic/claude-sonnet-4-6",
|
||||
openRouterResolve: "openrouter/anthropic/claude-sonnet-4.6",
|
||||
},
|
||||
"claude-haiku": {
|
||||
displayName: "Claude Haiku",
|
||||
resolve: "anthropic/claude-haiku-4-5",
|
||||
openRouterResolve: "openrouter/anthropic/claude-haiku-4.5",
|
||||
},
|
||||
},
|
||||
}),
|
||||
openai: provider({
|
||||
displayName: "OpenAI",
|
||||
envVars: ["OPENAI_API_KEY"],
|
||||
managedCredentials: ["CODEX_AUTH_JSON"],
|
||||
models: {
|
||||
gpt: {
|
||||
displayName: "GPT",
|
||||
resolve: "openai/gpt-5.5",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.5",
|
||||
preferred: true,
|
||||
subagentModel: "gpt-5.4",
|
||||
},
|
||||
"gpt-pro": {
|
||||
displayName: "GPT Pro",
|
||||
resolve: "openai/gpt-5.5-pro",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.5-pro",
|
||||
subagentModel: "gpt",
|
||||
},
|
||||
// hidden subagent target — `gpt` lenses run against this. surfacing
|
||||
// it in the picker would just confuse users (it's the prior-flagship,
|
||||
// and they already have `gpt` and `gpt-mini` to choose from).
|
||||
"gpt-5.4": {
|
||||
displayName: "GPT 5.4",
|
||||
resolve: "openai/gpt-5.4",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.4",
|
||||
hidden: true,
|
||||
},
|
||||
"gpt-mini": {
|
||||
displayName: "GPT Mini",
|
||||
resolve: "openai/gpt-5.4-mini",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.4-mini",
|
||||
},
|
||||
// legacy aliases — openai unified the codex line into the main GPT family
|
||||
// and is shutting down every "-codex" snapshot on 2026-07-23. transparently
|
||||
// upgrade existing users via the fallback chain. UI display sites resolve
|
||||
// to the terminal alias's label (so dropdown trigger + PR footers show
|
||||
// "GPT" / "GPT Mini", not the historical name).
|
||||
"gpt-codex": {
|
||||
displayName: "GPT Codex",
|
||||
resolve: "openai/gpt-5.3-codex",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.3-codex",
|
||||
fallback: "openai/gpt",
|
||||
},
|
||||
"gpt-codex-mini": {
|
||||
displayName: "GPT Codex Mini",
|
||||
resolve: "openai/gpt-5.1-codex-mini",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.1-codex-mini",
|
||||
fallback: "openai/gpt-mini",
|
||||
},
|
||||
o3: {
|
||||
displayName: "O3",
|
||||
resolve: "openai/o3",
|
||||
},
|
||||
},
|
||||
}),
|
||||
google: provider({
|
||||
displayName: "Google",
|
||||
envVars: ["GEMINI_API_KEY", "GOOGLE_GENERATIVE_AI_API_KEY"],
|
||||
models: {
|
||||
"gemini-pro": {
|
||||
displayName: "Gemini Pro",
|
||||
resolve: "google/gemini-3.1-pro-preview",
|
||||
openRouterResolve: "openrouter/google/gemini-3.1-pro-preview",
|
||||
preferred: true,
|
||||
// Inherit (subagents stay on Pro). Google has no in-between tier;
|
||||
// dropping to Flash for review work was a meaningful capability cliff
|
||||
// (Flash missed the catastrophic camelCase/snake_case mismatch in
|
||||
// the v4 e2e test). Pro is cost-effective enough to use for both
|
||||
// orchestrator and lenses.
|
||||
},
|
||||
"gemini-flash": {
|
||||
displayName: "Gemini Flash",
|
||||
resolve: "google/gemini-3.5-flash",
|
||||
openRouterResolve: "openrouter/google/gemini-3-flash-preview",
|
||||
},
|
||||
},
|
||||
}),
|
||||
xai: provider({
|
||||
displayName: "xAI",
|
||||
envVars: ["XAI_API_KEY"],
|
||||
models: {
|
||||
grok: {
|
||||
displayName: "Grok",
|
||||
resolve: "xai/grok-4.3",
|
||||
openRouterResolve: "openrouter/x-ai/grok-4.3",
|
||||
preferred: true,
|
||||
},
|
||||
// legacy aliases — xAI retired the entire fast/code-fast line on
|
||||
// 2026-05-15 (https://docs.x.ai/developers/migration/may-15-deprecation)
|
||||
// and now redirects every deprecated text-model slug to grok-4.3 at
|
||||
// standard pricing. fall back to the live `xai/grok` so the alias
|
||||
// chain resolves to grok-4.3 for both direct-key and OpenRouter users.
|
||||
"grok-fast": {
|
||||
displayName: "Grok Fast",
|
||||
resolve: "xai/grok-4-1-fast",
|
||||
openRouterResolve: "openrouter/x-ai/grok-4.3",
|
||||
fallback: "xai/grok",
|
||||
},
|
||||
"grok-code-fast": {
|
||||
displayName: "Grok Code Fast",
|
||||
resolve: "xai/grok-code-fast-1",
|
||||
openRouterResolve: "openrouter/x-ai/grok-4.3",
|
||||
fallback: "xai/grok",
|
||||
},
|
||||
},
|
||||
}),
|
||||
deepseek: provider({
|
||||
displayName: "DeepSeek",
|
||||
envVars: ["DEEPSEEK_API_KEY"],
|
||||
models: {
|
||||
"deepseek-pro": {
|
||||
displayName: "DeepSeek Pro",
|
||||
resolve: "deepseek/deepseek-v4-pro",
|
||||
openRouterResolve: "openrouter/deepseek/deepseek-v4-pro",
|
||||
preferred: true,
|
||||
},
|
||||
"deepseek-flash": {
|
||||
displayName: "DeepSeek Flash",
|
||||
resolve: "deepseek/deepseek-v4-flash",
|
||||
openRouterResolve: "openrouter/deepseek/deepseek-v4-flash",
|
||||
},
|
||||
// legacy aliases — deepseek retires these on 2026-07-24; transparently
|
||||
// upgrade existing users to the v4 family via the fallback chain.
|
||||
"deepseek-reasoner": {
|
||||
displayName: "DeepSeek Reasoner",
|
||||
resolve: "deepseek/deepseek-reasoner",
|
||||
openRouterResolve: "openrouter/deepseek/deepseek-v3.2",
|
||||
fallback: "deepseek/deepseek-pro",
|
||||
},
|
||||
"deepseek-chat": {
|
||||
displayName: "DeepSeek Chat",
|
||||
resolve: "deepseek/deepseek-chat",
|
||||
openRouterResolve: "openrouter/deepseek/deepseek-v3.2",
|
||||
fallback: "deepseek/deepseek-flash",
|
||||
},
|
||||
},
|
||||
}),
|
||||
moonshotai: provider({
|
||||
displayName: "Moonshot AI",
|
||||
envVars: ["MOONSHOT_API_KEY"],
|
||||
models: {
|
||||
"kimi-k2": {
|
||||
displayName: "Kimi K2",
|
||||
resolve: "moonshotai/kimi-k2.6",
|
||||
openRouterResolve: "openrouter/moonshotai/kimi-k2.6",
|
||||
preferred: true,
|
||||
},
|
||||
},
|
||||
}),
|
||||
opencode: provider({
|
||||
displayName: "OpenCode",
|
||||
envVars: ["OPENCODE_API_KEY"],
|
||||
models: {
|
||||
"big-pickle": {
|
||||
displayName: "Big Pickle",
|
||||
resolve: "opencode/big-pickle",
|
||||
preferred: true,
|
||||
envVars: [],
|
||||
isFree: true,
|
||||
},
|
||||
"claude-opus": {
|
||||
displayName: "Claude Opus",
|
||||
resolve: "opencode/claude-opus-4-7",
|
||||
openRouterResolve: "openrouter/anthropic/claude-opus-4.7",
|
||||
subagentModel: "claude-sonnet",
|
||||
},
|
||||
"claude-sonnet": {
|
||||
displayName: "Claude Sonnet",
|
||||
resolve: "opencode/claude-sonnet-4-6",
|
||||
openRouterResolve: "openrouter/anthropic/claude-sonnet-4.6",
|
||||
},
|
||||
"claude-haiku": {
|
||||
displayName: "Claude Haiku",
|
||||
resolve: "opencode/claude-haiku-4-5",
|
||||
openRouterResolve: "openrouter/anthropic/claude-haiku-4.5",
|
||||
},
|
||||
gpt: {
|
||||
displayName: "GPT",
|
||||
resolve: "opencode/gpt-5.5",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.5",
|
||||
subagentModel: "gpt-5.4",
|
||||
},
|
||||
"gpt-pro": {
|
||||
displayName: "GPT Pro",
|
||||
resolve: "opencode/gpt-5.5-pro",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.5-pro",
|
||||
subagentModel: "gpt",
|
||||
},
|
||||
// hidden subagent target — see openai provider above for context.
|
||||
"gpt-5.4": {
|
||||
displayName: "GPT 5.4",
|
||||
resolve: "opencode/gpt-5.4",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.4",
|
||||
hidden: true,
|
||||
},
|
||||
"gpt-mini": {
|
||||
displayName: "GPT Mini",
|
||||
resolve: "opencode/gpt-5.4-mini",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.4-mini",
|
||||
},
|
||||
// legacy aliases — see openai provider above for context.
|
||||
"gpt-codex": {
|
||||
displayName: "GPT Codex",
|
||||
resolve: "opencode/gpt-5.3-codex",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.3-codex",
|
||||
fallback: "opencode/gpt",
|
||||
},
|
||||
"gpt-codex-mini": {
|
||||
displayName: "GPT Codex Mini",
|
||||
resolve: "opencode/gpt-5.1-codex-mini",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.1-codex-mini",
|
||||
fallback: "opencode/gpt-mini",
|
||||
},
|
||||
"gemini-pro": {
|
||||
displayName: "Gemini Pro",
|
||||
resolve: "opencode/gemini-3.1-pro",
|
||||
openRouterResolve: "openrouter/google/gemini-3.1-pro-preview",
|
||||
// Inherit — see google/gemini-pro for rationale.
|
||||
},
|
||||
"gemini-flash": {
|
||||
displayName: "Gemini Flash",
|
||||
resolve: "opencode/gemini-3-flash",
|
||||
openRouterResolve: "openrouter/google/gemini-3-flash-preview",
|
||||
},
|
||||
"kimi-k2": {
|
||||
displayName: "Kimi K2",
|
||||
resolve: "opencode/kimi-k2.6",
|
||||
openRouterResolve: "openrouter/moonshotai/kimi-k2.6",
|
||||
},
|
||||
"gpt-5-nano": {
|
||||
displayName: "GPT Nano",
|
||||
resolve: "opencode/gpt-5-nano",
|
||||
openRouterResolve: "openrouter/openai/gpt-5-nano",
|
||||
},
|
||||
"mimo-v2-pro-free": {
|
||||
displayName: "MiMo V2 Pro",
|
||||
resolve: "opencode/mimo-v2-pro-free",
|
||||
envVars: [],
|
||||
isFree: true,
|
||||
fallback: "opencode/big-pickle",
|
||||
},
|
||||
"minimax-m2.5-free": {
|
||||
displayName: "MiniMax M2.5",
|
||||
resolve: "opencode/minimax-m2.5-free",
|
||||
envVars: [],
|
||||
isFree: true,
|
||||
},
|
||||
},
|
||||
}),
|
||||
bedrock: provider({
|
||||
displayName: "Amazon Bedrock",
|
||||
envVars: ["AWS_BEARER_TOKEN_BEDROCK", "AWS_REGION", "BEDROCK_MODEL_ID"],
|
||||
models: {
|
||||
// single routing entry — the actual Bedrock model ID is read from
|
||||
// BEDROCK_MODEL_ID at run time. see ModelRouting docs for why we
|
||||
// don't catalog individual Bedrock models.
|
||||
byok: {
|
||||
displayName: "Amazon Bedrock",
|
||||
resolve: "bedrock",
|
||||
routing: "bedrock",
|
||||
},
|
||||
},
|
||||
}),
|
||||
openrouter: provider({
|
||||
displayName: "OpenRouter",
|
||||
envVars: ["OPENROUTER_API_KEY"],
|
||||
models: {
|
||||
"claude-opus": {
|
||||
displayName: "Claude Opus",
|
||||
resolve: "openrouter/anthropic/claude-opus-4.7",
|
||||
openRouterResolve: "openrouter/anthropic/claude-opus-4.7",
|
||||
preferred: true,
|
||||
subagentModel: "claude-sonnet",
|
||||
},
|
||||
"claude-sonnet": {
|
||||
displayName: "Claude Sonnet",
|
||||
resolve: "openrouter/anthropic/claude-sonnet-4.6",
|
||||
openRouterResolve: "openrouter/anthropic/claude-sonnet-4.6",
|
||||
},
|
||||
"claude-haiku": {
|
||||
displayName: "Claude Haiku",
|
||||
resolve: "openrouter/anthropic/claude-haiku-4.5",
|
||||
openRouterResolve: "openrouter/anthropic/claude-haiku-4.5",
|
||||
},
|
||||
gpt: {
|
||||
displayName: "GPT",
|
||||
resolve: "openrouter/openai/gpt-5.5",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.5",
|
||||
subagentModel: "gpt-5.4",
|
||||
},
|
||||
"gpt-pro": {
|
||||
displayName: "GPT Pro",
|
||||
resolve: "openrouter/openai/gpt-5.5-pro",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.5-pro",
|
||||
subagentModel: "gpt",
|
||||
},
|
||||
// hidden subagent target — see openai provider above for context.
|
||||
"gpt-5.4": {
|
||||
displayName: "GPT 5.4",
|
||||
resolve: "openrouter/openai/gpt-5.4",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.4",
|
||||
hidden: true,
|
||||
},
|
||||
"gpt-mini": {
|
||||
displayName: "GPT Mini",
|
||||
resolve: "openrouter/openai/gpt-5.4-mini",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.4-mini",
|
||||
},
|
||||
// legacy aliases — see openai provider for context.
|
||||
"gpt-codex": {
|
||||
displayName: "GPT Codex",
|
||||
resolve: "openrouter/openai/gpt-5.3-codex",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.3-codex",
|
||||
fallback: "openrouter/gpt",
|
||||
},
|
||||
"gpt-codex-mini": {
|
||||
displayName: "GPT Codex Mini",
|
||||
resolve: "openrouter/openai/gpt-5.1-codex-mini",
|
||||
openRouterResolve: "openrouter/openai/gpt-5.1-codex-mini",
|
||||
fallback: "openrouter/gpt-mini",
|
||||
},
|
||||
"o4-mini": {
|
||||
displayName: "O4 Mini",
|
||||
resolve: "openrouter/openai/o4-mini",
|
||||
openRouterResolve: "openrouter/openai/o4-mini",
|
||||
},
|
||||
"gemini-pro": {
|
||||
displayName: "Gemini Pro",
|
||||
resolve: "openrouter/google/gemini-3.1-pro-preview",
|
||||
openRouterResolve: "openrouter/google/gemini-3.1-pro-preview",
|
||||
// Inherit — see google/gemini-pro for rationale.
|
||||
},
|
||||
"gemini-flash": {
|
||||
displayName: "Gemini Flash",
|
||||
resolve: "openrouter/google/gemini-3-flash-preview",
|
||||
openRouterResolve: "openrouter/google/gemini-3-flash-preview",
|
||||
},
|
||||
grok: {
|
||||
displayName: "Grok",
|
||||
resolve: "openrouter/x-ai/grok-4.3",
|
||||
openRouterResolve: "openrouter/x-ai/grok-4.3",
|
||||
},
|
||||
"deepseek-pro": {
|
||||
displayName: "DeepSeek Pro",
|
||||
resolve: "openrouter/deepseek/deepseek-v4-pro",
|
||||
openRouterResolve: "openrouter/deepseek/deepseek-v4-pro",
|
||||
},
|
||||
"deepseek-flash": {
|
||||
displayName: "DeepSeek Flash",
|
||||
resolve: "openrouter/deepseek/deepseek-v4-flash",
|
||||
openRouterResolve: "openrouter/deepseek/deepseek-v4-flash",
|
||||
},
|
||||
// legacy alias — deepseek retires this on 2026-07-24; transparently
|
||||
// upgrade existing users to the v4 family via the fallback chain.
|
||||
"deepseek-chat": {
|
||||
displayName: "DeepSeek Chat",
|
||||
resolve: "openrouter/deepseek/deepseek-v3.2",
|
||||
openRouterResolve: "openrouter/deepseek/deepseek-v3.2",
|
||||
fallback: "openrouter/deepseek-flash",
|
||||
},
|
||||
"kimi-k2": {
|
||||
displayName: "Kimi K2",
|
||||
resolve: "openrouter/moonshotai/kimi-k2.6",
|
||||
openRouterResolve: "openrouter/moonshotai/kimi-k2.6",
|
||||
},
|
||||
},
|
||||
}),
|
||||
} satisfies Record<string, ProviderConfig>;
|
||||
|
||||
export type ModelProvider = keyof typeof providers;
|
||||
|
||||
// ── slug parsing ───────────────────────────────────────────────────────────────
|
||||
|
||||
export function parseModel(slug: string): { provider: string; model: string } {
|
||||
const slashIdx = slug.indexOf("/");
|
||||
if (slashIdx === -1) {
|
||||
throw new Error(`invalid model slug "${slug}" — expected "provider/model"`);
|
||||
}
|
||||
return { provider: slug.slice(0, slashIdx), model: slug.slice(slashIdx + 1) };
|
||||
}
|
||||
|
||||
export function getModelProvider(slug: string): string {
|
||||
return parseModel(slug).provider;
|
||||
}
|
||||
|
||||
export function getProviderDisplayName(slug: string): string | undefined {
|
||||
const parsed = parseModel(slug);
|
||||
return (providers as Record<string, ProviderConfig>)[parsed.provider]?.displayName;
|
||||
}
|
||||
|
||||
export function getModelEnvVars(slug: string): string[] {
|
||||
const parsed = parseModel(slug);
|
||||
const providerConfig = (providers as Record<string, ProviderConfig>)[parsed.provider];
|
||||
if (!providerConfig) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const modelConfig = providerConfig.models[parsed.model];
|
||||
if (modelConfig?.envVars) {
|
||||
return modelConfig.envVars.slice();
|
||||
}
|
||||
|
||||
return providerConfig.envVars.slice();
|
||||
}
|
||||
|
||||
/** managed credentials are authored only via `pullfrog auth <provider>` — they
|
||||
* count as "configured" for hasAnyKey-style UI checks but are never offered as
|
||||
* a manual-paste option in `init` or the AgentSettings env-var button row.
|
||||
* see `provider.managedCredentials` and wiki/codex-auth.md. */
|
||||
export function getModelManagedCredentials(slug: string): string[] {
|
||||
const parsed = parseModel(slug);
|
||||
const providerConfig = (providers as Record<string, ProviderConfig>)[parsed.provider];
|
||||
return providerConfig?.managedCredentials?.slice() ?? [];
|
||||
}
|
||||
|
||||
// ── derived flat list ──────────────────────────────────────────────────────────
|
||||
|
||||
export const modelAliases: ModelAlias[] = Object.entries(providers).flatMap(
|
||||
([providerKey, config]) =>
|
||||
Object.entries(config.models).map(([modelId, def]) => ({
|
||||
slug: `${providerKey}/${modelId}`,
|
||||
provider: providerKey,
|
||||
displayName: def.displayName,
|
||||
resolve: def.resolve,
|
||||
openRouterResolve: def.openRouterResolve,
|
||||
preferred: def.preferred ?? false,
|
||||
isFree: def.isFree ?? false,
|
||||
fallback: def.fallback,
|
||||
routing: def.routing,
|
||||
// subagentModel is stored as an alias key local to the provider; expand
|
||||
// here to a fully-qualified slug so callers can look up the target alias
|
||||
// directly without re-deriving the provider.
|
||||
subagentModel: def.subagentModel ? `${providerKey}/${def.subagentModel}` : undefined,
|
||||
hidden: def.hidden ?? false,
|
||||
}))
|
||||
);
|
||||
|
||||
// ── resolution ─────────────────────────────────────────────────────────────────
|
||||
|
||||
/** resolve a model slug to its concrete models.dev specifier (e.g. "anthropic/claude-opus-4-6") */
|
||||
export function resolveModelSlug(slug: string): string | undefined {
|
||||
return modelAliases.find((a) => a.slug === slug)?.resolve;
|
||||
}
|
||||
|
||||
const MAX_FALLBACK_DEPTH = 10;
|
||||
|
||||
/**
|
||||
* walk the fallback chain to the terminal (non-deprecated) alias.
|
||||
* returns undefined if the chain is broken, exhausted, or cyclic.
|
||||
*
|
||||
* use this in UI display sites (dropdown trigger labels, PR-comment footers,
|
||||
* etc.) so a deprecated stored slug renders as the model the user actually
|
||||
* runs against — not the historical name. selectable lists should still hide
|
||||
* deprecated and internal-only aliases by filtering on `!a.fallback && !a.hidden`.
|
||||
*/
|
||||
export function resolveDisplayAlias(slug: string): ModelAlias | undefined {
|
||||
let current = slug;
|
||||
const visited = new Set<string>();
|
||||
for (let i = 0; i < MAX_FALLBACK_DEPTH; i++) {
|
||||
if (visited.has(current)) return undefined;
|
||||
visited.add(current);
|
||||
const alias = modelAliases.find((a) => a.slug === current);
|
||||
if (!alias) return undefined;
|
||||
if (!alias.fallback) return alias;
|
||||
current = alias.fallback;
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* resolve a model slug to the CLI-ready model string, following the fallback
|
||||
* chain when a model is deprecated. returns the first non-deprecated resolve
|
||||
* target, or undefined if the chain is exhausted or broken.
|
||||
*/
|
||||
export function resolveCliModel(slug: string): string | undefined {
|
||||
return resolveDisplayAlias(slug)?.resolve;
|
||||
}
|
||||
|
||||
/**
|
||||
* resolve a model slug to the OpenRouter-ready model string, following the
|
||||
* fallback chain when a model is deprecated. returns undefined if the chain
|
||||
* is exhausted/broken or the terminal alias has no openrouter equivalent
|
||||
* (e.g. free opencode models).
|
||||
*/
|
||||
export function resolveOpenRouterModel(slug: string): string | undefined {
|
||||
return resolveDisplayAlias(slug)?.openRouterResolve;
|
||||
}
|
||||
|
||||
// ── bedrock routing ────────────────────────────────────────────────────────────
|
||||
|
||||
/** env var that supplies the Bedrock model ID for the `bedrock/byok` slug. */
|
||||
export const BEDROCK_MODEL_ID_ENV = "BEDROCK_MODEL_ID";
|
||||
|
||||
/**
|
||||
* the Bedrock model ID passed to claude-code or opencode is whatever the
|
||||
* user set in `BEDROCK_MODEL_ID` — Pullfrog never resolves or upgrades it.
|
||||
* we route by checking whether the ID names an Anthropic model: claude-code
|
||||
* handles Anthropic-on-Bedrock natively (with `CLAUDE_CODE_USE_BEDROCK=1`),
|
||||
* everything else goes through opencode's `amazon-bedrock` provider.
|
||||
*
|
||||
* AWS Bedrock IDs come in two shapes:
|
||||
* - dotted foundation IDs: `us.anthropic.claude-opus-4-7`,
|
||||
* `anthropic.claude-haiku-4-5-20251001-v1:0`, `amazon.nova-pro-v1:0`,
|
||||
* `meta.llama4-scout-17b-instruct-v1:0`. AWS-published, lowercase, the
|
||||
* foundation provider always appears as a discrete dot-segment.
|
||||
* - inference-profile ARNs: `arn:aws:bedrock:us-east-2:<acct>:application-inference-profile/<user-name>`.
|
||||
* `<user-name>` is operator-chosen, so a naive substring check is fragile
|
||||
* in both directions (Anthropic profile named without "anthropic" → routes
|
||||
* to opencode and misses CLAUDE_CODE_USE_BEDROCK; non-Anthropic profile
|
||||
* whose name happens to contain "anthropic" → routes to claude-code).
|
||||
*
|
||||
* we anchor on a discrete dot-segment match (case-insensitive). this catches
|
||||
* every published foundation ID and is conservative for ARN-form IDs: ARN
|
||||
* names that don't include "anthropic" as their own dot-segment route to
|
||||
* opencode by default. operators using ARN-form IDs whose backing model is
|
||||
* Anthropic should set `PULLFROG_AGENT=claude` to force the right route, or
|
||||
* include the foundation segment in the profile name.
|
||||
*/
|
||||
export function isBedrockAnthropicId(bedrockModelId: string): boolean {
|
||||
// split on `.`, `/`, and `:` so the check works for both dotted foundation
|
||||
// IDs (anthropic.* / us.anthropic.*) and ARN-form IDs (where the relevant
|
||||
// foundation segment sits between `/` and `.` inside the resource name).
|
||||
return bedrockModelId.toLowerCase().split(/[./:]/).includes("anthropic");
|
||||
}
|
||||
@@ -1,603 +0,0 @@
|
||||
// changes to mode definitions should be reflected in docs/modes.mdx
|
||||
import { REVIEWER_AGENT_NAME } from "./agents/reviewer.ts";
|
||||
import { type AgentId, formatMcpToolRef, pullfrogMcpName } from "./external.ts";
|
||||
|
||||
export interface Mode {
|
||||
name: string;
|
||||
description: string;
|
||||
// step-by-step guidance returned when the agent calls select_mode.
|
||||
// custom user-defined modes supply this; built-in modes define it here.
|
||||
prompt?: string | undefined;
|
||||
}
|
||||
|
||||
// Default user-facing summary format embedded in BOTH Review and
|
||||
// IncrementalReview review bodies. The two modes share the preamble +
|
||||
// cross-cutting + nitpicks shape; the only difference is scope (full PR for
|
||||
// Review vs delta against the prior pullfrog review for IncrementalReview).
|
||||
// Distinct from the agent-internal snapshot (action/utils/prSummary.ts) which
|
||||
// has its own stable scaffold and is never shaped by user instructions — see
|
||||
// selectMode.ts for the firewall.
|
||||
export const PR_SUMMARY_FORMAT = `### Default format
|
||||
|
||||
The body has at most three parts in this exact order:
|
||||
|
||||
1. **Reviewed changes preamble** — one bolded inline lead-in describing what was reviewed in this run, a bullet list of the substantive changes, and an HTML comment carrying review metadata for downstream agents.
|
||||
2. **Cross-cutting issue sections** (zero or more) — one \`### \` heading per concern, with a human-readable problem write-up and a collapsed \`<details>Technical details</details>\` block underneath.
|
||||
3. **\`### ℹ️ Nitpicks\`** at the very bottom (only if there are nits worth surfacing in the body) — a flat bullet list, no technical-details block.
|
||||
|
||||
Inline-vs-body split: concerns that anchor to a specific line go inline (use the \`comments\` parameter). Body \`### \` sections are reserved for concerns that **have no line to anchor to** — typically because the concern is about *absence* (something the diff should have done but didn't), *sequencing* (rollout / deletion / migration order), *design decisions only the human can make*, or *scope questions the diff implicitly raises but doesn't address*. A concern that anchors to a line but has broad implications still goes inline (use the technical-details block there to capture the implications — see Inline technical details below). If you found no non-anchorable concerns, the body has zero \`### \` issue sections — just the preamble + metadata.
|
||||
|
||||
## 1. Reviewed changes preamble
|
||||
|
||||
Open with a single bolded inline lead-in followed immediately by the bullet list (no \`### Key changes\` heading, no \`<b>TL;DR</b>\`):
|
||||
|
||||
\`\`\`
|
||||
**Reviewed changes** — one sentence on what was reviewed in this run. For Review (initial), this is what the PR does and why. For IncrementalReview, this is what changed since the prior pullfrog review. Focus on intent, not mechanics.
|
||||
|
||||
- **Short human-readable title** — 1 sentence per substantive change. Write a short prose phrase; when you name a file, type, or function, put that name in backticks (e.g. **Add \\\`TodoTracker\\\` for live checklists**). A reviewer should understand the full reviewed scope from this list alone — this IS the dispassionate "what was reviewed and what changed" overview, so cover the substantive changes, not just the loudest ones.
|
||||
|
||||
<!--
|
||||
Pullfrog review metadata — for any agent (or human-with-agent) reading this
|
||||
review. Incorporate the fields below into your understanding of the context
|
||||
this review was made in. The findings below were written against
|
||||
{head_sha_short}; if new commits have landed on {head_ref} since this review
|
||||
was submitted, treat any specific bug, file, or line callout as POTENTIALLY
|
||||
STALE — re-diff against {head_sha_short} (or trigger a fresh review) and
|
||||
factor commits past {head_sha_short} into your understanding of the current
|
||||
state before acting on findings.
|
||||
|
||||
- Mode: Review (initial) or IncrementalReview (delta against prior pullfrog review)
|
||||
- Files reviewed: {file_count}
|
||||
- Commits reviewed: {commit_count}
|
||||
- Base: {base_ref} ({base_sha_short})
|
||||
- Head: {head_ref} ({head_sha_short})
|
||||
- Reviewed commits:
|
||||
- {sha_short} — {commit_subject}
|
||||
- ...
|
||||
- Prior pullfrog review: none or {prior_sha_short} ({prior_review_html_url})
|
||||
- Submitted at: {iso_timestamp}
|
||||
-->
|
||||
\`\`\`
|
||||
|
||||
Pull every metadata field from the \`checkout_pr\` tool's response — file count, commit count, base/head ref + SHA, the commit list. For \`IncrementalReview\` runs, populate \`Prior pullfrog review\` with the prior review's commit_id (short SHA) and \`html_url\` from \`list_pull_request_reviews\`.
|
||||
|
||||
## 2. Cross-cutting issue sections (zero or more)
|
||||
|
||||
For each cross-cutting concern, one \`### \` section. Use this exact shape:
|
||||
|
||||
\`\`\`
|
||||
### {emoji} {short, descriptive title — what's wrong, not what to do}
|
||||
|
||||
{Human-readable problem write-up. Describes the PROBLEM only — what's broken, what the symptom is, what the blast radius is. NO asks, NO suggested fixes, NO "the right thing to do is...". Asks and fixes live in the technical-details block below; the visible part is for the human to *understand* the problem, not to implement it.}
|
||||
|
||||
<details><summary>Technical details</summary>
|
||||
|
||||
\\\`\\\`\\\`\\\`markdown
|
||||
# {title repeated}
|
||||
|
||||
## Affected sites
|
||||
- {file path:line} — {what's wrong there}
|
||||
- ...
|
||||
|
||||
## Required outcome
|
||||
- {what the fix needs to achieve, not how to achieve it}
|
||||
- ...
|
||||
|
||||
## Suggested approach (optional)
|
||||
{When the fix shape is non-obvious, sketch one or more reasonable directions. Skip when the outcome alone makes the fix obvious.}
|
||||
|
||||
## Open questions for the human (optional)
|
||||
- {Any decision an implementing agent shouldn't make unilaterally — pricing thresholds, breaking-change policy, naming, scope of follow-up.}
|
||||
\\\`\\\`\\\`\\\`
|
||||
|
||||
</details>
|
||||
\`\`\`
|
||||
|
||||
Concrete example of the visible part of a non-anchored section (technical-details block unchanged from the template above):
|
||||
|
||||
\`\`\`
|
||||
### ℹ️ Legacy \`opencode.ts\` has no documented deletion plan
|
||||
|
||||
The v2 harness lands alongside the v1 file and imports one helper from it. Worth a follow-up issue or a TODO so the next maintainer doesn't have to re-derive the cleanup plan.
|
||||
\`\`\`
|
||||
|
||||
The example's value is its *shape*: a finding about absence (no deletion plan), not a line-anchored bug. Body sections live or die on whether the concern genuinely doesn't fit on a line.
|
||||
|
||||
**Heading severity emoji** — every \`### \` heading carries one:
|
||||
|
||||
- 🚨 critical — blocks merge (data loss, security, broken core flow)
|
||||
- ⚠️ important — must address before merging (regression, missing validation, incorrect behavior)
|
||||
- ℹ️ informational — surfaced for awareness; mergeable as-is
|
||||
|
||||
**Visible problem write-up rules:**
|
||||
|
||||
- **No asks, no suggested fixes** in the visible part. The visible portion describes the problem; the technical-details block describes the fix shape and any open questions. The exception: a fix so self-evident that NOT stating it would be weird (e.g. "the typo is missing an 'r'") — in that case, fold it into the problem statement and skip the suggested-approach block in technical details too.
|
||||
- **Never two successive plain paragraphs.** Every transition between block-level elements must alternate prose with structure: paragraph → bullet list → paragraph; paragraph → code fence → bullet list; paragraph → table → paragraph. Two consecutive paragraphs in a row create a wall of text that's impossible to digest. If you catch yourself writing one, find a way to split it: pull a list out of it, drop a 2-3 line code fence between them, or merge them into a single tighter paragraph.
|
||||
- **Per-paragraph budget:** ~3 sentences max. Past that, you're explaining where you should be structuring.
|
||||
- **Identifier discipline still applies** in the visible part. Lead with behavior in plain English; name an identifier only when it's the subject of the concern or a public surface a reader would recognize. The technical-details block is where dense identifier references belong.
|
||||
|
||||
**Technical-details block rules:**
|
||||
|
||||
- Wrapped in a 4-backtick markdown fence (\`\\\`\\\`\\\`\\\`markdown ... \\\`\\\`\\\`\\\`\`) so it's visually distinct, one-click copyable, and can contain its own 3-backtick code fences without escape gymnastics. The contents are agent-readable — a fix-agent will pull the body down and use this block as the brief.
|
||||
- File paths and \`file:line\` refs are encouraged (and necessary) — the next agent uses these to navigate. Identifier density is fine here.
|
||||
- Slightly more verbose than the absolute minimum is OK when it materially helps the next agent: a small code snippet showing the symptom, a short table of mismatched key/column pairs, a one-paragraph "why CI doesn't catch it" note. Skip massive regression-test scaffolding or full route rewrites — the implementing agent writes those.
|
||||
- Use the four standard sections (\`Affected sites\`, \`Required outcome\`, optional \`Suggested approach\`, optional \`Open questions for the human\`). Skip the optional sections when they wouldn't add anything.
|
||||
|
||||
## Inline technical details
|
||||
|
||||
Inline comments are short (~2-3 sentences) by default. When an inline finding has broader implications worth recording for a fix-agent — e.g. a localized bug whose proper fix requires touching several files, or where the right fix depends on a design decision the human needs to make — append a collapsed \`<details><summary>Technical details</summary>\` block to the inline comment's body. Same shape as the body-section technical-details block (4-backtick fenced markdown, \`## Affected sites\` / \`## Required outcome\` / optional \`## Suggested approach\` / optional \`## Open questions for the human\`).
|
||||
|
||||
GitHub renders the same markdown parser in inline comments as in the review body, so the collapsed-details affordance works the same way. The visible part of the inline comment stays scannable; the depth is one click away for any agent that needs it.
|
||||
|
||||
## 3. \`### ℹ️ Nitpicks\` (optional, last section)
|
||||
|
||||
Only when there are nits that for some reason can't be inlined. Filepaths in nit text are fine — these are simple enough that a human or agent reads once and acts. No technical-details block.
|
||||
|
||||
\`\`\`
|
||||
### ℹ️ Nitpicks
|
||||
|
||||
- {nit, with file path inline if useful, ≤ ~200 chars}
|
||||
- ...
|
||||
\`\`\`
|
||||
|
||||
## Inline comment shape
|
||||
|
||||
Inline comments use the same severity framing as body \`### \` sections, scaled down for line-anchored use:
|
||||
|
||||
- **Lead with a 1-2 sentence problem statement.** The reader is looking at the line in question, so don't restate what the line says — describe what's wrong with it. Optionally prefix the visible line with a severity emoji (🚨 / ⚠️ / ℹ️) when severity isn't obvious from context.
|
||||
- **Optional \`<details><summary>Technical details</summary>...</details>\` collapsible** for findings whose technical context (longer file:line references, related-code snippets, suggested approach, regression-risk notes) would overwhelm the human-readable lead-in. Same agent-readable purpose, same 4-backtick fence shape, and same 4-section structure as the body's technical-details block — see *Inline technical details* above. Encouraged whenever the depth helps a downstream fix-agent; don't force one when the inline lead-in already says everything.
|
||||
- **Visible portion ≤ 2-3 sentences.** If you find yourself writing more, that's the cue to split the depth into the \`Technical details\` collapsible.
|
||||
|
||||
## Body-wide rules
|
||||
|
||||
- **Inline-vs-body discipline (repeated for emphasis):** anything that anchors to a specific line goes inline (with a \`<details>Technical details</details>\` block when the implications are broad). The body is for non-anchorable concerns only — absence, sequencing, design decisions, scope questions, architectural risk.
|
||||
- **No \`### Issues found\` heading** above the issue sections — each \`### \` heading IS the issue.
|
||||
- **Severity emoji on every \`### \` heading** (🚨 / ⚠️ / ℹ️). No emoji on the preamble lead-in or anywhere else.
|
||||
- **GitHub block-level rendering**: GitHub's markdown parser requires a blank line between ALL block-level elements (HTML tags like \`<br/>\`, \`<sub>\`, \`<details>\`, \`<b>\` and markdown syntax like headings, lists, blockquotes, code fences, paragraphs). Without a blank line, GitHub treats following content as a continuation of the HTML block and renders markdown syntax as literal text. ALWAYS separate block-level elements with a blank line.
|
||||
- **Backtick-wrap** every variable, identifier, or file name when you mention one (in either visible or technical-details portions).
|
||||
- **Don't repeat diff content**, don't include raw \`+123 / -45\` stats, don't include a changelog section, don't use horizontal rules (\`---\`).
|
||||
- **Pull file/commit counts from \`checkout_pr\` metadata** — never count manually.
|
||||
- **Legacy headings REMOVED.** Do not use \`### Key changes\`, \`### Issues found\`, \`<b>TL;DR</b>\`, or \`<sub><b>Summary</b>\`. The new structure subsumes them.`;
|
||||
|
||||
export function computeModes(agentId: AgentId): Mode[] {
|
||||
const t = (toolName: string) => formatMcpToolRef(agentId, toolName);
|
||||
return [
|
||||
{
|
||||
name: "Build",
|
||||
description:
|
||||
"Implement, build, create, or develop code changes; make specific changes to files or features; execute a plan; or handle tasks with specific implementation details",
|
||||
prompt: `### Checklist
|
||||
|
||||
1. **task list**: create your task list for this run as your first action.
|
||||
|
||||
2. **plan** (optional, for complex tasks): analyze requirements, read AGENTS.md and relevant code, produce a step-by-step implementation plan.
|
||||
|
||||
3. **setup**: checkout or create the branch:
|
||||
- **PR event, modifying the existing PR**: call \`${t("checkout_pr")}\`
|
||||
- **new branch**: use \`${t("git")}\` to create a branch (\`git checkout -b pullfrog/branch-name\`)
|
||||
|
||||
4. **build**: implement changes using your native file and shell tools:
|
||||
- follow the plan (if you ran a plan phase)
|
||||
- plan your approach before writing code: identify which files need to change, key design decisions, and edge cases. for non-trivial changes, consider whether there's a more elegant approach.
|
||||
- run relevant tests/lints before committing
|
||||
|
||||
5. **self-review**: judgment call — does YOUR diff warrant a fresh-eyes pass?
|
||||
|
||||
Skip self-review (commit directly) when the diff is **genuinely trivial**:
|
||||
- doc typos, comment-only edits, whitespace/format-only, import reordering
|
||||
- lockfile or generated-code regeneration, mechanical rename whose only effect is import-path updates (size of diff is irrelevant — read the *shape*, not the line count)
|
||||
- low-risk dep patch bump from a trusted source
|
||||
|
||||
Run self-review when the diff has **any behavioral surface, however small**:
|
||||
- 1-line changes to SQL operators / comparison logic / regexes / redirects / HTTP methods / response codes
|
||||
- any change to money / tax / currency / billing / fee / refund / payout calculations or constants
|
||||
- any change to auth / permissions / roles / sessions / tokens / signature verification
|
||||
- any change to feature-flag defaults, retry counts, timeouts, rate limits, batch sizes
|
||||
- new endpoints, new code paths, new error branches — even small ones
|
||||
- mixed diffs (whitespace + a single semantic line) — the semantic line still triggers self-review
|
||||
- anything you're uncertain about
|
||||
|
||||
Tie-breaker: when in doubt, run self-review. One false-positive subagent dispatch costs cents; one false-negative shipped bug costs much more. There's no value in dispatching for a typo, but there's also no excuse for skipping on a 1-line change to a billing path.
|
||||
|
||||
Otherwise delegate the \`${REVIEWER_AGENT_NAME}\` subagent to review your diff with fresh eyes against YOUR TASK. The subagent's baked-in system prompt enforces a non-mutative + non-recursive contract: read-only file/search/web tools and read-only MCP queries only; no writes, shell side effects, state-changing MCP calls, or nested subagent dispatch. Enforcement is prose-only — restate the constraint in your dispatch instructions and do not relax it.
|
||||
|
||||
Provide the subagent with YOUR TASK, the output of \`git diff origin/<base-branch>\` (single-rev form, no \`HEAD\` — this compares the working tree against the remote base and captures committed + staged + unstaged work; \`main...HEAD\` and \`--cached\` both miss the uncommitted edits Build self-review runs on, since self-review happens BEFORE the commit), and a tight summary (not raw output) of any lint/typecheck/test failures you fixed during build — what broke, root cause, the fix — so it can check that fixes addressed root causes rather than suppressed symptoms; say "no build-phase failures" if the build path was clean. Instruct it to flag bugs, logic errors, missing edge cases, gaps between request and diff, and unintended changes.
|
||||
|
||||
Delegation + research discipline (distilled from \`/anneal\` canonical — these are codified learnings from many review rounds, not theoretical best practices):
|
||||
- Do NOT summarize what you implemented — that biases the subagent toward validating the shape of your solution rather than questioning it.
|
||||
- Do NOT curate a reading list of files. Let the subagent discover scope from the diff and codebase.
|
||||
- Do NOT pre-shape output with a severity / category schema. That leaks your hypotheses; severity is your call during evaluation.
|
||||
- Do NOT defect-hunt the diff yourself in parallel with the subagent. Your role is dispatch + evaluation; doing the review yourself reintroduces the implementation bias the subagent is meant to mitigate.
|
||||
- For diffs that rely on third-party API contracts, SDK semantics, framework directives, or DB engine specifics, instruct the subagent to verify load-bearing claims via web search and quote source URLs rather than trust training data — this is the single most common review-quality failure mode.
|
||||
|
||||
Be **discerning** about what comes back. The reviewer is an AI subagent and is fallible — treat every finding as a hypothesis, not a directive, and **verify each one yourself** against the diff and the code before deciding whether to apply. You are searching for a solution that is **complete, minimal, and elegant** — you may need to think hard to find it. Do not over-engineer, do not be over-defensive, **do not write AI slop**. Reviewers bias toward *recommending additions*, and that bias has a recognizable slop texture: defensive checks for cases that cannot happen, extra logging, new abstractions used once, comments restating code, tests asserting tautologies, "just-in-case" guards, error handlers for cases the type system already rules out. Reject those. For each surviving finding, ask: would applying it leave the code more sound, correct, AND elegant? Two-out-of-three means look harder for a fix that gets all three before settling. After applying the fixes you accept, re-read your diff and be discerning about what *you just changed*: if any fix turned out to be bloat in context, revert it. Then verify only intended changes are present, no debug artifacts or commented-out code remain, no unrelated files were modified. Commit locally via shell (\`git add . && git commit -m "..."\`).
|
||||
|
||||
6. **finalize**:
|
||||
- confirm a clean working tree, then push via \`${t("push_branch")}\` (see *SYSTEM* Git rules if this fails — prepush errors are usually the repo's tests/lint, not infra timeouts)
|
||||
- create a PR via \`${t("create_pull_request")}\`
|
||||
- call \`${t("report_progress")}\` with the PR link or the exact error if push/PR failed
|
||||
|
||||
### Notes
|
||||
|
||||
For simple, well-defined tasks, skip the plan phase and go straight to build.`,
|
||||
},
|
||||
{
|
||||
name: "AddressReviews",
|
||||
description:
|
||||
"Address PR review feedback; respond to reviewer comments; make requested changes to an existing PR",
|
||||
prompt: `### Checklist
|
||||
|
||||
1. **task list**: create your task list for this run as your first action.
|
||||
|
||||
2. Checkout the PR branch via \`${t("checkout_pr")}\`.
|
||||
|
||||
3. Fetch review comments via \`${t("get_review_comments")}\`.
|
||||
|
||||
4. For each comment:
|
||||
- understand the feedback
|
||||
- **verify the finding yourself** against the actual code before deciding whether to apply — every comment (human or agent) is a hypothesis, not a directive. agent reviewers especially are fallible.
|
||||
- you are searching for a solution that is **complete, minimal, and elegant** — you may need to think hard to find it. do not over-engineer, do not be over-defensive, **do not write AI slop**. reviewers bias toward *recommending additions*, and that bias has a recognizable slop texture: defensive checks for impossible cases, extra abstractions used once, comments restating obvious code, tests asserting tautologies, "just-in-case" guards, error handlers for cases the type system already rules out. reject those. evaluate whether applying the finding would leave the code more **sound, correct, AND elegant**; two-out-of-three is a signal to look harder for a fix that gets all three. if a request would add bloat — ceremony without commensurate correctness benefit — push back in your reply rather than mechanically applying it.
|
||||
- if the request stands, make the code change using your native tools; otherwise reply explaining why
|
||||
- record what was done (or why nothing was done)
|
||||
|
||||
5. Quality check:
|
||||
- test changes, then review the diff before committing — verify only intended changes are present, no debug artifacts remain, no fix turned out to be bloat in context (revert any that did), and the changes are clean enough that a senior engineer would approve without hesitation
|
||||
- commit locally via shell (\`git add . && git commit -m "..."\`)
|
||||
|
||||
6. Finalize. Reply + resolve are paired write actions: do BOTH or NEITHER for each thread.
|
||||
- confirm a clean working tree, then push via \`${t("push_branch")}\` (same push/prepush guidance as Build mode in *SYSTEM*)
|
||||
- **if push fails**, call \`${t("report_progress")}\` with the exact error and STOP — do NOT reply or resolve any thread until the fix is live on the remote. Resolving a thread without the fix landing misleads the reviewer.
|
||||
- **on push success**, for each thread you acted on:
|
||||
- reply ONCE via \`${t("reply_to_review_comment")}\`. The \`comment_id\` parameter takes the root comment's numeric \`id=\` (from the first \`comment author=...\` tag in the \`${t("get_review_comments")}\` output) — NOT the \`thread=\` value; that's a separate GraphQL ID used by resolve. The runtime dedupes identical bodies within a session.
|
||||
- **immediately** call \`${t("resolve_review_thread")}\` with that thread's \`thread=\` value as \`thread_id\`. Resolve every thread where you (a) made the requested code change in full — partial fixes leave the thread open — OR (b) replied with a substantive answer the user explicitly asked for. Do NOT resolve threads where you pushed back on the request and the disagreement is unresolved; leave those open for the human to mediate.
|
||||
- call \`${t("report_progress")}\` with a brief summary`,
|
||||
},
|
||||
// Review and IncrementalReview use a 0-or-2+ lens pattern. The default is
|
||||
// 0 lenses (orchestrator handles the review solo). Multi-lens (2+
|
||||
// reviewfrog subagents in parallel) only fires for substantive PRs or
|
||||
// high-stakes-subsystem touches — and when it fires, ALL lenses must
|
||||
// dispatch in a single assistant turn or the parallelism win disappears.
|
||||
// We never dispatch exactly one lens: a single lens is just a worse,
|
||||
// slower version of doing the work yourself.
|
||||
//
|
||||
// Build mode self-review is a different problem shape: the orchestrator
|
||||
// wrote the code, so bias-mitigation comes from delegating to one
|
||||
// fresh-eyes subagent that doesn't share the implementation context. A
|
||||
// single subagent there is appropriate; the 0-or-2+ rule applies only to
|
||||
// the Review/IncrementalReview lens fan-out where independence between
|
||||
// perspectives is what's being purchased.
|
||||
//
|
||||
// Severity categorization is split across two surfaces: the opening
|
||||
// callout (CAUTION/IMPORTANT/ℹ️/✅) sets the review's overall tier, and
|
||||
// per-bullet emoji prefixes (🚨/⚠️/ℹ️ in PR_SUMMARY_FORMAT) tag
|
||||
// individual points inside summary sections — scoping severity to the
|
||||
// specific bullet rather than the whole section keeps a section that
|
||||
// mixes a 🚨 and an ℹ️ from being mislabeled by either of them.
|
||||
{
|
||||
name: "Review",
|
||||
description:
|
||||
"Review code, PRs, or implementations; provide feedback or suggestions; identify issues; or check code quality, style, and correctness",
|
||||
prompt: `### Checklist
|
||||
|
||||
1. **task list**: create your task list for this run as your first action.
|
||||
|
||||
2. **checkout**: call \`${t("checkout_pr")}\` — this returns PR metadata and a \`diffPath\`. read the diff TOC end-to-end and treat its file line ranges as your coverage checklist.
|
||||
|
||||
3. **triage**: orient yourself on the PR — identify *what kind of thing this is* (domain it touches, seams it crosses, external contracts it depends on, user-facing surfaces it changes). pull as much context as you need to render a confident, well-grounded review: read related files, grep for callers of changed symbols, check tests that exercise the touched paths, fetch related GitHub state. **you are the synthesizer** — never delegate understanding to subagents.
|
||||
|
||||
if the PR is **genuinely trivial**, skip the fan-out entirely and submit a \`No new issues found.\` review per step 7.
|
||||
|
||||
"Genuinely trivial" (skip):
|
||||
- single-word doc typo, whitespace/format-only, comment-only across any number of files
|
||||
- lockfile or generated-code regeneration (size of diff is irrelevant — read the *shape*)
|
||||
- mechanical rename whose only effect is import-path updates
|
||||
- low-risk dep patch bump
|
||||
|
||||
"Looks trivial but isn't" (do **NOT** skip — small diff, big blast radius):
|
||||
- any 1-line change to SQL / regex / auth / billing / permission / signature-verification code
|
||||
- flipping a feature-flag default, default config value, or retry/timeout constant
|
||||
- changing a money/tax/currency/fee constant by any amount
|
||||
- changing an HTTP method, redirect URL, response code, or status enum
|
||||
- tightening or loosening a comparison operator (\`<\` ↔ \`<=\`, \`==\` ↔ \`!=\`)
|
||||
- renaming a public API surface (still trivial in shape, but needs an impact lens)
|
||||
- adding a new direct dependency (supply-chain surface)
|
||||
- any "typo fix" in user-facing copy that changes meaning ("approved" → "denied")
|
||||
- mixed diffs where a semantic 1-liner is buried in whitespace/formatting changes
|
||||
|
||||
4. **lens decision — 0 or 2+, NEVER 1**.
|
||||
|
||||
The default is **0 lenses**: handle the review yourself end-to-end. Most PRs land here.
|
||||
|
||||
Dispatch **2+ \`${REVIEWER_AGENT_NAME}\` lenses in parallel** ONLY when ALL of the following are true:
|
||||
- the PR is substantive (>5 files changed AND >200 net lines), OR touches a high-stakes subsystem (auth, billing, payments, schema migration, webhooks, secrets, RBAC, multi-tenant isolation, cron/scheduling)
|
||||
- you can name 2+ distinct concrete failure modes that warrant independent lenses (one lens per failure mode; orthogonal, not overlapping)
|
||||
- parallel-orchestrated independent perspectives meaningfully outperform what you'd find solo
|
||||
|
||||
**NEVER dispatch exactly one lens.** A single lens is just a more expensive version of doing the work yourself with a worse model — it adds wall time and a context-handoff for no orthogonality benefit. Either you have at least two genuinely independent failure-mode hypotheses (dispatch all in one turn), or you don't (do the review yourself).
|
||||
|
||||
When you do go multi-lens, lens framings come in two flavors:
|
||||
- **themed lenses** — a perspective applied across the whole diff (correctness, security, user-journey, performance, etc.).
|
||||
- **subsystem lenses** — a domain-scoped frame for high-stakes subsystems the PR touches (e.g. "the auth lens", "the billing lens", "the schema-migration lens"). **for high-stakes domains, lead with the subsystem lens rather than the generic themed equivalent** — "billing-subsystem" outperforms "correctness on billing code" because the framing primes the subagent to remember domain-specific failure modes (double-charges, refund races, currency rounding, dispute flows) the generic lens misses.
|
||||
|
||||
starter menu (combine, omit, or invent your own):
|
||||
- **correctness & invariants** — bugs, races, error handling, edge cases, state-machine boundaries
|
||||
- **impact** — stale references in code/tests/docs/configs/UI after rename/remove
|
||||
- **research-validated assumptions** — third-party API contracts, SDK semantics, framework directives, version-gated behavior. **only pick when the PR's correctness depends on the contract behaving a specific way** — not when the API is merely used. The bar is "if the third-party contract differs from what the diff assumes, the PR is incorrect." When dispatched, the subagent must verify load-bearing claims via web search and quote source URLs.
|
||||
- **security** — new endpoints, authZ, input validation, secrets handling, replay/CSRF/injection, cross-tenant isolation
|
||||
- **user-journey** — UX-touching flows: walk through happy path and failure modes as a user
|
||||
- **operational readiness** — observability, alerting, migrations (forward + rollback), feature flags, on-call burden
|
||||
- **integration & cross-cutting** — API contracts between modules, backward-compat of public surfaces, multi-service ordering
|
||||
- **test integrity** — meaningful coverage for the changed behavior; deterministic; no shared-state pollution
|
||||
- **performance** — N+1 queries, hot-path allocation, latency budgets, index coverage
|
||||
- **holistic** — does the PR make sense as a whole? symmetric flows (delete for every create, rollback for every migration)?
|
||||
- **subsystem lenses** (invent as the PR demands) — auth, billing, payments, schema migration, webhooks, secrets, RBAC, multi-tenant isolation, cron/scheduling, etc.
|
||||
|
||||
The only subagent type is \`${REVIEWER_AGENT_NAME}\` — used for lens judgment work ("is this safe / correct / well-tested?"), runs on a mid-tier model.
|
||||
|
||||
5. **fan out (only if step 4 said 2+ lenses)**: dispatch every \`${REVIEWER_AGENT_NAME}\` subagent for this run **IN A SINGLE ASSISTANT TURN, AS MULTIPLE PARALLEL TASK TOOL_USE BLOCKS IN ONE MESSAGE.**
|
||||
|
||||
⚠️ CRITICAL — PARALLELISM IS THE ONLY REASON LENSES EXIST. ⚠️
|
||||
The default tool-call behavior of Claude Code (and most agent runtimes) is **serial dispatch**: emit one Task call, await result, emit next, await, etc. This collapses your fan-out into a sequential review where each lens adds N × (orchestrator-think-time + lens-execution-time) to wall time. **YOU MUST OVERRIDE THIS DEFAULT.** Emit ALL of your Task tool_use blocks in the SAME assistant message, BEFORE you read ANY result from ANY of them. If you find yourself emitting one Task call, then thinking about the result, then emitting another — STOP and re-issue them all together. The whole point of going multi-lens is the wall-clock speedup from parallel execution; serial dispatch defeats it entirely.
|
||||
|
||||
✅ Right pattern: one assistant turn with N Task tool_use blocks → wait → N results arrive together → aggregate.
|
||||
❌ Wrong pattern: turn 1 = Task(lens A) → turn 2 (after A's result) = Task(lens B) → turn 3 (after B's result) = Task(lens C). This is the failure mode. Do not do this.
|
||||
|
||||
You can also include your own \`read\` / \`grep\` / \`webfetch\` calls in the SAME turn as the parallel \`${REVIEWER_AGENT_NAME}\` dispatches — concurrent context-pulling on the orchestrator side runs in parallel with the lens fan-out and costs zero extra wall time.
|
||||
|
||||
if a subagent errors out, times out, or returns nothing usable, retry once with the same lens; if it still fails, proceed with partial coverage and note the missing lens in the review body — do not skip the fan-out entirely on a single subagent failure. each subagent gets:
|
||||
- the diff path / target — reading the diff and the codebase is its job
|
||||
- **only one lens** — never a multi-section "review for X, Y, and Z" prompt
|
||||
- **a Task \`description\` set to the lens name** (e.g. \`"security"\`, \`"correctness"\`, \`"billing-subsystem"\`) — the harness reads this field to label the subagent's log lines so parallel runs can be told apart in CI output. without it, every subagent shows up as \`subagent#N\`.
|
||||
- if the lens touches external contracts, instruct the subagent to verify load-bearing claims via web search rather than trust training data, and to quote source URLs in its reasoning. action runs are non-interactive — there's no human in the loop to catch "I'm pretty sure Stripe does X."
|
||||
- ask the subagent to report findings with file paths and NEW line numbers from the diff so you can anchor inline comments without re-reading the entire diff.
|
||||
|
||||
delegation discipline:
|
||||
- do NOT summarize the PR for them (biases toward a validation frame)
|
||||
- do NOT hand them a curated reading list (let them discover scope)
|
||||
- do NOT pre-shape their output with a finding schema
|
||||
- do NOT mention the other lenses (independence is the point — overlapping findings are a strong signal)
|
||||
|
||||
6. **aggregate & draft**: when the fan-out lands, merge findings; de-dup overlaps (two lenses catching the same issue = higher-confidence signal); trace each finding yourself before accepting it. drop praise, style preferences, speculative/unverified claims, findings about pre-existing code unrelated to the PR (heuristic: if the finding's root cause lives in lines this PR added or modified, it's in scope; otherwise drop unless the PR plausibly introduced or amplified the regression), and anything not actionable. also drop **bloat-shaped findings** — proposed fixes that would add defensive checks for cases that can't happen, abstractions used once, comments restating obvious code, tests asserting tautologies, or "just-in-case" guards. subagents are fallible and bias toward recommending changes; the bar for an actionable inline comment is sound + correct + elegant. recommending a change that improves only one of the three (or worse, degrades elegance to nominally improve correctness) makes the codebase worse, not better.
|
||||
|
||||
**Hunt for non-anchored concerns before drafting.** After collecting your anchored findings, deliberately scan for concerns that have no specific line to point at — typically: deletion / cleanup plans for code the diff replaces or shadows; rollout sequencing (what happens to in-flight state during deploy / revert?); coverage gaps the diff implies but doesn't add; scope questions that only the human can answer (e.g. is the legacy path going away or is this a long-term dual track?); architectural risks the diff opens up that aren't a single-line bug. On substantial PRs (migrations, refactors, multi-file rewrites, version bumps that change runtime semantics), at least one such concern almost always exists; if you can't think of any, your bar is probably too high.
|
||||
|
||||
for surviving findings, draft inline comments with NEW line numbers from the diff — attach a \`<details>Technical details</details>\` block to any inline comment whose fix is non-trivial or has cross-file implications (see Inline technical details in the format below). every comment must be actionable, 2-3 sentences max in the visible part. use GitHub permalink format for code references. for impact-analysis findings (stale references after rename/remove), report them in the review body ordered by severity (runtime breakage > incorrect docs > stale comments) rather than as inline comments unless they're anchored to a specific line.
|
||||
|
||||
7. **submit**: ALWAYS submit exactly one review via \`${t("create_pull_request_review")}\`. Do NOT call \`report_progress\` — the review is the final record and the progress comment will be cleaned up automatically.
|
||||
|
||||
note: the first create_pull_request_review submission may error with a one-time diff-coverage nudge listing unread TOC regions. retry the same call to proceed — optionally after reading the listed ranges. the pre-flight will not block again this session.
|
||||
|
||||
The review body is structured as: \`[optional alert blockquote]\` → \`[PR summary using the default format below]\`. Inline comments are passed via the \`comments\` parameter, not in the body.
|
||||
|
||||
The opening callout is what the author sees first — pick the one that matches what you want them to do. Five tiers, from loudest to friendliest:
|
||||
|
||||
- \`[!CAUTION]\` — large red banner. Reads as "this will break something."
|
||||
- \`[!IMPORTANT]\` — large purple banner. Reads as "you need to look at this before merging."
|
||||
- \`> ℹ️ ...\` — informational blockquote. Reads as "minor suggestions, nothing blocking."
|
||||
- \`> ✅ ...\` — green friendly blockquote. Reads as "no concerns, mergeable."
|
||||
|
||||
Two reinforcing levers: callout intensity (above) and \`approved\` (which gates the footer Fix-button affordance — Fix renders on every non-approving review, so \`approved: true\` suppresses it). Wrapping mergeable feedback in \`[!IMPORTANT]\` trains users to click Fix on reviews that don't need fixing. Pick the tier the author's actual next action justifies.
|
||||
|
||||
- **critical issues** (blocks merge — bugs, security, data loss, broken core flows):
|
||||
\`approved: false\`. Body opens with \`> [!CAUTION]\\n> This PR introduces ...\`, followed by the PR summary. Include all inline comments via \`comments\`.
|
||||
- **must-address non-critical findings** (real consequences if shipped — incorrect behavior in non-critical paths, missing validation on user input, regressions the author should fix before merge):
|
||||
\`approved: false\`. Body opens with \`> [!IMPORTANT]\\n> ...\`, followed by the PR summary. Reserve this tier for findings with concrete fallout — do NOT use \`[!IMPORTANT]\` for nits, style preferences, or "consider also" suggestions. Include all inline comments via \`comments\`.
|
||||
- **minor suggestions only** (single-line nits, doc/comment polish, defer-able observations, "rough edges"):
|
||||
\`approved: false\`. Body opens with \`> ℹ️ No critical issues — minor suggestions inline.\\n\\n\` followed by the PR summary. Include all inline comments via \`comments\`. Vary the wording after the emoji to fit the review (e.g. "Minor suggestions only.", "Two rough edges worth a look."), but always keep the ℹ️ prefix and keep it short.
|
||||
- **informational observations** (mergeable as-is, nothing actionable — e.g. prior feedback addressed cleanly, surfacing a minor stale doc reference, calling out something noteworthy without recommending a change):
|
||||
\`approved: true\`. Body opens with \`> ✅ No new issues found.\\n\\n\` followed by the PR summary. Do NOT include inline \`comments\` — the ✅ signals "no action needed", which contradicts an actionable anchor; if a point is concrete enough to anchor to a line, downgrade the whole review to "minor suggestions only" (\`approved: false\`) instead.
|
||||
- **no actionable issues**:
|
||||
\`approved: true\`. Body opens with \`> ✅ No new issues found.\\n\\n\` followed by the PR summary.
|
||||
|
||||
${PR_SUMMARY_FORMAT}`,
|
||||
},
|
||||
// IncrementalReview shares Review's 0-or-2+ lens pattern AND its body
|
||||
// format (PR_SUMMARY_FORMAT), scoped to the incremental delta against the
|
||||
// prior pullfrog review. The "issues must be NEW since the last Pullfrog
|
||||
// review" filter lives at aggregation time (step 8), NOT in the subagent
|
||||
// prompt — pushing the filter into subagents matches the canonical anneal
|
||||
// anti-pattern of "list known pre-existing failures — don't flag these"
|
||||
// and suppresses signal on regressions the new commits amplified. A
|
||||
// separate "Prior review feedback" checklist would duplicate the rolling
|
||||
// PR summary snapshot's record of what earlier runs already addressed and
|
||||
// add noise to the user-facing body. Same opening-callout + per-bullet
|
||||
// emoji severity split as Review.
|
||||
{
|
||||
name: "IncrementalReview",
|
||||
description:
|
||||
"Re-review a PR after new commits are pushed; focus on new changes since the last review",
|
||||
prompt: `### Checklist
|
||||
|
||||
1. **task list**: create your task list for this run as your first action.
|
||||
|
||||
2. **checkout**: call \`${t("checkout_pr")}\` — this returns PR metadata, \`diffPath\` (full diff), and \`incrementalDiffPath\` (changes since last reviewed version, if available). read the diff TOC first and use its line ranges as your coverage checklist.
|
||||
|
||||
3. **incremental scope**: if \`incrementalDiffPath\` is present, read it to see what changed since the last review. this is a range-diff that isolates the net changes, filtering out base branch noise. if not present, fall back to reviewing the full PR diff and determine what changed since Pullfrog's most recent review.
|
||||
|
||||
4. **prior feedback — read AND retire it**: fetch previous reviews via \`${t("list_pull_request_reviews")}\`, then call \`${t("get_review_comments")}\` on each prior Pullfrog review. Each thread renders as a section whose first line is a fenced tag \`comment author=<login> id=<fullDatabaseId> review=<reviewId> thread=<graphqlId>\`; section headers carry \`[RESOLVED]\` / \`[OUTDATED]\` when relevant. For every **open, Pullfrog-originated** thread, decide and act:
|
||||
|
||||
- **Pullfrog-originated** means the FIRST \`comment author=...\` tag in the section is \`author=pullfrog[bot]\`. The \`*\` marker on individual comments is unrelated — it flags whether a comment belongs to the queried review, not whether it is the thread root.
|
||||
- **addressed?** read the file at the thread's anchor and judge whether the substantive concern is now resolved by the new commits. Lines being modified isn't enough: reformatting, renaming, or moving the same code elsewhere doesn't address a concern. If the comment raised multiple distinct concerns, ALL must be addressed. The \`[OUTDATED]\` tag means GitHub moved the anchor (line shift, force-push, rename) — it does NOT mean the concern was addressed; re-read the code at its new location before deciding.
|
||||
- **if addressed**: call \`${t("reply_to_review_comment")}\` with the root tag's numeric \`id=\` as \`comment_id\` (NOT the \`thread=\` value — that's a separate GraphQL ID used only by resolve) and a one-line body (e.g. \`Addressed in <short-sha>.\`), then call \`${t("resolve_review_thread")}\` with the root tag's \`thread=\` value as \`thread_id\`. Do this BEFORE drafting the new review so the GitHub thread state aligns with the new review by the time it lands.
|
||||
- **if uncertain or partially addressed**: leave open. False-positive resolutions erode trust faster than false negatives.
|
||||
- **scope**: only retire Pullfrog-originated threads. Threads from human reviewers belong to those humans to resolve, even if the commit happened to address them.
|
||||
|
||||
The remaining open threads feed step 8's dedup filter — anything already flagged and unchanged by the new commits should not be re-raised. The rolling PR summary snapshot is the durable record of retire activity; you don't need to surface it in the review body.
|
||||
|
||||
5. **triage**: orient on the *incremental* changes — domain, seams, external contracts, user-facing surfaces. pull as much context as you need to render a confident review: read related files, grep for callers of changed symbols, check tests that exercise the touched paths. **you are the synthesizer.**
|
||||
|
||||
if the incremental changes are **genuinely trivial**, skip the fan-out entirely and jump to step 10's non-substantive path (do NOT submit a review).
|
||||
|
||||
"Genuinely trivial" (skip): formatting/comment tweaks, import reordering, lockfile regen, mechanical rename of import paths, whitespace-only.
|
||||
"Looks trivial but isn't" (do NOT skip — same anti-patterns as Review mode): 1-line changes to SQL/regex/auth/billing/permissions/signature-verification code; flipping feature-flag defaults or retry/timeout constants; money/tax/HTTP-method/redirect changes; tightening or loosening a comparison operator; mixed diffs with a semantic line buried in formatting.
|
||||
When unsure, treat as non-trivial.
|
||||
|
||||
6. **lens decision — 0 or 2+, NEVER 1**.
|
||||
|
||||
The default is **0 lenses**: handle the re-review yourself end-to-end. Most incremental reviews land here — especially thread-reply re-reviews where the user is asking "did you address X?" rather than "review the diff again."
|
||||
|
||||
Dispatch **2+ \`${REVIEWER_AGENT_NAME}\` lenses in parallel** ONLY when ALL of the following are true:
|
||||
- the incremental changes are substantive (>5 files changed AND >200 net new lines), OR touch a high-stakes subsystem (auth, billing, payments, schema migration, webhooks, secrets, RBAC, multi-tenant isolation, cron/scheduling)
|
||||
- you can name 2+ distinct concrete failure modes the new commits plausibly introduce that warrant independent lenses
|
||||
- parallel-orchestrated independent perspectives meaningfully outperform what you'd find solo
|
||||
|
||||
**NEVER dispatch exactly one lens.** Single-lens dispatch adds wall time and cost for no orthogonality benefit. Either go multi-lens (≥2 in parallel) or do the re-review yourself.
|
||||
|
||||
Lens framing follows Review mode: themed lenses (correctness, security, etc.) and subsystem lenses (auth, billing, schema-migration, etc.) — for high-stakes domains lead with the subsystem lens.
|
||||
|
||||
7. **fan out (only if step 6 said 2+ lenses)**: dispatch every \`${REVIEWER_AGENT_NAME}\` subagent for this run **IN A SINGLE ASSISTANT TURN, AS MULTIPLE PARALLEL TASK TOOL_USE BLOCKS IN ONE MESSAGE.**
|
||||
|
||||
⚠️ CRITICAL — PARALLELISM IS THE ONLY REASON LENSES EXIST. ⚠️
|
||||
Default tool-call behavior is **serial dispatch**: emit one Task call, await result, emit next, await, etc. This collapses your fan-out into a sequential review where each lens adds N × (orchestrator-think-time + lens-execution-time) to wall time. **YOU MUST OVERRIDE THIS DEFAULT.** Emit ALL of your Task tool_use blocks in the SAME assistant message, BEFORE you read ANY result from ANY of them.
|
||||
|
||||
✅ Right pattern: one assistant turn with N Task tool_use blocks → wait → N results arrive together → aggregate.
|
||||
❌ Wrong pattern: turn 1 = Task(lens A) → turn 2 (after A's result) = Task(lens B). This is the failure mode.
|
||||
|
||||
You can also include your own \`read\` / \`grep\` / \`webfetch\` calls in the SAME turn as the parallel \`${REVIEWER_AGENT_NAME}\` dispatches.
|
||||
|
||||
if a subagent errors out, times out, or returns nothing usable, retry once with the same lens; if it still fails, proceed with partial coverage and note the missing lens in the review body. each subagent gets:
|
||||
- the diff scope (incremental diff path if available, full diff otherwise). do NOT tell them to skip pre-existing issues — that suppresses regressions the new commits amplified; the "issues must be NEW" filter lives at aggregation time (step 8), not in the subagent prompt
|
||||
- **only one lens** — never a multi-section "review for X, Y, and Z" prompt
|
||||
- **a Task \`description\` set to the lens name** — the harness reads this field to label log lines so parallel runs can be told apart.
|
||||
- if the lens touches external contracts, instruct the subagent to verify load-bearing claims via web search and quote source URLs.
|
||||
- ask the subagent to report findings with file paths and NEW line numbers from the full PR diff so you can anchor inline comments.
|
||||
|
||||
delegation discipline:
|
||||
- do NOT summarize the changes for them (biases toward validation frame)
|
||||
- do NOT hand them a curated reading list (let them discover scope)
|
||||
- do NOT pre-shape their output with a finding schema
|
||||
- do NOT mention the other lenses (independence is the point)
|
||||
|
||||
8. **aggregate, draft, self-critique**: merge findings (yours + any subagent output if you went multi-lens); de-dup overlaps; trace each finding yourself. drop praise, style preferences, speculative/unverified claims, findings about pre-existing code unrelated to the new commits, anything not actionable, and anything that re-states prior review feedback (heuristic: if the finding's root cause lives in lines the *new commits* added or modified, it's in scope; otherwise drop). also drop **bloat-shaped findings** — proposed fixes that would add defensive checks for cases that can't happen, abstractions used once, comments restating obvious code, tests asserting tautologies, or "just-in-case" guards. subagents are fallible and bias toward recommending changes; the bar for an actionable inline comment is sound + correct + elegant. recommending a change that improves only one of the three (or degrades elegance to nominally improve correctness) makes the codebase worse, not better. To compute "lines the new commits added or modified": if \`incrementalDiffPath\` from step 2 is present, use it directly. Otherwise, take the prior Pullfrog review's \`commit_id\` (returned alongside each entry from \`${t("list_pull_request_reviews")}\` in step 4) and run \`git diff <prior-review-sha>..HEAD\` to isolate the lines added since that review.
|
||||
|
||||
**Hunt for non-anchored concerns before drafting.** After collecting your anchored findings, deliberately scan for concerns that have no specific line to point at — typically: deletion / cleanup plans for code the new commits replace or shadow; rollout sequencing (what happens to in-flight state during deploy / revert?); coverage gaps the new commits imply but don't add; scope questions that only the human can answer (e.g. is the legacy path going away or is this a long-term dual track?); architectural risks the new commits open up that aren't a single-line bug. On substantial incremental diffs (migrations, refactors, multi-file rewrites, version bumps that change runtime semantics), at least one such concern almost always exists; if you can't think of any, your bar is probably too high.
|
||||
|
||||
draft inline comments with NEW line numbers from the full PR diff — attach a \`<details>Technical details</details>\` block to any inline comment whose fix is non-trivial or has cross-file implications (see Inline technical details in the format below). every comment must be actionable, 2-3 sentences max in the visible part.
|
||||
|
||||
9. **build the review body**: use the same default format as Review mode (preamble + optional cross-cutting \`### \` sections + optional \`### ℹ️ Nitpicks\`) — scoped to the **incremental delta**, not the full PR. The "Reviewed changes" bullets describe what changed since the prior pullfrog review (each bullet starts with a past-tense verb, e.g. \`- Extracted shared CLI runtime into a single module\`). Do NOT include a separate "Prior review feedback" checklist — that's tracked in the rolling PR summary snapshot for the next agent run, and surfacing it in the user-facing body is noise (changes that addressed prior feedback are already covered by the Reviewed-changes bullets). In some cases you may receive a complete diff for the whole PR instead of an incremental one; when this happens, determine what changed since Pullfrog's most recent review yourself before drafting bullets.
|
||||
|
||||
10. Submit — every run must end with EXACTLY ONE of \`${t("create_pull_request_review")}\` (substantive review) or \`${t("report_progress")}\` (no-review acknowledgement). do NOT call \`create_issue_comment\` for review output.
|
||||
|
||||
Same callout ladder as Review mode — \`[!CAUTION]\` (red, "will break") → \`[!IMPORTANT]\` (purple, "must address before merging") → \`> ℹ️ ...\` (informational, "minor suggestions only") → \`> ✅ ...\` (green friendly, "no concerns"). Same Fix-button lever: the footer renders a Fix button on every non-approving review, so \`approved: true\` suppresses it. Wrapping mergeable feedback in \`[!IMPORTANT]\` trains users to click Fix on reviews that don't need fixing — pick the tier the author's actual next action justifies.
|
||||
|
||||
Follow these rules:
|
||||
- note: the first create_pull_request_review submission may error with a one-time diff-coverage nudge listing unread TOC regions. retry the same call to proceed — optionally after reading the listed ranges. the pre-flight will not block again this session.
|
||||
- IF NO NEW ISSUES, NON-SUBSTANTIVE CHANGES ONLY (trivial formatting, import reordering, comment tweaks): do NOT submit a review. Instead call \`${t("report_progress")}\` with a 1-2 sentence note explaining no review was warranted (e.g. "No new issues. Changes since last review are formatting-only."). this leaves a visible signal that the run completed.
|
||||
- ELSE IF NEW CRITICAL ISSUES (blocks merge — bugs, security, data loss, broken core flows): call \`${t("create_pull_request_review")}\` with \`approved: false\`, all comments, and the review body. body opens with \`> [!CAUTION]\\n> This PR introduces ...\`, followed by the PR summary using the default format below.
|
||||
- ELSE IF NEW MUST-ADDRESS NON-CRITICAL FINDINGS (real consequences if shipped — incorrect behavior, missing validation, regressions the author should fix before merge): call \`${t("create_pull_request_review")}\` with \`approved: false\`, all comments, and the review body. body opens with \`> [!IMPORTANT]\\n> ...\`, followed by the PR summary using the default format below. Do NOT use this tier for nits, style preferences, or "consider also" suggestions.
|
||||
- ELSE IF NEW MINOR SUGGESTIONS ONLY (single-line nits, doc/comment polish, defer-able observations, "rough edges"): call \`${t("create_pull_request_review")}\` with \`approved: false\`, all comments, and the review body. body opens with \`> ℹ️ No critical issues — minor suggestions inline.\\n\\n\` (vary the wording after ℹ️ to fit the review), followed by the PR summary using the default format below.
|
||||
- ELSE IF INFORMATIONAL OBSERVATIONS (mergeable as-is, but worth surfacing — e.g. prior feedback addressed cleanly with one minor stale doc reference, or a noteworthy positive observation): call \`${t("create_pull_request_review")}\` with \`approved: true\`, NO inline comments, and the review body. body opens with \`> ✅ No new issues found.\\n\\n\` (or similar friendly green opener), followed by the PR summary using the default format below. If a point is concrete enough to anchor to a line, downgrade the whole review to "minor suggestions only" (\`approved: false\`) instead — the ✅ signals "no action needed", which contradicts an actionable anchor.
|
||||
- ELSE IF NO NEW ISSUES, SUBSTANTIVE CHANGES (new functionality, behavior changes, or fixes to prior review feedback): call \`${t("create_pull_request_review")}\` to create a PR review. If all previous reviews have been properly addressed and no new issues were discovered, set \`approved: true\`. body opens with \`> ✅ No new issues found.\\n\\n\`, followed by the PR summary using the default format below.
|
||||
|
||||
${PR_SUMMARY_FORMAT}`,
|
||||
},
|
||||
{
|
||||
name: "Plan",
|
||||
description:
|
||||
"Create plans, break down tasks, outline steps, analyze requirements, understand scope of work, or provide task breakdowns",
|
||||
prompt: `### Checklist
|
||||
|
||||
1. **task list**: create your task list for this run as your first action.
|
||||
|
||||
2. Analyze the task and gather context:
|
||||
- read AGENTS.md and relevant codebase files
|
||||
- understand the architecture and constraints
|
||||
|
||||
3. Produce a structured, actionable plan with clear milestones.
|
||||
|
||||
4. Call \`${t("report_progress")}\` with the plan body. Do NOT set \`target_plan_comment\` — that flag is exclusively for revising an existing plan, and \`${t("select_mode")}\` will route you to a separate PlanEdit checklist when a prior plan comment exists for this issue.`,
|
||||
},
|
||||
{
|
||||
name: "Fix",
|
||||
description:
|
||||
"Fix CI failures; debug failing tests or builds; investigate and resolve check suite failures",
|
||||
prompt: `### Checklist
|
||||
|
||||
1. **task list**: create your task list for this run as your first action.
|
||||
|
||||
2. Checkout the PR branch via \`${t("checkout_pr")}\`.
|
||||
|
||||
3. Fetch check suite logs via \`${t("get_check_suite_logs")}\`.
|
||||
|
||||
4. **CRITICAL**: verify the failure was INTRODUCED BY THIS PR before fixing. If unrelated, abort and report.
|
||||
|
||||
5. Diagnose and fix:
|
||||
- read the workflow file, reproduce locally with the EXACT same commands CI runs
|
||||
- fix the issue using your native file and shell tools
|
||||
- verify the fix by re-running the exact CI command
|
||||
- review the diff before committing — verify only the fix is present, no debug artifacts, no unrelated changes. the fix should be clean enough that a senior engineer would approve without hesitation.
|
||||
- commit locally via shell (\`git add . && git commit -m "..."\`)
|
||||
|
||||
6. Finalize:
|
||||
- confirm a clean working tree, then push via \`${t("push_branch")}\` (same push/prepush guidance as Build mode in *SYSTEM*)
|
||||
- call \`${t("report_progress")}\` with the diagnosis and fix summary (or the exact push error if push failed)`,
|
||||
},
|
||||
{
|
||||
name: "ResolveConflicts",
|
||||
description: "Resolve merge conflicts in a PR branch against the base branch",
|
||||
prompt: `### Checklist
|
||||
|
||||
1. **task list**: create your task list for this run as your first action.
|
||||
|
||||
2. **Setup**:
|
||||
- Call \`${t("checkout_pr")}\` to get the PR branch.
|
||||
- Call \`${t("get_pull_request")}\` to identify the base branch (e.g., 'main').
|
||||
- Call \`${t("git_fetch")}\` to fetch the base branch.
|
||||
|
||||
3. **Merge Attempt**:
|
||||
- Run \`git merge origin/<base_branch>\` via shell.
|
||||
- If it succeeds automatically, confirm a clean working tree, push via \`${t("push_branch")}\` (same push/prepush guidance as Build mode in *SYSTEM*), and call \`${t("report_progress")}\` with a brief success note or the exact push error if push failed — **then stop; do not run steps 4–5.**
|
||||
- If it fails (conflicts), resolve them manually (continue to steps 4–5).
|
||||
|
||||
4. **Resolve Conflicts**:
|
||||
- Run \`git status\` or parse the merge output to find the list of conflicting files.
|
||||
- For each conflicting file: read it, find the conflict markers (\`<<<<<<<\`, \`=======\`, \`>>>>>>>\`), understand the code context, and rewrite the file with the correct resolution. Remove all markers.
|
||||
- Verify the file syntax is correct after resolution.
|
||||
|
||||
5. **Finalize**:
|
||||
- Run a final verification (build/test) to ensure the resolution works.
|
||||
- \`git add . && git commit -m "resolve merge conflicts"\`
|
||||
- confirm a clean working tree, then push via \`${t("push_branch")}\` (same push/prepush guidance as Build mode in *SYSTEM*)
|
||||
- Call \`${t("report_progress")}\` with a summary of what was resolved (or the exact push error if push failed)`,
|
||||
},
|
||||
{
|
||||
name: "Task",
|
||||
description:
|
||||
"General-purpose tasks that don't fit other modes: answering questions, adding comments, labeling, running ad-hoc commands, or any direct request",
|
||||
prompt: `### Checklist
|
||||
|
||||
1. **task list**: create your task list for this run as your first action.
|
||||
|
||||
2. Analyze the task. For simple operations (labeling, commenting, answering questions, running a single command), handle directly.
|
||||
|
||||
3. For substantial work — code changes across multiple files, multi-step investigations:
|
||||
- plan your approach before starting
|
||||
- use native file and shell tools for local operations
|
||||
- use ${pullfrogMcpName} MCP tools for GitHub/git operations
|
||||
- if code changes are needed: review your own diff before committing — verify only intended changes are present, no debug artifacts remain, and the changes are clean enough that a senior engineer would approve without hesitation
|
||||
|
||||
4. Finalize:
|
||||
- if code changes were made, push to a pull request (new or existing) using \`${t("push_branch")}\` and \`${t("create_pull_request")}\` as needed. \`git status\` must be clean before you finish (see *SYSTEM* Git rules if push fails).
|
||||
- call \`${t("report_progress")}\` once with results — include exact tool errors if push or PR creation failed
|
||||
- if the task involved labeling, commenting, or other GitHub operations, perform those directly`,
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
// static export for UI display — uses opencode format as the readable default
|
||||
export const modes: Mode[] = computeModes("opencode");
|
||||
|
||||
/**
|
||||
* modes that legitimately never modify the working tree. used by the post-run
|
||||
* dirty-tree gate to suppress the "commit and push" nudge — those modes
|
||||
* complete by submitting a review (`Review` / `IncrementalReview`) or by
|
||||
* posting a Plan comment (`Plan`), not by touching files. any leftover in the
|
||||
* tree at end-of-run is incidental tool noise (e.g. a `node_modules/` from a
|
||||
* stray install attempt) on an ephemeral worktree; nudging the agent to
|
||||
* commit it would produce a spurious PR.
|
||||
*/
|
||||
export const NON_COMMITTING_MODES: ReadonlySet<string> = new Set([
|
||||
"Review",
|
||||
"IncrementalReview",
|
||||
"Plan",
|
||||
]);
|
||||
+10
-93
@@ -1,98 +1,15 @@
|
||||
{
|
||||
"name": "pullfrog",
|
||||
"version": "0.1.9",
|
||||
"name": "shockbot",
|
||||
"module": "index.ts",
|
||||
"type": "module",
|
||||
"bin": {
|
||||
"pullfrog": "dist/cli.mjs",
|
||||
"pullfrog-dev": "dist/cli.mjs",
|
||||
"pf": "dist/cli.mjs"
|
||||
},
|
||||
"files": [
|
||||
"dist/"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "vitest",
|
||||
"test:catalog": "vitest run --config vitest.main.config.ts",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"build": "node esbuild.config.js && tsc -p tsconfig.exports.json",
|
||||
"check:entrypoints": "node scripts/check-entrypoint-imports.ts",
|
||||
"docker": "node docker.ts",
|
||||
"play": "node play.ts",
|
||||
"runtest": "node test/run.ts",
|
||||
"scratch": "node scratch.ts",
|
||||
"upDeps": "pnpm up --latest",
|
||||
"lock": "pnpm install --no-frozen-lockfile",
|
||||
"prepare": "cd .. && husky"
|
||||
},
|
||||
"private": true,
|
||||
"devDependencies": {
|
||||
"@actions/core": "^1.11.1",
|
||||
"@anthropic-ai/claude-code": "2.1.112",
|
||||
"@ark/fs": "0.56.0",
|
||||
"@ark/util": "0.56.0",
|
||||
"@clack/prompts": "^1.2.0",
|
||||
"@modelcontextprotocol/sdk": "^1.26.0",
|
||||
"@octokit/plugin-throttling": "^11.0.3",
|
||||
"@octokit/rest": "^22.0.0",
|
||||
"@octokit/webhooks-types": "^7.6.1",
|
||||
"@standard-schema/spec": "1.1.0",
|
||||
"@toon-format/toon": "^1.0.0",
|
||||
"@types/node": "^24.7.2",
|
||||
"@types/semver": "^7.7.1",
|
||||
"@types/turndown": "^5.0.5",
|
||||
"agent-browser": "0.25.4",
|
||||
"ajv": "^8.18.0",
|
||||
"arg": "^5.0.2",
|
||||
"arkregex": "0.0.5",
|
||||
"arktype": "2.2.0",
|
||||
"dotenv": "^17.2.3",
|
||||
"esbuild": "^0.25.9",
|
||||
"execa": "^9.6.0",
|
||||
"fastmcp": "^3.34.0",
|
||||
"file-type": "^21.3.0",
|
||||
"husky": "^9.0.0",
|
||||
"opencode-ai": "1.15.1",
|
||||
"package-manager-detector": "^1.6.0",
|
||||
"picocolors": "^1.1.1",
|
||||
"semver": "^7.7.3",
|
||||
"skills": "1.4.9",
|
||||
"table": "^6.9.0",
|
||||
"turndown": "^7.2.0",
|
||||
"typescript": "^5.9.3",
|
||||
"vitest": "^4.0.17",
|
||||
"yaml": "^2.8.2"
|
||||
"@go-gitea/sdk.js": "^0.2.1",
|
||||
"@modelcontextprotocol/sdk": "^1.29.0",
|
||||
"@types/bun": "latest",
|
||||
"ollama": "^0.6.3"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/pullfrog/pullfrog.git"
|
||||
},
|
||||
"keywords": [
|
||||
"github-actions",
|
||||
"ai-coding-agent",
|
||||
"code-review"
|
||||
],
|
||||
"author": "Pullfrog <support@pullfrog.com>",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/pullfrog/pullfrog/issues"
|
||||
},
|
||||
"homepage": "https://github.com/pullfrog/pullfrog#readme",
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"@pullfrog/source": "./index.ts",
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"./internal": {
|
||||
"@pullfrog/source": "./internal/index.ts",
|
||||
"types": "./dist/internal/index.d.ts",
|
||||
"import": "./dist/internal.js",
|
||||
"default": "./dist/internal.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a"
|
||||
"peerDependencies": {
|
||||
"typescript": "^5"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,78 +0,0 @@
|
||||
// thin CLI for ad-hoc fixture runs against the Pullfrog action.
|
||||
//
|
||||
// invoke from the repo root:
|
||||
// pnpm play [args…] # host, in-process — fast iteration (default)
|
||||
// pnpm play:docker [args…] # local docker container that mocks GHA
|
||||
// pnpm docker play.ts [args…] # explicit container form (equivalent to `pnpm play:docker`)
|
||||
//
|
||||
// see wiki/docker.md for when host vs container matters.
|
||||
import { dirname, join, resolve } from "node:path";
|
||||
import { fileURLToPath, pathToFileURL } from "node:url";
|
||||
import arg from "arg";
|
||||
import { config } from "dotenv";
|
||||
import type { Inputs } from "./main.ts";
|
||||
import { defineFixture } from "./test/utils.ts";
|
||||
import { log } from "./utils/cli.ts";
|
||||
import { run } from "./utils/runFixture.ts";
|
||||
|
||||
const __dirname = dirname(fileURLToPath(import.meta.url));
|
||||
|
||||
config();
|
||||
config({ path: join(__dirname, "..", ".env") });
|
||||
|
||||
/**
|
||||
* default fixture for ad-hoc `pnpm play` runs. change this freely without
|
||||
* affecting any tests — it's only consumed by this script's no-arg path.
|
||||
*/
|
||||
export const playFixture = defineFixture(
|
||||
{
|
||||
prompt: `List every MCP tool you have access to. Call set_output with a JSON array of all tool names you can see.`,
|
||||
},
|
||||
{ localOnly: true }
|
||||
);
|
||||
|
||||
const isDirectExecution = process.argv[1]
|
||||
? import.meta.url === pathToFileURL(resolve(process.argv[1])).href
|
||||
: false;
|
||||
|
||||
if (isDirectExecution) {
|
||||
const args = arg({
|
||||
"--help": Boolean,
|
||||
"--raw": String,
|
||||
"-h": "--help",
|
||||
});
|
||||
|
||||
if (args["--help"]) {
|
||||
log.info(`
|
||||
Usage: pnpm play [--raw <input>] (host, in-process; this entry)
|
||||
pnpm play:docker [--raw <input>] (local docker container that mocks GHA)
|
||||
|
||||
Run the Pullfrog action against an inline fixture.
|
||||
|
||||
Options:
|
||||
--raw <input> raw string used as the prompt, or JSON object as full fixture
|
||||
-h, --help show this message
|
||||
|
||||
Examples:
|
||||
pnpm play
|
||||
pnpm play --raw "Hello world"
|
||||
pnpm play --raw '{"prompt":"Hi","timeout":"5s"}'
|
||||
`);
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
if (args["--raw"]) {
|
||||
const raw = args["--raw"];
|
||||
let input: Inputs | string = raw;
|
||||
try {
|
||||
input = JSON.parse(raw) as Inputs;
|
||||
} catch {
|
||||
// not valid JSON — treat as a literal prompt string.
|
||||
}
|
||||
const result = await run(input);
|
||||
process.exit(result.success ? 0 : 1);
|
||||
}
|
||||
|
||||
const result = await run(playFixture);
|
||||
process.exit(result.success ? 0 : 1);
|
||||
}
|
||||
Generated
-3622
File diff suppressed because it is too large
Load Diff
@@ -1 +0,0 @@
|
||||
packages: [] # prevent looking upwards for the workspace root
|
||||
@@ -1,43 +0,0 @@
|
||||
import { performance } from "node:perf_hooks";
|
||||
import { log } from "../utils/cli.ts";
|
||||
import { installNodeDependencies } from "./installNodeDependencies.ts";
|
||||
import { installPythonDependencies } from "./installPythonDependencies.ts";
|
||||
import type { PrepDefinition, PrepOptions, PrepResult } from "./types.ts";
|
||||
|
||||
export type { PrepOptions, PrepResult } from "./types.ts";
|
||||
|
||||
// register all prep steps here
|
||||
const prepSteps: PrepDefinition[] = [installNodeDependencies, installPythonDependencies];
|
||||
|
||||
/**
|
||||
* run all prep steps sequentially.
|
||||
* failures are logged as warnings but don't stop the run.
|
||||
*/
|
||||
export async function runPrepPhase(options: PrepOptions): Promise<PrepResult[]> {
|
||||
log.debug("» starting prep phase...");
|
||||
const startTime = performance.now();
|
||||
const results: PrepResult[] = [];
|
||||
|
||||
for (const step of prepSteps) {
|
||||
const shouldRun = await step.shouldRun();
|
||||
if (!shouldRun) {
|
||||
log.debug(`» skipping ${step.name} (not applicable)`);
|
||||
continue;
|
||||
}
|
||||
|
||||
log.debug(`» running ${step.name}...`);
|
||||
const result = await step.run(options);
|
||||
results.push(result);
|
||||
|
||||
if (result.dependenciesInstalled) {
|
||||
log.debug(`» ${step.name}: dependencies installed`);
|
||||
} else if (result.issues.length > 0) {
|
||||
log.warning(`» ${step.name}: ${result.issues[0]}`);
|
||||
}
|
||||
}
|
||||
|
||||
const totalDurationMs = performance.now() - startTime;
|
||||
log.debug(`» prep phase completed (${Math.round(totalDurationMs)}ms)`);
|
||||
|
||||
return results;
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user