What problem does it solve? Manually turning a spec-kit tasks.md file into GitHub issues is repetitive and error-prone, often producing duplicates or issues in the wrong repository. This Skill automates the conversion with built-in deduplication and remote-URL safety checks. ## Core Features & Use Cases - Automated issue creation: Parses each task line in tasks.md, strips checkbox and marker prefixes, and creates GitHub issues titled T001: <description> through 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 before creating anything and refuses to create 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 speckit task generation for a new feature, invoke this Skill to publish all 25 tasks as GitHub issues in one pass, skipping the 5 that were already created in a previous run. ## Quick Start Ask the agent to convert the current feature's tasks.md into GitHub issues for this repository.