|
| 1 | +# Governance |
| 2 | + |
| 3 | +This document describes how the httptap project is organized, who makes |
| 4 | +decisions, and how those decisions are made. It is intentionally minimal and |
| 5 | +reflects the project's current scale: a small open-source utility maintained |
| 6 | +primarily by a single person. |
| 7 | + |
| 8 | +If the project grows, this document will be updated accordingly — proposals |
| 9 | +to amend governance are themselves accepted as pull requests against this |
| 10 | +file. |
| 11 | + |
| 12 | +## Project Type |
| 13 | + |
| 14 | +httptap is an independent open-source project distributed under the |
| 15 | +[Apache License 2.0](LICENSE). It is not currently part of any foundation, |
| 16 | +company, or consortium. |
| 17 | + |
| 18 | +## Roles |
| 19 | + |
| 20 | +### Maintainer |
| 21 | + |
| 22 | +The maintainer is responsible for the long-term direction of the project, |
| 23 | +has write access to the repository, and is accountable for releases. |
| 24 | + |
| 25 | +- **Current maintainer:** Sergei Ozeranskii |
| 26 | + ([@ozeranskii](https://github.com/ozeranskii)) |
| 27 | + |
| 28 | +Responsibilities: |
| 29 | + |
| 30 | +- Triage issues and pull requests. |
| 31 | +- Review, approve, and merge contributions. |
| 32 | +- Cut releases and publish to PyPI. |
| 33 | +- Respond to vulnerability reports per [SECURITY.md](SECURITY.md). |
| 34 | +- Keep [ROADMAP.md](ROADMAP.md) and project documentation current. |
| 35 | +- Enforce the [Code of Conduct](CODE_OF_CONDUCT.md). |
| 36 | + |
| 37 | +### Reviewer |
| 38 | + |
| 39 | +Reviewers are trusted contributors who review pull requests on behalf of the |
| 40 | +maintainer. Reviewers do **not** have write access; their reviews are |
| 41 | +advisory and must still be accepted by the maintainer before merge. |
| 42 | + |
| 43 | +The project currently has no formal reviewers beyond the maintainer. |
| 44 | +Candidates are invited after a sustained track record of high-quality |
| 45 | +contributions. |
| 46 | + |
| 47 | +### Contributor |
| 48 | + |
| 49 | +Anyone who submits an issue, pull request, or documentation improvement. |
| 50 | +Contribution requirements are documented in |
| 51 | +[CONTRIBUTING.md](CONTRIBUTING.md). |
| 52 | + |
| 53 | +## Decision Making |
| 54 | + |
| 55 | +The project uses a **benevolent dictator for life (BDFL)** model: the |
| 56 | +maintainer has final say on all changes. In practice, most decisions are |
| 57 | +consensus-driven through pull request review, and disagreements are |
| 58 | +resolved by public discussion on GitHub. |
| 59 | + |
| 60 | +- **Day-to-day changes** (bug fixes, documentation, minor features): merged |
| 61 | + once the maintainer approves the pull request and CI passes. |
| 62 | +- **Significant changes** (new public API, breaking changes, dependency |
| 63 | + additions): discussed in a GitHub issue before implementation. |
| 64 | +- **Scope changes** (items moving in or out of [ROADMAP.md](ROADMAP.md)): |
| 65 | + decided by the maintainer after community feedback on the relevant issue. |
| 66 | +- **Governance changes** (this file, CODE_OF_CONDUCT, SECURITY, LICENSE): |
| 67 | + require explicit maintainer approval of a pull request. |
| 68 | + |
| 69 | +## Contribution Process |
| 70 | + |
| 71 | +See [CONTRIBUTING.md](CONTRIBUTING.md). In short: |
| 72 | + |
| 73 | +1. Open or comment on an issue to signal intent for non-trivial work. |
| 74 | +2. Fork the repository and submit a pull request from a feature branch. |
| 75 | +3. Ensure `uv run pre-commit run --all-files` and `uv run pytest` pass. |
| 76 | +4. Address review feedback; the maintainer merges when ready. |
| 77 | + |
| 78 | +Contributions are accepted under the inbound=outbound licensing model |
| 79 | +(Apache-2.0 for code, CC-BY-4.0 for documentation); no separate Contributor |
| 80 | +License Agreement (CLA) is required. |
| 81 | + |
| 82 | +## Releases |
| 83 | + |
| 84 | +Releases are cut by the maintainer using the automated release workflow in |
| 85 | +[`.github/workflows/release.yml`](.github/workflows/release.yml). |
| 86 | + |
| 87 | +- **Cadence:** as-needed, typically every 2–6 weeks. |
| 88 | +- **Versioning:** [Semantic Versioning 2.0.0](https://semver.org). |
| 89 | +- **Channel:** [PyPI](https://pypi.org/project/httptap/) via OIDC Trusted |
| 90 | + Publishing (no long-lived API tokens). |
| 91 | +- **Supply chain:** releases are signed with Sigstore keyless signing and |
| 92 | + ship SLSA v1.0 build provenance attestations via |
| 93 | + `actions/attest-build-provenance`. |
| 94 | +- **Supported versions:** see [SECURITY.md](SECURITY.md). |
| 95 | + |
| 96 | +## Continuity |
| 97 | + |
| 98 | +To ensure the project can continue with minimal interruption if the current |
| 99 | +maintainer becomes unavailable: |
| 100 | + |
| 101 | +- **Source code** is mirrored to every contributor's fork and to PyPI sdist; |
| 102 | + the repository can be forked and continued by anyone under Apache-2.0. |
| 103 | +- **Release infrastructure** relies on GitHub-native OIDC Trusted Publishing |
| 104 | + rather than long-lived secrets; a new maintainer with PyPI project |
| 105 | + ownership can continue releases without any key handoff. |
| 106 | +- **PyPI project ownership** can be recovered via PyPI's account recovery |
| 107 | + process (maintainer recovery email is on file with PyPI). |
| 108 | +- **Domain** (`httptap.dev`) and GitHub account recovery are covered by the |
| 109 | + maintainer's personal credential inheritance plan. |
| 110 | +- **Issue trackers and discussions** continue to work on GitHub without |
| 111 | + maintainer action. |
| 112 | + |
| 113 | +In the event of prolonged maintainer absence (>30 days with no response), |
| 114 | +the community is encouraged to fork the project under Apache-2.0 and |
| 115 | +self-organize. Such a fork may request transfer of the `httptap` PyPI name |
| 116 | +from the PyPI administrators if the original project is abandoned. |
| 117 | + |
| 118 | +## Code of Conduct |
| 119 | + |
| 120 | +All participants — maintainer, reviewers, contributors, and commenters — |
| 121 | +are expected to follow the [Code of Conduct](CODE_OF_CONDUCT.md). |
| 122 | + |
| 123 | +## Security Reporting |
| 124 | + |
| 125 | +Vulnerabilities are reported privately via GitHub Security Advisories, as |
| 126 | +documented in [SECURITY.md](SECURITY.md). Public issue reports for |
| 127 | +security-sensitive bugs are discouraged. |
| 128 | + |
| 129 | +## Amending This Document |
| 130 | + |
| 131 | +Open a pull request. Non-trivial changes to governance should be discussed |
| 132 | +in an issue first so the community can weigh in. |
0 commit comments