What problem does it solve? Manually translating a feature's tasks.md file into GitHub issues is repetitive and error-prone, often producing duplicates or issues in the wrong repository. This Skill automates that conversion while guarding against duplicate creation and mismatched remotes. ## Core Features & Use Cases - Automated Issue Creation: Parses tasks.md entries (e.g., - [ ] T001 Create project structure) and creates GitHub issues titled T001: <description> via the GitHub MCP server. - Deduplication: Fetches existing 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 and refuses to create issues in repositories that do not match the remote. - Extension Hooks: Supports optional and mandatory pre/post hooks defined in .specify/extensions.yml. - Use Case: After generating a task breakdown with spec-kit, run this Skill to publish every task as a tracked GitHub issue so the team can assign and monitor implementation work. ## Quick Start Ask the AI to convert the current feature's tasks.md into GitHub issues for this repository.