Add community health files to meet GitHub Community Standards#4
Conversation
Adds the standard open-source community files so the repo can be opened up: - LICENSE (MIT) - CODE_OF_CONDUCT.md (Contributor Covenant 2.1) - CONTRIBUTING.md - SECURITY.md (private vulnerability reporting; covers token handling) - .github/ISSUE_TEMPLATE/ (bug report, feature request, config) - .github/PULL_REQUEST_TEMPLATE.md - package.json: declare "license": "MIT" Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (9)
📝 WalkthroughWalkthroughThis PR establishes the project's complete community and contributor governance structure by adding issue/PR templates that guide submissions, a Code of Conduct and contribution guidelines for community participation, a security policy for vulnerability reporting, MIT licensing, and package metadata. No code logic changes. ChangesCommunity Governance and Contributor Documentation
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~5 minutes Poem
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Pull request overview
Adds standard community health files (license, security policy, code of conduct, contribution guidelines, PR/issue templates) so the repository meets GitHub Community Standards and is ready for broader collaboration.
Changes:
- Introduces
LICENSE(MIT) and sets"license": "MIT"inpackage.json. - Adds contributor-facing policy/docs:
SECURITY.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md. - Adds GitHub contribution UX files: PR template and issue templates (bug/feature/config).
Reviewed changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
SECURITY.md |
Defines supported versions and private vulnerability reporting; documents token-handling scope. |
package.json |
Declares project license as MIT. |
LICENSE |
Adds MIT license text and copyright notice. |
CONTRIBUTING.md |
Provides setup, workflow, layout notes, and security handling guidance for contributors. |
CODE_OF_CONDUCT.md |
Adds Contributor Covenant-based code of conduct and reporting contact. |
.github/PULL_REQUEST_TEMPLATE.md |
Adds PR checklist and testing expectations. |
.github/ISSUE_TEMPLATE/feature_request.yml |
Adds structured feature/new-mode request template. |
.github/ISSUE_TEMPLATE/config.yml |
Disables blank issues and adds security/discussion contact links. |
.github/ISSUE_TEMPLATE/bug_report.yml |
Adds structured bug report template with mode/environment prompts. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
What does this PR do?
Adds the standard open-source community health files so the repo meets GitHub's Community Standards and can be opened up.
"license": "MIT"Notes
"private": trueleft inpackage.jsonon purpose — it only prevents accidental npm publish, not GitHub visibility.🤖 Generated with Claude Code
Summary by CodeRabbit
Documentation
Chores