What problem does it solve? Turning a well-defined GitHub issue into a merged pull request involves repetitive manual steps: fetching the issue, reproducing the defect, writing regression tests, branching, committing, and opening a PR. This Skill automates that entire maintenance workflow for defects, chores, and narrowly scoped changes. ## Core Features & Use Cases - Issue Contract Establishment: Fetches the full issue, linked PRs, discussion, and repository state to identify the observable failure, invariants, and scope fences before writing code. - Test-First Delivery: Reproduces the defect, implements the fix, adds regression coverage, and runs the repository's standing gates without weakening existing tests. - PR Automation: Creates an issue branch, commits coherently, and opens a PR stating the observable outcome with a Closes #N reference. - Use Case: A user points at issue #42 reporting a broken validation rule; the Skill reproduces the failure, fixes the code, adds a regression test, and opens a PR that closes the issue. ## Quick Start Ask the assistant to fix GitHub issue 42 and deliver it as a pull request using the kissue workflow.