What problem does it solve? Manually turning a tasks.md file into GitHub issues is repetitive and error-prone, often producing duplicates when re-run. This Skill automates the conversion of spec-kit tasks into GitHub issues while checking existing issues to prevent duplicates. ## Core Features & Use Cases - Automated Issue Creation: Parses tasks.md entries (e.g., - [ ] T001 Create project structure) and creates GitHub issues with canonical titles like T001: Create project structure 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 pre/post extension hooks from .specify/extensions.yml. - Use Case: After generating a tasks.md breakdown for a new feature with spec-kit, run this Skill to publish every task as a trackable GitHub issue in the matching repository without creating duplicates on re-runs. ## Quick Start Convert the tasks in my current spec-kit feature's tasks.md into GitHub issues, skipping any that already exist.