Use cases
For engineering

Ground the answer, ship the PR, and let it close the review loop itself.

Map an unfamiliar repo, implement to a PR verified in a sandbox — then Gently fixes failing CI and addresses reviewer comments on the PR automatically, so it merges while you focus elsewhere.

Answers grounded in real code and git history — onboarding and debugging, fast.
Every change is a reviewable PR, verified in a sandbox — not a guessed diff.
Failing CI and reviewer comments are addressed automatically on the PR.

One real thread, start to finish

Add login rate limiting — and close the PR loop
northwind / api
Sandbox live
P
PriyaAsk

Where is login handled, and why does it skip our rate limiter?

Worked for 11s · 7 tools

The limiter only wraps the API router; login posts to a separate route that bypasses it:

  • Loginserver/routes/auth/login.post.ts — no limiter
  • Limitermiddleware applied in server/api/[...].ts only

References

server/routes/auth/login.post.ts:1
server/middleware/rate-limit.ts:18
Ask, plan, or build anything…Auto
After the PR opens

Failing CI and reviewer comments come back into the same thread as follow-up runs. Gently handles each one and pushes, so the PR moves toward merge while you’re elsewhere.

Add rate limiting to the login route#438
18/18 passed
  1. CI failed — a flaky-looking timeout in the limiter test

  2. Gently made the window deterministic and pushed — CI re-ran green

  3. Reviewer left 3 comments — Gently called ListReviewThreads

  4. Addressed 2 (committed + replied + resolved); declined 1 with a reason

Today this plays out as separate follow-up runs in the thread, with a guard so it never loops forever.

You’re everyone’s search engine — interruptions shred your focus.

PR review and CI babysitting eat the day after the code is written.

Repetitive “fix the failing check / address this comment” loops are pure toil.

What you can do

Codebase archaeology

“Where is X / why does Y happen” — grounded in real code and git history.

Verified diffs

Implement to a PR that ran lint, tests, and a sandbox — review a working change.

Auto-fix CI

A failing check comes back into the thread; Gently fixes it and re-runs.

Address review comments

It reads every open review thread, fixes or replies, and resolves each one.

Ask mode Plan mode Implement → stages → PR Auto-fix CI Address review comments Fan-out
Gently for every team

Start with questions. Grow into plans, previews, tests, and pull requests when your team is ready.

Request access