What problem does it solve? Manually turning a generated tasks.md file into GitHub issues is repetitive and error-prone, and re-running the process often creates duplicate issues. This Skill automates the conversion while checking existing issues first so each task maps to exactly one issue. ## Core Features & Use Cases - Automated issue creation: Parses tasks.md entries (stripping checkbox, [P], and [US#] markers) and creates GitHub issues titled in the canonical form T001: <description> via the GitHub MCP server. - Deduplication: Fetches existing issues with cursor-based pagination, matches task IDs using the \bT\d{3}\b pattern, and skips tasks that already have issues. - Safety guards: Verifies the git remote is a GitHub URL before creating anything and never creates issues in repositories that do not match the remote. - Extension hooks: Supports optional and mandatory pre/post hooks declared in .specify/extensions.yml. - Use Case: After running the spec-kit tasks phase for a new feature, invoke this Skill to publish every task as a trackable GitHub issue for the team board without duplicates. ## Quick Start Ask the agent to convert the current feature's tasks.md into GitHub issues for this repository.