What problem does it solve? Manually turning a tasks.md breakdown into GitHub issues is repetitive and error-prone, often producing duplicates or issues in the wrong repository. This Skill automates the conversion while verifying the Git remote and skipping tasks that already have issues. ## 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 issues with cursor-based pagination and matches task IDs using the \bT\d{3}\b pattern, skipping any task that already has an issue. - 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 a spec-kit planning workflow that generated tasks.md for a feature, invoke this Skill to publish every task as a tracked GitHub issue without re-checking for duplicates by hand. ## Quick Start Ask the agent to convert the current feature's tasks.md into GitHub issues for this repository.