Feature
June 15, 2026
/changelog — public shipping log
You're reading it. Reverse-chronological log of everything PullLight has shipped, with RSS feed, subscribe-by-email CTA, JSON-LD structured data, and a markdown-file authoring path for future entries.
View → /changelog
Feature
June 15, 2026
npx pulllight scan — AI review in your terminal
The PullLight AI reviewer is now available as a zero-install CLI. Run npx pulllight scan against your local staged and unstaged changes before opening a PR. Pass -b main to compare the full branch diff. Severity-colored output groups findings by file with line numbers, category, explanation, and any one-click suggested fixes Claude was confident about. Exit code 0 for clean/medium/low; exit code 1 when critical or high findings exist — so it wires directly into pre-commit hooks, Husky, or GitHub Actions. --severity-floor high, --ignore glob patterns, and --json mode for scripting are all supported. Tokens are saved once in ~/.config/pulllight/config.json or read from PULLLIGHT_API_TOKEN. Full install guide, pre-commit hook recipe, Husky example, and CI snippet at /docs/cli.
View → /docs/cli
Feature
June 15, 2026
One-click GitHub suggestion blocks on approved comments
When Claude finds a bug with an unambiguous, drop-in fix, approved inline comments now include a native GitHub ```suggestion``` block. Reviewer clicks "Commit suggestion" in the GitHub UI and the patch lands — no branch, no editor needed. Claude only emits suggested_fix when the fix is confined to the visible hunk lines, requires no new imports or symbols, and has one correct answer. When uncertain, it stays null — preserving the signal-not-noise brand. The /reviews queue shows an ⚡ auto-fix badge on findings that carry a suggestion so the operator can see at a glance which approvals are one-click patches.
View → /reviews
Feature
June 15, 2026
.pulllight.yml — per-repo config file
Add a .pulllight.yml to any repo root to override PullLight behavior for that repo alone. Supported fields: review_focus (per-repo lane overrides), ignore_paths (glob patterns — vendor/**, *.generated.ts, dist/**), severity_floor (drop findings below low/medium/high/critical before they queue), custom_rules (free-text team conventions injected into the Claude prompt, up to 200 chars each), and disable (kill switch). PullLight fetches the file at the PR's head SHA on every webhook, parses it safely with js-yaml FAILSAFE_SCHEMA, and posts a Check Run annotation on parse errors. Falls back to your team defaults silently on any error. Full schema docs + 3 copy-paste examples (Node.js monorepo, Python Django, Go service) at /docs/config.
View → /docs/config
Feature
June 15, 2026
PR slash commands — @pulllight recheck, ignore, explain, help
Four inline commands now work directly in PR comment threads. Type @pulllight recheck to kick off a fresh analysis on the latest commit, @pulllight ignore <id> to remove a review from the queue, @pulllight explain <id> to get a deeper bug class + fix patch from Claude, or @pulllight help for the reference table. PullLight acks with a 👀 reaction immediately and posts results async. No browser tab required — stays inside the conversation your devs are already in.
View → /docs#pr-commands
Feature
June 15, 2026
/settings/review-focus — per-team Claude review customization
Teams can now toggle five review lanes — Security, Bugs, Performance, Style, and Tests. Disable style nits entirely, or crank up security scanning for a paranoid team. Config persists per installation, injects into the Claude prompt as a "Review categories enabled" header, and the dashboard shows a nudge to teams still on factory defaults. Signal not noise.
View → /settings/review-focus
Content
June 15, 2026
React2Shell CVE case study — CVSS 10.0 RCE in React Server Components
7th case study documents CVE-2025-55182: React2Shell, a CVSS 10.0 arbitrary code execution vulnerability in React Server Components. The RSC Flight protocol deserializer allows prototype chain traversal via "constructor" key, enabling full server compromise without Server Actions. Added to /case-studies index, sitemap, and changelog auto-publish.
View → /case-studies/cve-2025-55182-react2shell
Feature
June 15, 2026
/embed — README badge gallery + social share
Every installed team now gets a /embed page with one-click copy snippets for their live badge (Markdown, HTML, reStructuredText), pre-filled Twitter/X and LinkedIn share links, and a public report URL. Dashboard links directly to it. Badge is already live at /badge/:owner/:repo.svg — this page closes the loop and turns every team into a distribution channel.
View → /embed
Content
June 15, 2026
/trust — data & security transparency
New page explains exactly what PullLight collects, how diffs are processed, where data is stored, and what it never does. Eight sections with expandable details. Added to footer, sitemap, and the GitHub App setup page.
View → /trust
Content
June 15, 2026
Engineering blog launched at /blog
Dark terminal aesthetic blog with RSS feed and OG image generation. First post: why our AI reviewer asks before it posts, with the architectural explanation of the human-gate design.
View → /blog
Feature
June 15, 2026
3-touch onboarding email sequence
Day 0 welcome, Day 1 badge nudge, Day 3 backfill recap — sent via Postmark on a per-minute cron. Unsubscribe link halts the sequence. Reduces time-to-value for new installs.
Improvement
June 15, 2026
Simplified install path — direct GitHub App OAuth only
Install the GitHub App directly → authorize repos → upgrade to Pro via Stripe Checkout in your dashboard. No Marketplace detours.
Feature
June 12, 2026
/pricing — ROI calculator + competitor table
Full pricing page with a drag-to-calculate ROI calculator (team size, PRs/week, hourly rate), a 5/10/25-dev competitor math table, three tier cards, and a 12-item FAQ accordion. All state persists in the URL.
View → /pricing
Feature
June 8, 2026
Dynamic /badge/:owner/:repo.svg endpoint
Shields.io-style SVG badge showing how many bugs PullLight has caught on a repo. Embed it in your README. Impressions tracked. Each badge is a recurring distribution surface pointing back at /repos.
Improvement
June 8, 2026
Sticky PR summary comment with resync
PullLight now posts a single sticky summary comment per PR and PATCH-updates it on re-review instead of creating duplicates. Cleaner comment threads, same signal.
Feature
June 5, 2026
/catches — public feed of real bugs caught
Sanitized, privacy-safe stream of findings from PullLight-reviewed PRs across all installed repos. Severity, category, language, and a redacted snippet — no repo names unless already public. RSS feed included.
View → /catches
Feature
June 3, 2026
/repos — public activity reports per installed repo
Every repo with PullLight installed gets a public page at /repos/:owner/:repo showing total PRs reviewed, findings by severity, top bug categories, and recent catches. Link it from your README.