What problem does it solve? Manually translating 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 task lists into properly titled GitHub issues while skipping tasks that already have issues. ## 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 issues with cursor-based pagination and matches task IDs using the pattern \bT\d{3}\b, skipping any task that already has an issue. - Extension Hooks: Supports optional and mandatory pre/post hooks defined in .specify/extensions.yml for workflow customization. - Use Case: After generating a tasks.md file for a new feature with spec-kit, invoke this Skill to publish every task as a trackable GitHub issue in the repository matching the git remote, 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.