What problem does it solve? Teams using spec-kit workflows end up with long tasks.md files that must be manually turned into GitHub issues, which is repetitive and risks creating duplicates when the command is re-run. This Skill automates that conversion while checking existing issues first. ## Core Features & Use Cases - Automated Issue Creation: Parses tasks.md entries (stripping checkbox, [P], and [US#] markers) and creates GitHub issues titled T001: <description> via the GitHub MCP server. - Deduplication: Fetches existing open and closed issues with cursor-based pagination and matches task IDs using the \bT\d{3}\b pattern, skipping tasks that already have issues. - Safety Guards: Verifies the git remote is a GitHub URL before creating anything, enforces the speckit workflow mode, and supports pre/post extension hooks from .specify/extensions.yml. - Use Case: After running speckit task generation for a feature, invoke this Skill to publish every task as a trackable GitHub issue without manually copying titles or worrying about re-run duplicates. ## Quick Start Ask the agent to convert the current feature's tasks.md into GitHub issues for this repository.