implement-suggestion

Solid

Implements review-comment suggestions across one or more PRs. Multi-PR mode (default when $ARGUMENTS contains PR URLs; empty $ARGUMENTS auto-detects the active PR) per PR: resolves a worktree, fetches every actionable comment from both human teammates AND AI code-review bots (claude[bot], coderabbitai[bot], …), validates each through /critical + /confidence, builds a structured suggestion-pack, and dispatches a worker subagent that applies each approved change as its own commit, pushes to the existing branch, and resolves the addressed review thread — so every handled comment ends up resolved and the PR is left clean. Fast-lane for mechanical edits, standard-lane via aw-planner for architectural changes. Free-text mode applies a single pasted suggestion in the current directory. Triggers on "implement suggestion", "apply review comments", "address PR feedback", "implement reviewer feedback", "fix PR comments", "/implement-suggestion". With --watch, loops the apply on a single PR — waiting for new review-bot c

AI & Automation 13 stars 2 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
38
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Implement Suggestion Take reviewer suggestions on one or more pull requests, validate each through adversarial review (`/critical`) and a confidence gate (`/confidence`), then hand off a structured **suggestion-pack** to a worker subagent that applies the approved changes inside the PR's worktree and pushes them — without opening a new PR. This skill is a **thin orchestrator**. The heavy reasoning lives in `/critical` and `/confidence`. Per-PR worktree isolation comes from `gw`. Plan authoring for architectural changes is delegated to `aw-planner`. The mechanical apply / commit / push runs inside a dispatched worker. > **Source of truth.** This `SKILL.md` is a thin index. Detailed procedures live > in `rules/*.md`, literal artefacts in `templates/*.md`. Load only what the > current phase asks for. ## Mode Detection Parse `$ARGUMENTS` once, in this order. First match wins. | # | Signal in `$ARGUMENTS` | Mode | | - | ------------------------------------------------------------------------------------------ | -------------------------- | | 1 | One or more `github.com/<owner>/<repo>/pull/<n>` URLs (with or without `#discussion_r…`) | **multi-pr** | | 2 | One bare PR number (`#123`) **and** the current directory is a PR worktree | **multi-pr** (n=1) | | 3 | Free-text prose, pasted comment body, or non-PR URL ...

Details

Author
mthines
Repository
mthines/agent-skills
Created
4 months ago
Last Updated
yesterday
Language
JavaScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

pr-open-comments

Fetch every unresolved review thread on a pull request, verify each comment against the current code, react 👍 or 👎 to tell the reviewer whether it was useful, and rate confidence in one recommendation per item. An item rated above 90% confidence that passes every hard rule is applied, pushed, replied to, and resolved automatically; every other item lands on a globally numbered punch list that presents and stops until the user picks actions. Explicit user authorization applies the whole batch regardless of confidence. Trigger on "address PR comments", "triage PR feedback", "handle the comments", "unresolved review comments", "/pr-open-comments", or a `/pr-watch-as-author` watch dispatching it on a poll-detected change. An auto-applied item commits and pushes without stopping to ask, so invoke this ONLY on one of those stated intents: never infer triage intent from a PR merely carrying unresolved comments.

11 Updated today
bostonaholic
AI & Automation Listed

pr-comments

Address review comments on your own pull request: implement valid suggestions, reply to invalid ones, and resolve threads. Covers inline review threads, review body comments, and plain PR timeline comments. Use when: user says "address PR comments", "implement PR feedback", "respond to review comments", "handle review feedback", "process PR review comments", "fix review feedback", "handle bot review comments", "process Copilot suggestions", "address Claude review", or wants to work through open review threads on their pull request. Gives credit to commenters in commit messages.

2 Updated 2 weeks ago
WhatIfWeDigDeeper
AI & Automation Listed

ami-pr-comment-analyzer

Analyzes code review comments left by other developers on an active Pull Request, extracting pending tasks, suggestions, and offering to reply.

0 Updated 5 days ago
AnaCataVC