github-issues-do

Resolves GitHub issues by debugging bugs in isolated git worktrees.

Updated Jun 11, 2026
One-click install
npx skills add https://github.com/marcocpt/trae_skills --skill github-issues-do-marcocpt
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github-issues-do
Source: https://github.com/marcocpt/trae_skills/tree/main/github-issues-do
Command: npx skills add https://github.com/marcocpt/trae_skills --skill github-issues-do-marcocpt

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually triaging and fixing GitHub issues requires switching between the issue tracker, local branches, and debugging tools. This Skill automates the workflow of reading a specified GitHub issue and driving it toward resolution. ## Core Features & Use Cases - Issue Retrieval: Reads a specified GitHub issue using the GitHub CLI (gh). - Bug Workflow: For bug reports, creates an isolated git worktree, systematically debugs to locate the root cause, and runs test-driven development to implement the fix. - Use Case: A maintainer points the assistant at issue #42 describing a crash; the Skill reads the issue, spins up a worktree, diagnoses the bug, and develops a fix verified by tests. ## Quick Start Read GitHub issue number 42 from this repository and fix the bug it describes.

Frequently Asked Questions about github-issues-do

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automatically fix a GitHub issue with AI?

Provide the issue number or URL and the Skill reads it via the GitHub CLI. For bug reports, it creates a git worktree, systematically debugs the problem, and applies test-driven development to implement the fix.

What tools are needed to process GitHub issues from the command line?

This workflow uses the GitHub CLI (gh) to fetch issue content. It also relies on companion skills for git worktree creation, systematic debugging, and test-driven development.

Does this workflow handle non-bug GitHub issues?

The documented workflow explicitly covers bug-type issues with worktree creation, debugging, and test-driven fixing. Behavior for feature requests or other issue types is not defined in the Skill instructions.

Why use a git worktree when fixing GitHub issues?

A git worktree isolates the bug fix in a separate working directory without disturbing your current branch. This lets debugging and test-driven development proceed in parallel with other work.