con un clic
git-opensource
Git workflows, GitHub management, and open source community building
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Git workflows, GitHub management, and open source community building
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Developer relations career development, growth paths, and professional advancement
Effective communication strategies for developer audiences across channels
Building and nurturing thriving developer communities
Creating compelling technical content for developer audiences
Planning and executing developer events, conferences, and meetups
Measuring and demonstrating DevRel impact through data and analytics
| name | git-opensource |
| description | Git workflows, GitHub management, and open source community building |
| sasmp_version | 1.4.0 |
| version | 2.0.0 |
| updated | 2025-01 |
| bonded_agent | 02-community-builder |
| bond_type | SECONDARY_BOND |
Manage 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.