Loading...
Loading...
Create well-formatted conventional commits in a repository hosted on Azure DevOps (ADO / Azure Repos). Use this whenever the user asks to commit changes and the project is on Azure DevOps — dev.azure.com, visualstudio.com, or explicit mentions of ADO, Azure Repos, or work item IDs like `AB#1234`. Automatically appends `AB#<id>` work-item trailers when the branch name or staged changes reference one, and attributes AI-assisted authorship.
npx skill4agent add flora131/atomic ado-commitgit status --porcelaingit branch --show-currentgit diff --cached --statgit diff --statgit log --oneline -5git add -Agit diff --cachedgit commit --message "<subject>" [--trailer ...]--trailer.pre-commit-config.yaml--no-verify<type>(optional scope): <description>
<optional body>
<optional trailers>featfixdocsstylerefactorperftestbuildcichorerevert!feat(api)!: change response formatfeat(auth): add JWT refresh endpoint
fix(ui): resolve layout shift on mobile nav
refactor(db): migrate from raw SQL to query builder
chore(deps): bump TypeScript to 5.5
feat(api)!: change pagination response shapeAB#<id>feature/1234-...bug/AB1234-...user/name/1234-...git log --oneline origin/main..HEADazure-devopswit_my_work_itemssearch_workitemgit commit \
--message "feat(auth): add JWT refresh endpoint" \
--trailer "AB#1234" \
--trailer "Assistant-model: Claude Code"Assistant-modelCo-authored-byAssistant-model: Claude Codegit add -A
git diff --cached --stat # sanity check
git commit \
--message "fix(parser): handle nested escape sequences" \
--trailer "AB#5678" \
--trailer "Assistant-model: Claude Code"
git log -1 # show the user the result