community: add security and contribution health files - #283
Open
dgenio wants to merge 7 commits into
Open
Conversation
dgenio
marked this pull request as ready for review
August 11, 2026 06:12
There was a problem hiding this comment.
Pull request overview
Warning
Copilot couldn't run its full agentic review because it didn't start before the timeout. Make sure your repository has a runner available, or add a copilot-code-review.yml file specifying one with the runs-on attribute. See the docs for more details.
Adds community health and security reporting surfaces for a security-sensitive OSS repo, including private vulnerability reporting guidance and structured contribution templates.
Changes:
- Added
SECURITY.mdandCODE_OF_CONDUCT.mdwith reporting guidance and project expectations. - Added GitHub issue forms (bug + feature) and issue-template config with security contact links.
- Added a security-aware pull request template emphasizing contract/compatibility/test expectations.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| SECURITY.md | Defines supported versions, private vulnerability reporting flow, scope/non-goals, and response expectations |
| CODE_OF_CONDUCT.md | Establishes conduct expectations, scope, and reporting/enforcement approach |
| .github/pull_request_template.md | Adds PR checklist focused on security contract impact, compatibility, and validation |
| .github/ISSUE_TEMPLATE/feature_request.yml | Introduces structured feature proposal intake emphasizing evidence and scope |
| .github/ISSUE_TEMPLATE/bug_report.yml | Introduces structured bug intake and diverts suspected vulnerabilities to private reporting |
| .github/ISSUE_TEMPLATE/config.yml | Disables blank issues and adds contact links for private security reporting + contract reading |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+9
to
+13
| | Version | Security support | | ||
| | --- | --- | | ||
| | Latest published release | Supported | | ||
| | Current `main` / unreleased next version | Fixes developed here before release | | ||
| | Older published releases | Best effort; reporters may be asked to reproduce on the latest release | |
|
|
||
| Direct link when available: | ||
|
|
||
| `https://github.com/dgenio/agent-kernel/security/advisories/new` |
Comment on lines
+23
to
+31
| ## Reporting conduct concerns | ||
|
|
||
| Do not disclose sensitive conduct concerns through the vulnerability-reporting channel. GitHub Security Advisories are reserved for security vulnerabilities. | ||
|
|
||
| The project does not currently publish a dedicated private conduct mailbox. Until one exists: | ||
|
|
||
| - use GitHub's platform **Report abuse / Report content** mechanisms for harassment, threats, doxxing, discrimination, or other concerns that should be handled privately by the platform; | ||
| - for non-sensitive project-moderation concerns, a concise public issue/comment may be appropriate when the reporter is comfortable doing so; | ||
| - if the concern involves the repository maintainer, prefer GitHub's platform reporting route rather than asking that maintainer to privately adjudicate the complaint. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Progresses #144.
What changed
Adds the community-health surfaces that matter most for a security-sensitive OSS library:
SECURITY.mdCODE_OF_CONDUCT.mdI also curated existing open issues #215, #220 and #186 with the repo's existing
good-first-ai-issuelabel rather than inventing trivial contribution work.Why
A security library should not ask reporters to disclose vulnerabilities publicly, and an adoption-focused OSS repo should help contributors distinguish actionable problems from speculative platform expansion.
Deliberate limitations
good-first-ai-issuelabel because that label already exists; no new label-management surface is assumed.SECURITY.mdlinksdocs/versioning.md, so merge this after the stability-policy PR docs: define the pre-1.0 stability and deprecation contract #282.Validation
Repository metadata/docs only; no runtime code. CI should still validate repository formatting/link assumptions where configured.