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 checking existing issues to prevent duplicates. ## 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 open and closed issues with cursor-based pagination and matches task IDs using the pattern \bT\d{3}\b, skipping 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. - Use Case: After running spec-kit task generation for a feature, invoke this Skill to publish every task as a trackable GitHub issue without re-checking which ones already exist. ## Quick Start Ask the agent to convert the current feature's tasks into GitHub issues, optionally providing a filter or label as an argument.