npx claudepluginhub utakatakyosui/c2lab --plugin ghThis skill uses the workspace's default tool permissions.
guides/issue-release.mdguides/pr-workflow.mdDesigns and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Implements structured self-debugging workflow for AI agent failures: capture errors, diagnose patterns like loops or context overflow, apply contained recoveries, and generate introspection reports.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
gh は GitHub の公式 CLI ツールです。ブラウザを開かずにターミナルから PR・Issue・リリース・ワークフローを操作できます。
詳細な情報は以下のファイルに分割されています。必要に応じて参照してください。
# ブラウザ経由でログイン(推奨)
gh auth login
# トークンでログイン(CI 環境向け)
gh auth login --with-token <<< "$GITHUB_TOKEN"
# 認証状態を確認
gh auth status
# ログアウト
gh auth logout
# 複数アカウントの切り替え(v2.40+)
gh auth switch
# Issue を検索
gh search issues "memory leak" --repo owner/repo
gh search issues --assignee @me --state open
# PR を検索
gh search prs "fix: auth" --state merged --limit 10
# コードを検索
gh search code "TODO" --repo owner/repo
# レポジトリを検索
gh search repos "mise plugin" --language shell --sort stars
# PR
gh pr create --title "..." --body "..."
gh pr list
gh pr view <number>
gh pr merge <number>
# Issue
gh issue create --title "..."
gh issue list
gh issue close <number>
# リリース
gh release create v1.0.0 --title "v1.0.0" --notes "..."
gh release list
# ワークフロー
gh run list
gh run view <run-id>