agentsclimarketplace

Update

Skill 1shooperman/shooperman-claude-plugins/plugins/custom-plugin-tools/skills/update

Consolidating some claude code plugins to reduce sprawl on my local machine.

Install
npx -y skills add 1shooperman/shooperman-claude-plugins --skill update

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use this skill when the user asks to update a PR description, refresh PR body, or sync PR details based on branch changes. Triggered by phrases like "update PR#N desc", "refresh the PR description", or "update PR based on branch changes".

SKILL.md

1.5 KB, 318 tokens by cl100k_base, as published. Nobody here has run it

Arguments

The user invoked this with: $ARGUMENTS

Parse the PR number from $ARGUMENTS. If no number is given, use the PR associated with the current branch:

gh pr view --json number -q .number

If no PR exists, tell the user and stop.

Instructions

  1. Fetch the current PR metadata:

    gh pr view <N> --json title,number,url
    
  2. Spin up all four agents in parallel:

    • agent-change-summarizer — produces ## Summary and ## Components
    • agent-security-auditor — produces ## Security
    • agent-test-planner — produces ## Test plan
    • agent-sdet — writes any missing tests/**/test-*.sh files; returns a brief summary (not a PR body section)
  3. Assemble the final PR body in this order:

    ## Summary
    <from agent-change-summarizer>
    
    ## Components
    <from agent-change-summarizer, omit if empty>
    
    ## Security
    <from agent-security-auditor>
    
    ## Test plan
    <from agent-test-planner>
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
  4. Update the PR:

    gh pr edit <N> --body "..."
    
  5. Output the PR URL.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.