What problem does it solve? Reviewing changes across many git tags is hard to track manually. This Skill turns git tags into a checklist so you can see which tags are still pending review, inspect the commits between tags, and mark tags as done without losing your place. ## Core Features & Use Cases - Pending Tag Queries: Run tagcli query -n N to list the next N undoned tags along with the commits since the previous tag. - Progress Tracking: Mark tags as done with tagcli ack <tag> and view overall status with tagcli status; state persists in a .gittags-cursor file. - Use Case: A reviewer auditing a monorepo with 105 release tags runs tagcli query -n 3 each morning, reviews the commits for each tag, acknowledges them, and resumes exactly where they left off the next day. ## Quick Start Ask the assistant to run tagcli query -n 5 in your repository to show the next five pending git tags with their commits.