Incremental implement
Skill allanbian1017/skills/skills/development/incremental_implement
Skills for automate workflows, assist in daily tasks, and enhance overall productivity.
npx -y skills add allanbian1017/skills --skill incremental_implementAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 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
Full PR lifecycle via isolated worktree, atomic commits, PR creation, and a strict verification loop (CI + review-work) until merged.
SKILL.md
5.0 KB, as published. Nobody here has run it
π― Purpose
To execute a complete, safe Pull Request lifecycle. The skill isolates work in a sibling directory, implements requested changes via atomic commits, creates a PR, and enforces an unbounded verification loop (CI and AI peer review) until the code is proven stable and merged.
The Increment Cycle
ββββββββββββββββββββββββββββββββββββββββ
β β
β Implement βββ Test βββ Verify βββ β
β β² β β
β ββββββ Commit βββββββββββββββ β
β β β
β βΌ β
β Next slice β
β β
ββββββββββββββββββββββββββββββββββββββββ
πͺ Gating & Trigger Conditions
- When to invoke: When the user prompts 'create a PR', 'implement and PR', 'work on this and make a PR', 'implement issue', 'land this as a PR', 'work-with-pr', 'PR workflow', 'implement end to end', or 'implement X' (when context implies safe PR delivery).
- When NOT to invoke: - Directly committing to
masterordevbranches.- When the user explicitly requests working in the current active directory without isolation.
- Simple file edits where no CI or verification is necessary.
π₯ Input Specifications
TASK_SUMMARY: The goal or issue description provided by the user.CONSTRAINTS: Any specific architectural or stylistic rules.- Inferred Context: Repository name, current working directory (
$PWD), and base branch (defaulting todev).
βοΈ Execution Instructions (Workflow)
1. Setup Isolated Worktree Create a sibling worktree to prevent polluting the user's uncommitted state.
- Resolve repo context:
REPO=$(gh repo view --json nameWithOwner -q .nameWithOwner)andBASE_BRANCH="dev". - Generate branch name:
BRANCH_NAME="feature/$(echo "$TASK_SUMMARY" | tr '[:upper:] ' '[:lower:]-' | head -c 50)". - Fetch and branch:
git fetch origin "$BASE_BRANCH"thengit branch "$BRANCH_NAME" "origin/$BASE_BRANCH". - Create worktree:
WORKTREE_PATH="../$(basename "$PWD")-wt/${BRANCH_NAME}",mkdir -p "$(dirname "$WORKTREE_PATH")",git worktree add "$WORKTREE_PATH" "$BRANCH_NAME". - Enter worktree and install project dependencies using the appropriate package manager based on the repository's lockfiles.
2. Implement & Pre-Validate
- Implement EXACTLY ONE task from the
TASK_SUMMARY. Keep scope strictly minimal to this single task. Do NOT implement multiple tasks or refactor unrelated code. - You must halt and request human review BEFORE moving to any subsequent tasks. If a task is completed, you MUST wait for the user to initiate a brand-new chat session for the next task.
- Commit atomically using the
git-masterskill (e.g., 3+ files changed = 2+ commits). - Run local validation before pushing (e.g., the project's native build, test, and linting scripts). Fix local failures and commit atomically before proceeding.
3. PR Creation
- Push branch:
git push -u origin "$BRANCH_NAME". - Create PR: Execute
gh pr createwith basedev, head$BRANCH_NAME, and a formatted body containing "Summary", "Changes", and "Testing" checklists. - Capture PR number:
PR_NUMBER=$(gh pr view --json number -q .number).
4. Verification Loop
Enter an unbounded while loop until both gates pass:
- Gate A (CI Checks): Run
gh pr checks "$PR_NUMBER" --watch --fail-fast.- If failed: Fetch logs (
gh run view "$RUN_ID" --log-failed), fix the specific issue, commit, push, and restart the loop at Gate A.
- If failed: Fetch logs (
- Gate B (review-work): Only execute if Gate A passes. Invoke the
review-workskill sub-agent targeting$BRANCH_NAMEand$WORKTREE_PATH.- If failed: Address blocking issues reported by the reviewers, commit, push, and restart the loop at Gate A (new code requires new CI).
- Break loop when both Gate A and Gate B pass simultaneously.
5. Merge & Cleanup
- Merge PR:
gh pr merge "$PR_NUMBER" --squash --delete-branch. - Cleanup: Return to the original directory (
cd "$ORIGINAL_DIR"), rungit worktree remove "$WORKTREE_PATH", andgit worktree prune.
6. Fallback Behaviors
- If an unrecoverable error occurs (e.g., merge conflicts with base), DO NOT delete the worktree.
- Output the
$WORKTREE_PATHto the user and halt execution so they can manually inspect or resolve the state.
π€ Output Specifications
- A markdown-formatted summary report detailing:
- PR Number and Title
- Branch routing (
feature-branchβmain) - Number of iterations in the verification loop
- Confirmation of CI and review-work passage
- Worktree cleanup status