feat(aidd-pr): add /aidd-pr skill for PR review and fix delegation#168
Draft
ericelliott wants to merge 21 commits intomainfrom
Draft
feat(aidd-pr): add /aidd-pr skill for PR review and fix delegation#168ericelliott wants to merge 21 commits intomainfrom
ericelliott wants to merge 21 commits intomainfrom
Conversation
- Add ai/skills/aidd-pr/SKILL.md with 6-step PR triage process - Add ai/skills/aidd-pr/README.md with usage documentation - Add ai/commands/aidd-pr.md command shortcut - Update AGENTS.md Task Index with 'review pull request => /aidd-pr' - Regenerate index.md files to include new skill and command The /aidd-pr skill enables agents to: 1. Fetch PR details and review comments via gh CLI 2. Identify already-addressed comments and present for approval 3. Resolve approved conversations via GitHub GraphQL API 4. Validate remaining issues against current source 5. Generate focused /aidd-fix delegation prompts per issue 6. Optionally dispatch prompts to sub-agents Closes #166
Collaborator
Author
|
@janhesters @ianwhitedeveloper any idea why the AI tests are failing? |
Remove the 6-step SudoLang elaboration (Steps 1–6, the pipeline line, and the previous Constraints/Commands blocks). Insert the verbatim prompt from issue #166 directly after the Competencies block, preserving the frontmatter and preamble (role line + Competencies) unchanged.
…ements, add unit/e2e distinction
…s for tool-calling skills
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements #166: adds the
/aidd-prskill for reviewing pull requests, triaging review comments, and delegating targeted fixes to sub-agents via/aidd-fix.What's Added / Changed
ai/skills/aidd-pr/SKILL.md— Skill with frontmatter, preamble (role + Competencies), then the verbatim prompt from the issue spec (including originalConstraintsandCommandsblocks)ai/skills/aidd-pr/README.md— Human-readable reference documentationai/commands/aidd-pr.md— Command shortcut that loads and executes the skillai/skills/aidd-please/SKILL.md— Added🔍 /aidd-prto the Commands discovery block so the main orchestrator surfaces itAGENTS.md— Task Index entry:review pull request => /aidd-prindex.mdfiles updatedHow It Works
/aidd-pr [PR URL]instructs an agent to:ghto identify comments already addressed — list for manual approval, then resolve after approval/aidd-fixdelegation prompt (one issue per prompt, in a markdown codeblock with nested codeblocks indented, targeting the PR branch directly)/aidd-pr delegatedispatches those prompts to sub-agents and uses the GitHub GraphQL API to resolve related PR conversations.