What problem does it solve?
Many repository contributions fail to meet maintainability, verification, and commit-hygiene standards because work is done on the main checkout without test-first development, isolated worktrees, deterministic verification, or explicit push-and-close discipline. This Skill removes ambiguity and enforces an end-to-end, machine-verifiable workflow so changes are correct, tested, and cleanly integrated.
Core Features & Use Cases
- Worktree isolation: Create a dedicated worktree branch for each issue so local main stays clean and merges are deterministic.
- TDD-first implementation: Write failing tests, implement the minimum change, then refactor with targeted verification.
- Deterministic done bar: Define machine-verifiable acceptance criteria (tests, lint, clippy, benchmarks) and verify every line before merge.
- Commit and push hygiene: Rebase, produce atomic conventional commits, run repo validation lanes, push, and close the issue with a reference to the implementing commit.
- Use case: Turn an issue number or URL into a full change: create worktree, add tests, implement, verify the done bar, rebase, merge to main, push, and close the issue.
Quick Start
Provide an issue number or URL and ask the agent to implement it, for example: do 42 to implement issue #42 with an isolated worktree using TDD and the repository's verification lanes.