Pullfrog carries useful context forward between agent runs so each run does not have to rediscover the same repo and PR facts from scratch. There are two kinds of learnings:Documentation Index
Fetch the complete documentation index at: https://docs.pullfrog.com/llms.txt
Use this file to discover all available pages before exploring further.
- Repo-level learnings apply to every run in a repository.
- PR-level learnings apply only to a specific pull request while it is being reviewed or updated.
Repo-level learnings
Repo-level learnings are durable notes about how a repository works. They are meant for facts that future runs can reuse across many tasks. Good repo-level learnings include:- Setup and verification commands, like the right package manager, lint command, or targeted test command.
- Project conventions, like where shared utilities live or how components are usually styled.
- Repo-specific gotchas, like a flaky integration test, a generated file that should not be edited, or a deployment detail that changes how code should be validated.
- Stable architectural facts, like which package owns shared runtime logic or where auth decisions are enforced.
PR-level learnings
PR-level learnings are scoped to one pull request. Internally, Pullfrog stores these as a rolling PR summary snapshot that helps review and re-review runs understand what has already happened on that PR. Good PR-level learnings include:- What the PR is trying to change.
- Which subsystems, files, or behaviors are materially affected.
- Important risks, unresolved questions, or contracts the next review run should preserve.
- Which parts of the PR have already been reviewed, and what changed since the last review.
- Prior feedback that has been addressed or is no longer relevant.

