Autodev Loop
Shared development workflow used by project-specific dev skills. No planning step, go straight to implementation.
Steps
- •
Sync, detect the default branch (
git remote show upstream 2>/dev/null | sed -n 's/.*HEAD branch: //p', fallback tomain), checkout it and rungit sync. - •
Create a branch for the feature/fix.
- •
Implement, follow existing coding style, keep changes minimal.
- •
Add tests, parameterized, concise, following project conventions.
- •
Verify, run the project's build and test commands.
- •
Commit with
git commit -n -m "msg", no co-author tags. - •
PR summary: Use
/dev-pr-summarizeto generate a changelog. - •
Checkout the default branch when done.