AI Agent Skills for GitHub Issues management - 5 comprehensive skills for searching, lifecycle management, AI-powered operations, file search, and label management
npx claudepluginhub terrylica/claude-code-skills-github-issuesGitHub Issues management skills: search, lifecycle, AI ops, file search, labels
Purpose: Comprehensive operational guide for AI coding agents (Claude, Copilot, etc.) to manage engineering knowledge stored in GitHub Issues.
What This Repository IS:
What This Repository IS NOT:
Repository: https://github.com/terrylica/claude-code-skills-github-issues
Two installation methods available based on your needs:
Available across ALL your Claude Code sessions.
/plugin marketplace add terrylica/claude-code-skills-github-issues
/plugin install github-issues-operations@terrylica/claude-code-skills-github-issues
Verification: Run /plugin to confirm github-issues-operations is installed.
Available only in THIS project. Committed to git for team access.
git submodule add https://github.com/terrylica/claude-code-skills-github-issues.git .claude/plugins/github-issues
📖 Complete Installation Guide: See INSTALLATION.md for:
🤖 For AI Agents:
This repository documents operations for managing knowledge in GitHub Issues. The actual knowledge base lives in Issues. This is your operational manual.
Quick Start: See AI_AGENT_OPERATIONAL_GUIDE.md for complete tool selection decision trees and workflows.
This guide documents 5 categories of operations for AI agents managing knowledge in GitHub Issues:
Complete Details: See AI_AGENT_OPERATIONAL_GUIDE.md for full operation reference, tool selection decision trees, and empirically-tested workflows.
Install GitHub CLI extensions - See GITHUB_CLI_EXTENSIONS.md for installation instructions.
# Search issues with native GitHub CLI
gh search issues "authentication" --repo=terrylica/claude-code-skills-github-issues
# Search current repository
gh issue list --search "authentication"
# Filter by metadata
gh search issues --label=bug --state=open --assignee=@me
# Search files with regex (gh-grep extension)
gh grep "Bug.*critical" --owner terrylica --repo knowledgebase
# List available AI models
gh models list
# Get AI assistance
gh models run "openai/gpt-4.1" "Summarize this: $(gh issue view 123 --json body --jq .body)"