implement-with-feedback

Installation
SKILL.md

Implement with Feedback

A disciplined, git-centric implementation workflow. Remote git logs are the primary way others monitor your work.

Workflow

Phase 1: Pre-flight Checks

  1. Verify clean checkout. Run git status. If there are ANY uncommitted changes (staged, unstaged, or untracked non-ignored files), STOP and tell the user:

    "Working tree is not clean. Please commit or stash your changes before starting." Do NOT proceed until the checkout is clean.

  2. Verify we are on main/master. If not, warn the user and ask whether to continue from the current branch or switch to main first.

  3. Pull latest. Run git pull to ensure we're up to date.

Phase 2: Branch Creation

  1. Determine branch type from arguments or context. Valid prefixes:
Related skills

More from xalior/agent-skills

Installs
7
First Seen
Feb 9, 2026