incremental_implement — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited incremental_implement (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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.
┌──────────────────────────────────────┐
│ │
│ Implement ──→ Test ──→ Verify ──┐ │
│ ▲ │ │
│ └───── Commit ◄─────────────┘ │
│ │ │
│ ▼ │
│ Next slice │
│ │
└──────────────────────────────────────┘master or dev branches.TASK_SUMMARY: The goal or issue description provided by the user.CONSTRAINTS: Any specific architectural or stylistic rules.$PWD), and base branch (defaulting to dev).1. Setup Isolated Worktree Create a sibling worktree to prevent polluting the user's uncommitted state.
REPO=$(gh repo view --json nameWithOwner -q .nameWithOwner) and BASE_BRANCH="dev".BRANCH_NAME="feature/$(echo "$TASK_SUMMARY" | tr '[:upper:] ' '[:lower:]-' | head -c 50)".git fetch origin "$BASE_BRANCH" then git branch "$BRANCH_NAME" "origin/$BASE_BRANCH".WORKTREE_PATH="../$(basename "$PWD")-wt/${BRANCH_NAME}", mkdir -p "$(dirname "$WORKTREE_PATH")", git worktree add "$WORKTREE_PATH" "$BRANCH_NAME".2. Implement & Pre-Validate
TASK_SUMMARY. Keep scope strictly minimal to this single task. Do NOT implement multiple tasks or refactor unrelated code.git-master skill (e.g., 3+ files changed = 2+ commits).3. PR Creation
git push -u origin "$BRANCH_NAME".gh pr create with base dev, head $BRANCH_NAME, and a formatted body containing "Summary", "Changes", and "Testing" checklists.PR_NUMBER=$(gh pr view --json number -q .number).4. Verification Loop Enter an unbounded while loop until both gates pass:
gh pr checks "$PR_NUMBER" --watch --fail-fast.gh run view "$RUN_ID" --log-failed), fix the specific issue, commit, push, and restart the loop at Gate A.review-work skill sub-agent targeting $BRANCH_NAME and $WORKTREE_PATH.5. Merge & Cleanup
gh pr merge "$PR_NUMBER" --squash --delete-branch.cd "$ORIGINAL_DIR"), run git worktree remove "$WORKTREE_PATH", and git worktree prune.6. Fallback Behaviors
$WORKTREE_PATH to the user and halt execution so they can manually inspect or resolve the state.feature-branch → main)~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.