What problem does it solve? Manually translating a tasks.md breakdown into GitHub issues is repetitive and error-prone, often producing duplicates when re-run. This Skill automates the conversion of spec-kit task lists into GitHub issues while checking existing issues to prevent duplicates. ## 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 pattern \bT\d{3}\b, skipping tasks that already have issues. - Safety Guards: Verifies the git remote is a GitHub URL before creating anything and supports extension hooks via .specify/extensions.yml for pre/post execution. - Use Case: After generating a tasks.md file for a new feature with spec-kit, invoke this Skill to publish every task as a tracked GitHub issue in the matching repository without creating duplicates on re-runs. ## Quick Start Ask the AI to convert the current feature's tasks.md into GitHub issues for this repository.