Loading...
Loading...
Git-centric implementation workflow. Enforces clean checkout, creates a properly named branch, tracks progress in a WIP markdown file, and commits/pushes continuously so remote git logs serve as the primary monitoring channel. Use when starting any plan-based implementation task.
npx skill4agent add xalior/agent-skills implement-with-remote-feedbackgit status"Working tree is not clean. Please commit or stash your changes before starting." Do NOT proceed until the checkout is clean.
git pullfeature/bugfix/spike/refactor/docs/chore/git checkout -b <branch-type>/<short-description>
git push -u origin <branch-type>/<short-description>$ARGUMENTS/implement-with-feedback feature/add-authdocs/plans/plan_<branch-name>_implimentation.md/-# WIP: <Branch Name>
**Branch:** `<branch-type>/<description>`
**Started:** <date>
**Status:** In Progress
## Plan
<If a plan file was provided as $1, summarize it here and link to it. Otherwise, work with the user to define the plan.>
### Tasks
- [ ] Task 1
- [ ] Task 2
- ...
## Progress Log
### <timestamp>
- Started work. Branch created from `main` at `<commit-sha>`.
## Decisions & Notes
<Record architectural decisions, trade-offs, and anything useful for reviewers.>
## Blockers
<None currently.>
## Commits
<githash> - Oneline changelog/commit notegit add docs/wip/<filename>.md
git commit -m "wip: start <branch-name> — init progress tracker"
git push[x]feat: add auth middleware for API routesfix: handle null response from scannerwip: partial implementation of results tabledocs: update scanner authoring guidetest: add normalizer tests for ffufrefactor: extract fingerprint logic to shared utilgit add <specific-files>
git commit -m "<type>: <description>"
git push**Status:**Completegit log --oneline origin/<branch-name>
git diff main..origin/<branch-name>
cat docs/wip/<branch-name>.md # on the remote branch