From one-shot
Executes implementation plan from absolute file path (optional seed commitish): creates randomized git branch, implements via agent with reviews, commits changes, creates GitHub PR.
npx claudepluginhub pbdeuchler/llm-plugins --plugin one-shot# Execute Implementation Plan **Implementation plan file:** `$1` **Seed Commitish:** `$2` (Optional) This execution workflow uses: - Per-task code review ## Before Starting The first argument MUST be an absolute path. Verify it exists: 1. Verify we are in a git repo: 2. If $2 (seed commitish) was provided, verify the commitish exists and check out to it. If not, take note of the current branch you are on: 3. Verify the plan file exists: 4. Checkout a new branch from the current HEAD (which should be the seed committish if provided). This branch should have a randomiz...
/prp-implementExecutes a Markdown implementation plan, applying file changes with validation loops after each step to catch and fix issues early.
/implement_planImplements approved technical plans from ./thoughts/shared/plans directory via phases with automated verification, manual pauses, and progress tracking.
/prp-implementExecutes a Markdown plan file step-by-step: detects package manager, prepares git branch, implements tasks with pattern mirroring, validates after every change.
/implementImplements changes from a provided plan file or reference, executing phases sequentially with file reads, verification, progress tracking via checkboxes, and mismatch handling.
/executeExecutes implementation plan with automatic sequential/parallel orchestration using git-spice and git worktrees.
/startImplements Manus-style file-based planning for complex tasks by creating task_plan.md, findings.md, and progress.md. Supports automatic session recovery after /clear.
Share bugs, ideas, or general feedback.
Implementation plan file: $1
Seed Commitish: $2 (Optional)
This execution workflow uses:
The first argument MUST be an absolute path. Verify it exists:
Verify we are in a git repo:
git rev-parse --git-dir
If $2 (seed commitish) was provided, verify the commitish exists and check out to it. If not, take note of the current branch you are on:
git checkout $2
Verify the plan file exists:
test -f "$1"
Checkout a new branch from the current HEAD (which should be the seed committish if provided). This branch should have a randomized, human readable name:
git checkout -b lazy-koala-fence
If any of these steps fail, stop and report the error to the user.
one-shot:execute-one-shot$1. Do not ask again.The skill should execute everything in that file, no more and no less. Follow it exactly as written.
Holistic Review: Use your Skill tool to invoke one-shot:holistic-review within a subagent. The implementation plan path is $1 and the base branch is the branch you checked out from (or the seed commitish branch if provided).
Commit the changes from the holistic code review with a detailed commit message describing what was done.
Create a PR using the gh CLI:
IF YOU ENCOUNTER THIS ERROR: pull request create failed: GraphQL: Head sha can't be blank, Base sha can't be blank, No commits between {base} and {compare}, Base ref must be a branch (createPullRequest) then ensure {base} exists and is up to date on origin
The success of this entire implementation relies upon it having a good PR description. It is imperative that the description is concise without being terse or lacking information. It should never be long, wordy, or overly descriptive. An engineer of any skill level should be able to use the description and immediately understand what was done, why it was done, and what they should pay attention to most in the review.