From tac
Creates GitHub PRs from branch, issue, and plan details using gh CLI, with formatted body closing the issue and detailing implementation, changes, and testing.
npx claudepluginhub melodic-software/claude-code-plugins --plugin tacThis skill is limited to using the following tools:
Create a well-formatted pull request that links back to the original issue and includes the implementation context.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Create a well-formatted pull request that links back to the original issue and includes the implementation context.
## Summary
[Brief description of what this PR accomplishes]
## Related Issue
Closes #[issue_number]
## Implementation
[Summary of the approach taken]
## Plan Reference
[Link to or summary of the implementation plan]
## Changes
[High-level list of changes made]
## Testing
[How was this tested / what validation was done]
---
Generated by ADW [adw_id]
Parse the provided context to extract:
Generate a PR title from the issue:
[type] Brief description (#issue_number)[feat] Add user authentication (#123)Generate the PR body following the format above
Create the PR using:
gh pr create \
--title "[title]" \
--body "[body]" \
--base main \
--head [branch_name]
$ARGUMENTS should contain:
gh pr create \
--title "[feat] Add OAuth authentication (#123)" \
--body "## Summary
Implements OAuth authentication with Google provider as specified in issue #123.
## Related Issue
Closes #123
## Implementation
Added OAuth flow using passport.js with Google strategy. Created new auth routes and middleware.
## Plan Reference
Implementation followed specs/feature-oauth-auth.md
## Changes
- Added OAuth configuration
- Created auth routes (/auth/google, /auth/callback)
- Added user session management
- Updated environment variables
## Testing
- Verified OAuth flow works end-to-end
- Tested session persistence
- Ran existing test suite
---
Generated by ADW a1b2c3d4"
$ARGUMENTS