
PR Gardening
FreeManage your pull requests effectively and efficiently.
Free · Opens the source repo
What PR Gardening does
PR Gardening is a skill designed specifically for managing pull requests that are opened by your Paperclip instance. It focuses on identifying which of these pull requests are active and assessing their readiness for merging. The skill operates within a defined activity window (defaulting to 14 days) to ensure that only relevant pull requests are considered. By utilizing a series of scripts, it checks the status of each pull request, ensuring that they meet the necessary criteria to be considered merge-ready, while also providing a mechanism to drive non-ready pull requests back to a state of readiness without the risk of merging them.
The skill is built around a strict set of guidelines that prevent any merging, approving, or closing of pull requests. It operates in a read-only mode when interacting with GitHub, ensuring that no unintended changes can occur. This makes it particularly suitable for teams that want to maintain a clear separation of duties, allowing developers to focus on code quality and readiness without the risk of accidental merges. The workflow is designed to be systematic and thorough, ensuring that all relevant pull requests are evaluated and reported on.
Users of PR Gardening will find it particularly useful when managing multiple pull requests, especially in larger projects where keeping track of contributions can become cumbersome. The skill's ability to filter out community contributions and focus solely on the pull requests authored by the instance helps streamline the process, allowing for a more organized approach to pull request management. Additionally, the built-in options for dry runs and cooldown periods provide flexibility and control over the gardening process, making it easier to integrate into existing workflows.
Overall, PR Gardening is an essential tool for developers and teams using Paperclip who want to maintain a clean and efficient pull request workflow. By automating the discovery and readiness checking of pull requests, it helps ensure that code contributions are properly managed and evaluated, ultimately leading to a more efficient development cycle.
When to use it
Use PR Gardening when you need to manage pull requests from your Paperclip instance and ensure they are ready for merging without risking accidental merges.
When not to use it
This skill is not suitable for managing community contributions or for scenarios where merging pull requests is required, as it strictly operates in read-only mode.
What you can build with it
Managing Active Pull Requests
Use PR Gardening to regularly check the status of your active pull requests and ensure they are ready for merging.
Automating Code Review Process
Integrate PR Gardening into your workflow to automate the readiness checking of pull requests, reducing manual oversight.
Streamlining Development Workflows
Leverage PR Gardening to maintain a clean pull request queue, helping your team focus on code quality and readiness.
How to install PR Gardening
View source1. Install with the skills CLI
npx skills add paperclipai/paperclip/pr-gardening --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by paperclipaiPR Gardening
Actively garden the pull requests this Paperclip instance opened that are referenced by Paperclip issues active in a recent window (default 14 days). Candidate discovery and readiness checking are scripts, not LLM analysis. GitHub access is read-only throughout this workflow.
Scope — Our PRs Only
By default the workflow gardens only pull requests authored by this instance's GitHub identity (the gh authenticated login, e.g. cryppadotta). Community contributions and dependabot PRs are excluded mechanically by author login in Stage A and land in droppedCommunityPullRequests; never re-add them by hand, widen the scope only when the caller explicitly passes --authors or --include-community.
Hard Guardrails
- Never merge, approve, or close a pull request.
- Never instruct another person or agent to merge, approve, or close a pull request.
- Never garden, comment on, or run
/prepare-paperclip-pragainst a community PR. Only PRs from the Stage A author allowlist are actionable. - Never use mutating
ghcommands or mutating GitHub API requests. The scripts only usegh pr viewand read-onlygh apiGET requests. - Draft pull requests are report-only. Do not post gardening comments for drafts.
- Comment only on existing originating issues. Never create a gardening issue per pull request.
--dry-runsuppresses all Paperclip mutations, including gardening comments, prepare tasks, and inbox archives. Discovery and GitHub inspection remain read-only in every mode.
Inputs
--days <N>: activity window, default14. Applies to both mentioning-issue activity and the PR's ownupdatedAt; open PRs with no activity inside the window are dropped as stale.--authors <logins>: comma-separated GitHub logins whose PRs are in scope; default is theghauthenticated user.--include-community: disable the author filter entirely. Only on explicit caller request.--repo <owner/repo>: GitHub repository, default detected bygh repo view.--dry-run: discover, verify, and report without posting comments, creating prepare tasks, or archiving inbox entries.--archive-inbox: after GitHub confirms a candidate PR is merged at its current head, archive the originating issue from the responsible user's inbox in Stage D.--cooldown-hours <N>: repeat-gardening cooldown, default48.--max-rounds <N>: maximum gardening rounds per PR, default3.
Use a run-owned directory such as $PAPERCLIP_RUN_SCRATCH_DIR/pr-gardening for generated files.
Stage A — Discover Candidates
Run the extract-search path. It scans every result page, normalizes PR URLs, deduplicates PR numbers, records every mentioning issue, checks issue work products to identify the origin, drops PRs that GitHub says are merged or closed, drops PRs whose author is outside the allowlist (community contributions) into droppedCommunityPullRequests, and drops open PRs whose own updatedAt is older than the window into droppedStalePullRequests. Issues that exceed the per-issue extract match cap (typically digest or QA issues that enumerate hundreds of PR URLs) are recorded in source.truncatedIssues and noted in the report instead of aborting the run.
node .agents/skills/pr-gardening/scripts/find-candidates.mjs \
--days 14 \
--dry-run \
--output "$RUN_DIR/candidates.json"
The script calls GET /api/companies/:companyId/search/extract with kind=url, scope=all, and updatedWithin=<N>d, then resolves the author allowlist from gh api user unless --authors or --include-community overrides it. Do not replace it with full issue-list fetching or LLM scanning.
Stage B — Verify Current-Head Readiness
node .agents/skills/pr-gardening/scripts/check-readiness.mjs \
--input "$RUN_DIR/candidates.json" \
--output "$RUN_DIR/readiness.json" \
--dry-run
For every candidate, the script re-fetches the current head SHA and records:
- open/draft state and mergeability/conflicts;
statusCheckRollupcheck-run and legacy status inventory;- a completed Greptile check-run on the exact head, clean only for
successorneutral; reviewDecision;- commits behind the base branch.
Verdicts are ready, needs_gardening, or report_only for drafts. Always rerun this stage after any wake or claim that a PR was fixed. Never trust issue comments as proof of readiness.
Follow-up Create-PR Task Deduplication
If gardening decides a branch needs a follow-up task to create a single pull request, deduplicate before creating anything.
For each branch, process one branch at a time and do this serially:
- Search open Paperclip issues for the exact branch name with statuses
backlog,todo,in_progress,in_review, andblocked. - Inspect matching issue titles, descriptions, and recent comments for an equivalent open "create PR from this branch" task for the same branch.
- If an equivalent open task exists, reuse it: add a concise comment with the current PR/head/reason context and link it from the gardening issue or blocker list. Do not create another task.
- Only if no equivalent open task exists, create exactly one follow-up task for that branch.
Never fan out follow-up task creation in parallel. Do not issue concurrent POST /api/companies/:companyId/issues calls for create-PR or prepare-PR tasks. After P1's issue-create idempotency support is available, every create-PR follow-up task creation must include idempotencyKey: "pr-gardening:create-pr:{branch}" and every prepare-PR task idempotencyKey: "pr-gardening:prepare-pr:{owner/repo}#{number}".
Stage C — Drive Our PRs to Ready with /prepare-paperclip-pr
Skip this stage in --dry-run mode and for ready or report_only entries.
Every needs_gardening PR here was opened by this instance (Stage A guarantees it), so do not just report — actively get it merge-ready by running the /prepare-paperclip-pr skill against it. Process PRs one at a time:
-
Cooldown and rounds. Locate the
originatingIssuefromcandidates.json(selection priority: issue carrying the exact PR URL as apull_requestwork product; then issue whose comment mentions the PR; then most recently active mentioning issue). Fetch its comments and search for the marker:<!-- pr-gardening:<owner/repo>#<number> -->Skip the PR if the latest matching marker is newer than the cooldown. Track rounds from matching markers; after three rounds, stop and report
not converging; recommend close or human decision. That is a recommendation for human disposition, not an instruction to close the PR. -
Deduplicate. Search open Paperclip issues for the PR number/branch. If an equivalent open prepare-PR task already exists, reuse it with a concise status comment instead of creating another (see the deduplication section above).
-
Run the prepare skill. Create one focused child task per PR assigned to a coder agent (prefer CodexCoder) instructing it to run
/prepare-paperclip-prfor that PR — include the PR URL, branch, current head SHA, and the exact machine-detectedreasons[]fromreadiness.json. If you are the gardener and already have the PR's branch checked out in a worktree, you may run/prepare-paperclip-prdirectly instead of delegating. Either way, the prepare work must never merge, approve, or close the PR. -
Leave the marker comment. Comment on the originating issue with the marker above, the current head SHA, the copied
reasons[], the round counter, and a link to the prepare task. UsePOST /api/issues/:issueId/commentswithX-Paperclip-Run-Id. Includeresume: truewhen the issue is terminal so the comment creates a live continuation.
Suggested body:
<!-- pr-gardening:paperclipai/paperclip#1234 -->
Gardening: dispatched `/prepare-paperclip-pr` for https://github.com/paperclipai/paperclip/pull/1234 via PAP-XXXX.
Current-head verification at `abc123` found:
- failing check: test
- Greptile missing at current head
Gardening round 1/3. Re-verification is required after changes; do not merge based on this comment.
Stage D — Optional Inbox Tidy-Up
Run this stage only when the caller explicitly supplied --archive-inbox. --dry-run always suppresses inbox mutations, even when --archive-inbox is also present. Without the flag, do not archive anything.
Stage D applies to a previously monitored candidate that transitions to merged. Rerun Stage B immediately before this stage and require GitHub to report state: merged for the same current head SHA recorded by that verification. Fresh Stage A discovery intentionally drops PRs that were already merged or closed.
For each qualifying candidate, archive its originatingIssue from the responsible user's inbox with POST /api/issues/:issueId/inbox-archive and an empty JSON body. Do not pass userId; the Paperclip API resolves the responsible user from the gardener's run context and enforces that user's inbox-agent policy. GitHub access remains read-only.
Do not archive PRs that are merely ready, closed without merging, draft, pending, or merged at an unverified or stale head. Never archive an originating issue while the user is still awaiting review, a decision, approval, or other action on it. If Paperclip denies the mutation because the responsible user is unresolved, inbox management is disabled, the gardener is not allowlisted, or a trust boundary applies, report the denial and continue without retrying around policy.
After a successful archive, leave a standard gardening marker comment on the originating issue that names the archived issue and merged PR:
<!-- pr-gardening:paperclipai/paperclip#1234 -->
Inbox tidy-up: archived [PAP-310](/PAP/issues/PAP-310) from the responsible user's inbox after confirming https://github.com/paperclipai/paperclip/pull/1234 merged at current head `abc123`.
This archive is audited and reversible; later issue activity may resurface the item.
Use POST /api/issues/:issueId/comments and include X-Paperclip-Run-Id on both the archive and comment requests. In --dry-run, report the archive and marker comment that would have been written, but perform neither mutation.
Stage E — Monitor to Termination
Set the gardening run issue's blockedByIssueIds to the non-terminal prepare tasks and originating issues engaged in Stage C so blocker resolution wakes the gardener. A scheduled or manual rerun is the fallback.
On every wake, rerun Stage B first. A PR terminates from active gardening only when one of these is mechanically observed:
- verified
readyat the current head; - merged or closed externally;
- maximum rounds reached, reported as not converging.
Do not leave the gardening issue blocked on terminal issues. Do not poll agents or long-running sessions.
Stage F — Render and Publish the Report
node .agents/skills/pr-gardening/scripts/render-report.mjs \
--input "$RUN_DIR/readiness.json" \
--output "$RUN_DIR/gardening-report.md"
The report states the scope (authors + window), and for every open PR gives its author, a one-line purpose summary taken from the PR description, and a readiness confidence bucket:
- High: current-head checks green, no conflicts, Greptile clean, base fresh, originating issue terminal.
- Medium: otherwise green but base stale, review not complete, or originating issue active.
- Low: failing/pending checks, missing Greptile, draft/just-fixed-unverified state, or no identifiable origin.
If a PR's generated purpose line is empty or unhelpful, write a one-sentence description from the PR title and diff summary when publishing the report.
Upload candidates.json, readiness.json, and gardening-report.md to the gardening issue, create/update the gardening-report issue document with the Markdown body, and leave a summary comment linking the artifacts. The report is the deliverable; it is never authorization to merge.
Verification
Run focused script tests:
node --test .agents/skills/pr-gardening/scripts/pr-gardening.test.mjs
For a live dry run, execute Stages A, B, and F with --dry-run, then sanity-check named PRs only if they are still open. Merged or closed examples should appear under droppedClosedPullRequests, not in readiness results, and community-authored PRs must appear only under droppedCommunityPullRequests — a candidate or report entry with an author outside the allowlist is a scope failure. If also exercising --archive-inbox, confirm the report describes the suppressed Stage D action and that no Paperclip archive or marker-comment mutation occurred.
Frequently asked questions about PR Gardening
Similar skills
Quality Playbook Generator
Run comprehensive quality audits on any codebase.
PR Draft Summary
Automate PR summary generation for openai-agents-python.
Final Release Review
Streamline your release candidate audits with ease.
Unit Test Vue Pinia
Efficiently write and review unit tests for Vue 3 applications.
Slang Shader Expert
Optimize and integrate Slang shaders with ease.
Telemetry Standards
Ensure consistent event tracking in Supabase Studio.
