GitHub repository setup and configuration. This skill should be used when creating new GitHub repositories, configuring branch protection or rulesets, setting up CODEOWNERS, or troubleshooting PR merge issues. By Netresearch.
/plugin marketplace add netresearch/claude-code-marketplace/plugin install netresearch-skills-bundle@netresearch-claude-code-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
LICENSEREADME.mdcomposer.jsonreferences/branch-migration.mdreferences/dependency-management.mdreferences/repository-structure.mdreferences/sub-issues.mdscripts/verify-github-project.shtemplates/CODEOWNERS.templatetemplates/CONTRIBUTING.md.templatetemplates/PULL_REQUEST_TEMPLATE.md.templatetemplates/SECURITY.md.templatetemplates/auto-merge-direct.yml.templatetemplates/auto-merge-queue.yml.templatetemplates/auto-merge.yml.templatetemplates/bug_report.md.templatetemplates/dependabot.yml.templatetemplates/feature_request.md.templatetemplates/renovate.json.templateFor workflows, CLI commands, templates, and troubleshooting guides, see README.md.
Key references:
references/repository-structure.md - Standard repo layoutreferences/sub-issues.md - Sub-issues GraphQL APIreferences/dependency-management.md - Dependabot/Renovate configurationtemplates/ - Auto-merge workflow templatesFor Go projects, ensure these GitHub configurations:
| Setting | Purpose | How |
|---|---|---|
| Branch protection | Require tests pass before merge | Branch settings or Rulesets |
| Dependabot/Renovate | Automated dependency updates | .github/dependabot.yml or renovate.json |
| Auto-merge workflow | Merge minor/patch updates automatically | templates/auto-merge*.yml |
| Required checks | CI workflow names in branch protection | Match exact workflow job names |
For CI/CD workflow content (test, lint, build), see go-development skill.
For security workflows (Scorecard, CodeQL, SLSA), see enterprise-readiness skill.
| Skill | Purpose |
|---|---|
go-development | Go code patterns, Makefile interface, testing, linting |
enterprise-readiness | OpenSSF Scorecard, SLSA provenance, signed releases |
git-workflow | Git branching strategies, conventional commits |
security-audit | Deep security audits (OWASP, CVE analysis) |