Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/arbazkhan971/godmode --skill opensource명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Turn on Godmode. 135 skills, 7 subagents, zero configuration. Routes to the right skill automatically.
Backup and disaster recovery. backup strategy, disaster recovery, RPO/RTO, data integrity, durability, runbook.
Changelog and release notes management. Keep a Changelog format, Conventional Commits auto-generation, breaking change communication, migration guides, audience-specific notes.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | opensource |
| description | Open source project management. |
/godmode:opensource, "set up open source project"ls LICENSE CODE_OF_CONDUCT.md CONTRIBUTING.md \
SECURITY.md .github/ISSUE_TEMPLATE/ \
.github/PULL_REQUEST_TEMPLATE.md \
.github/CODEOWNERS 2>/dev/null
# Secrets audit
grep -rn "sk_\|password\|secret\|token\|api_key" \
--include="*.ts" --include="*.py" --include="*.env*" .
| File | Status | Quality |
| LICENSE | present/missing | valid SPDX? |
| CODE_OF_CONDUCT | present/missing | Covenant 2.1? |
| CONTRIBUTING | present/missing | setup verified? |
| SECURITY | present/missing | private reporting? |
| Issue templates | present/missing | YAML format? |
| PR template | present/missing | has checklist? |
| CODEOWNERS | present/missing | paths mapped? |
LICENSE: detect project goals, recommend license. CODE_OF_CONDUCT: Contributor Covenant 2.1. CONTRIBUTING: setup instructions, style guide, PR process, community links. SECURITY: private vulnerability reporting channel.
IF setup takes > 15 minutes: simplify. IF no license: code is "all rights reserved" by default.
# .github/ISSUE_TEMPLATE/bug_report.yml
# .github/ISSUE_TEMPLATE/feature_request.yml
# .github/ISSUE_TEMPLATE/config.yml
# blank_issues_enabled: false
# .github/PULL_REQUEST_TEMPLATE.md
ALWAYS disable blank issues (force structured templates).
# Auto-labeling: .github/workflows/labeler.yml
# Stale management: .github/workflows/stale.yml
# NEVER auto-close security or critical labels
# Welcome bot: .github/workflows/welcome.yml
# Release drafter: .github/workflows/release-drafter.yml
# CODEOWNERS: .github/CODEOWNERS
Discussions categories:
Announcements (maintainers), Q&A, Ideas, Show & Tell
Funding: .github/FUNDING.yml
Discord/Slack: #general, #help, #contributing, #releases
Triage: new issue -> label -> assign -> priority
SLA: first response < 48h
Review: PR opened -> auto-assign -> review < 48h
Release: determine scope -> changelog -> tag -> publish
Use --dry-run before actual release
Solo project: BDFL (benevolent dictator)
10+ contributors: consensus model
50+ contributors: steering committee
Match governance to project size.
IF governance mismatch: document and update.
Append .godmode/opensource.tsv:
timestamp action files_created health_score status
KEEP if: renders correctly, YAML validates,
links valid, health score improved.
DISCARD if: validation fails or links broken.
STOP when FIRST of:
- All critical files present (LICENSE, README,
CONTRIBUTING, CODE_OF_CONDUCT, SECURITY)
- Issue + PR templates configured
- No secrets found in repo
On failure: git reset --hard HEAD~1. Never pause.
| Failure | Action |
|---|---|
| License incompatibility | Audit deps with license-checker |
| CI fails for contributors | Check secrets not required for PRs |
| Spam PRs/issues | Add templates, enable auto-labeling |