chore: add community docs, workspace config, and gitignore gaps

- CODE_OF_CONDUCT.md (Contributor Covenant v2.1)
- SECURITY.md (responsible disclosure policy)
- pnpm-workspace.yaml stub for monorepo
- .gitignore: add .debug/ and *.tgz
- CONTRIBUTING.md: link to Code of Conduct

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
James
2026-03-10 04:23:12 +00:00
co-authored by Claude Opus 4.6
parent 598a3ebcb2
commit 85bf8adb9b
5 changed files with 73 additions and 1 deletions
+4
View File
@@ -22,10 +22,14 @@ Thumbs.db
# Test
coverage/
.debug/
# Rendered output (not test fixtures — those use git LFS)
output/
# npm pack artifacts
*.tgz
# Logs
*.log
npm-debug.log*
+40
View File
@@ -0,0 +1,40 @@
# Contributor Covenant Code of Conduct
## Our Pledge
We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
nationality, personal appearance, race, caste, color, religion, or sexual
identity and orientation.
## Our Standards
Examples of behavior that contributes to a positive environment:
- Using welcoming and inclusive language
- Being respectful of differing viewpoints and experiences
- Gracefully accepting constructive criticism
- Focusing on what is best for the community
- Showing empathy towards other community members
Examples of unacceptable behavior:
- The use of sexualized language or imagery, and sexual attention or advances of any kind
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information without explicit permission
- Other conduct which could reasonably be considered inappropriate in a professional setting
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the project maintainers at **oss@heygen.com**. All complaints will
be reviewed and investigated promptly and fairly.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org/),
version 2.1, available at
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html](https://www.contributor-covenant.org/version/2/1/code_of_conduct.html).
+1 -1
View File
@@ -19,7 +19,7 @@ Thanks for your interest in contributing to Hyperframes! This guide will help yo
## Code of Conduct
Be respectful. We're building something together.
This project follows the [Contributor Covenant Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.
## License
+26
View File
@@ -0,0 +1,26 @@
# Security Policy
## Reporting a Vulnerability
If you discover a security vulnerability in Hyperframes, please report it responsibly.
**Do not open a public GitHub issue for security vulnerabilities.**
Instead, email **security@heygen.com** with:
- A description of the vulnerability
- Steps to reproduce
- Potential impact
- Suggested fix (if any)
We will acknowledge receipt within 48 hours and aim to provide a fix or mitigation plan within 7 days.
## Supported Versions
| Version | Supported |
|---------|-----------|
| 0.x | Yes |
## Scope
This policy applies to all packages in the `@hyperframes/*` npm scope and the code in this repository.
+2
View File
@@ -0,0 +1,2 @@
packages:
- "packages/*"