Git workflows, GitHub management, and open source community building
Manages GitHub repositories and open source communities by handling repository setup, issue triage, PR reviews, releases, and community building workflows. Triggers when you need to create repos, review contributions, manage releases, or grow an open source project.
/plugin marketplace add pluginagentmarketplace/custom-plugin-devrel-engineer/plugin install devrel-engineer-plugin@pluginagentmarketplace-devrel-engineerThis skill inherits all available tools. When active, it can use any tool Claude has access to.
assets/github-templates.yamlreferences/OSS_GUIDE.mdscripts/oss_health.pyManage GitHub repositories and build open source communities.
parameters:
required:
- task_type: enum[repo_setup, issue_triage, pr_review, release, community]
- repository: string
optional:
- priority: enum[low, medium, high, critical]
- labels: array[string]
output:
result:
actions_taken: array[string]
status: enum[completed, pending, escalated]
next_steps: array[Action]
Repository
├── README.md # First impression
├── CONTRIBUTING.md # How to contribute
├── CODE_OF_CONDUCT.md # Community standards
├── LICENSE # Usage rights
├── .github/
│ ├── ISSUE_TEMPLATE/ # Issue templates
│ ├── PULL_REQUEST_TEMPLATE.md
│ └── workflows/ # CI/CD
└── docs/ # Documentation
| Label | Purpose | Color |
|---|---|---|
| bug | Something broken | red |
| enhancement | New feature | blue |
| good first issue | Beginner friendly | green |
| help wanted | Need contributors | yellow |
| documentation | Docs related | purple |
New Issue → Label → Prioritize → Assign → Track
↓ ↓ ↓ ↓ ↓
Template Category Severity Owner Milestone
Star → Issue → Discussion → PR → Maintainer
↓ ↓ ↓ ↓ ↓
Watch Report Engage Contribute Lead
Discussions
├── Announcements # Official news
├── Q&A # Support questions
├── Ideas # Feature requests
├── Show and Tell # Community projects
└── General # Everything else
MAJOR.MINOR.PATCH
1.0.0 → 1.0.1 # Bug fix
1.0.1 → 1.1.0 # New feature
1.1.0 → 2.0.0 # Breaking change
## [1.2.0] - 2024-01-15
### Added
- New authentication method
### Changed
- Improved error messages
### Fixed
- Rate limiting issue (#123)
| Metric | Meaning |
|---|---|
| Stars | Interest |
| Forks | Intent to use/contribute |
| Issues open/closed | Health |
| PR velocity | Activity |
| Contributors | Community size |
retry_patterns:
stale_issues:
strategy: "Ping author, close if no response"
timeout: 14d
failed_ci:
strategy: "Identify flaky tests, rerun"
max_retries: 2
merge_conflicts:
strategy: "Rebase on main, resolve"
fallback: "Request author update"
| Failure Mode | Detection | Recovery |
|---|---|---|
| PR backlog | Growing queue | Triage sprint |
| Inactive contributors | No recent activity | Re-engage or remove |
| CI failures | Red builds | Fix or skip flaky |
□ README clear and current?
□ Contributing guide complete?
□ Issue templates working?
□ CI/CD pipeline healthy?
□ Labels organized?
□ Milestones up to date?
test_git_opensource:
unit_tests:
- test_repo_structure:
assert: "All required files present"
- test_ci_pipeline:
assert: "Builds pass on main"
integration_tests:
- test_contribution_flow:
assert: "Fork-clone-PR works"
metrics:
- issues_closed: integer
- prs_merged: integer
- contributor_count: integer
- response_time_avg: duration
See assets/ for GitHub templates.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.