skills/github-project/— Skill definition (SKILL.md), checkpoints, evalsskills/github-project/references/— Detailed reference docs (merge strategy, sub-issues, branch migration, etc.)skills/github-project/assets/— Templates (auto-merge workflows, PR templates, CODEOWNERS, etc.)skills/github-project/scripts/—verify-github-project.shverification script.github/workflows/— CI (lint, release, auto-merge-deps).claude-plugin/— Plugin manifest for Claude Code marketplaceBuild/— Build scripts and git hooksdocs/— Architecture and execution plans
This skill covers GitHub platform configuration only:
- Branch protection rules and GitHub Rulesets
- CODEOWNERS configuration
- GitHub Issues, Discussions, Projects, sub-issues
- Dependabot/Renovate auto-merge (including merge queue GraphQL)
- PR review thread resolution (GraphQL API)
- Repository settings and release configuration
- Master-to-main branch migration
Delegated to other skills:
- CI/CD pipelines:
go-development,php-modernization,typo3-testing - Security scanning (CodeQL, gosec):
security-audit - SLSA, SBOMs, supply chain:
enterprise-readiness - Git branching, conventional commits:
git-workflow
# Lint (CI uses reusable workflow from skill-repo-skill)
# No local lint target — validation runs in GitHub Actions
# Verify a target repo's GitHub project setup
./skills/github-project/scripts/verify-github-project.sh /path/to/repo
# Check plugin version consistency
./Build/Scripts/check-plugin-version.sh- Auto-merge has three variants: branch-protection (
--auto), merge-queue (GraphQLenqueuePullRequest), direct (no protection) - PR thread resolution requires GraphQL API —
ghCLI does not support it - Rulesets
allowed_merge_methodsmust match repo-level merge settings - Sub-issues use GraphQL
addSubIssuemutation (up to 8 levels, 100 per parent)
skills/github-project/references/auto-merge-guide.md— Auto-merge setup patternsskills/github-project/references/merge-strategy.md— Merge method alignmentskills/github-project/references/sub-issues.md— Sub-issues GraphQL APIskills/github-project/references/branch-migration.md— Master to main migrationskills/github-project/references/repository-structure.md— Standard repo layoutskills/github-project/references/dependency-management.md— Dependabot/Renovate configskills/github-project/references/gh-cli-reference.md— GitHub CLI patternsskills/github-project/references/actionlint-guide.md— Workflow lintingskills/github-project/references/pr-commit-cleanup.md— PR commit hygieneskills/github-project/references/reusable-workflow-security.md— Workflow securityskills/github-project/references/security-config.md— Security configurationskills/github-project/references/org-security-settings.md— Org-level securityskills/github-project/references/tag-validation.md— Tag validationskills/github-project/references/release-labeling.md— Release label automationskills/github-project/references/repo-setup-guide.md— Repository setup guidedocs/ARCHITECTURE.md— Architecture overview