-
-
Notifications
You must be signed in to change notification settings - Fork 718
Draft: Docs/governance #2307
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
woutervroege
wants to merge
13
commits into
main
Choose a base branch
from
docs/governance
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Draft: Docs/governance #2307
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
2d321ff
docs: add MISSION.md
woutervroege 6bfa911
docs: add GOVERNANCE.md
woutervroege 9797448
docs: add HOW_WORK_FLOWS.md
woutervroege 2a1d23a
docs: add MEMBERS.md
woutervroege a41b516
docs: add CODE_OF_CONDUCT.md
woutervroege 9dbde7d
docs: add BUGS.md
woutervroege e2d375a
docs: add RFC_PROCESS.md
woutervroege 84094b7
docs: add RFC_TEMPLATE.md
woutervroege 33aecd6
docs: add TEAM_OPERATIONS.md
woutervroege 0ef80de
docs: Add pre-code contributions section to CONTRUBUTIONS.md
woutervroege 3a488ff
docs: iterating docs and creating cross links
woutervroege c517ca0
docs: cross-linking
woutervroege 24205a7
Merge branch 'main' into docs/governance
woutervroege File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
docs: add RFC_PROCESS.md
- Loading branch information
commit e2d375a84ec2e668144ad8bc20e79ac554526a6c
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,91 @@ | ||
| # Request for Comments (RFC) Process | ||
|
|
||
| This document describes how significant technical changes are proposed, discussed, and decided using the RFC (Request for Comments) process. | ||
|
|
||
| RFCs are intentionally higher-effort than informal ideas. They are required only when a change is ready for formal consideration and decision. | ||
|
|
||
| Early ideas, explorations, and feedback should be shared informally before committing to an RFC. | ||
|
|
||
| --- | ||
|
|
||
| ## **What Requires an RFC** | ||
|
|
||
| An RFC is required for changes that: | ||
|
|
||
| - Affect core behavior or public APIs | ||
| - Introduce new core concepts or abstractions | ||
| - Set long-term technical precedent | ||
| - Have broad impact across users, integrations, or deployments | ||
|
|
||
| Not all ideas require an RFC. See **How Work Flows** for guidance on early idea sharing and triage. | ||
|
|
||
| --- | ||
|
|
||
| ## **Who Can Propose an RFC** | ||
|
|
||
| Anyone may propose an RFC, including: | ||
|
|
||
| - Community contributors | ||
| - Maintainers | ||
| - Product | ||
| - Members of the TSC | ||
|
|
||
| --- | ||
|
|
||
| ## **RFC Champion** | ||
|
|
||
| An RFC is expected to have a **champion** once it is ready for formal consideration. | ||
|
|
||
| The champion may be the original author or another volunteer. Their responsibility is to: | ||
|
|
||
| - Drive the RFC forward | ||
| - Incorporate feedback | ||
| - Clarify trade-offs and open questions | ||
|
|
||
| Champions do not have decision-making authority. Maintainers and the TSC are expected to support first-time champions. | ||
|
|
||
| --- | ||
|
|
||
| ## **RFC Lifecycle** | ||
|
|
||
| ### **Draft & Discussion** | ||
|
|
||
| - RFCs are created using the RFC template | ||
| - Discussion happens openly | ||
| - RFCs may evolve during discussion and early prototyping | ||
|
|
||
| --- | ||
|
|
||
| ### **Decision** | ||
|
|
||
| The Technical Steering Committee (TSC) is responsible for RFC decisions. | ||
|
|
||
| An RFC may be: | ||
|
|
||
| - **Accepted:** the proposed approach is technically acceptable | ||
| - **Rejected:** the approach should not proceed in its current form | ||
| - **Revision Requested:** further work or clarification is needed | ||
|
|
||
| Decisions are recorded publicly with a clear rationale. | ||
|
|
||
| --- | ||
|
|
||
| ## **From Accepted RFC to Implementation** | ||
|
|
||
| Once an RFC is accepted, responsibility transitions from governance to execution. | ||
|
|
||
| - The **TSC** confirms that the proposed approach is technically acceptable and records the decision. | ||
| - **Product** determines whether, when, and how the accepted RFC is translated into delivery work, based on priorities and available capacity. | ||
| - **Engineering** owns implementation details within the scope of the accepted RFC. | ||
| - **Maintainers** review implementation for correctness, quality, and alignment with the accepted decision. | ||
|
|
||
| Acceptance of an RFC does **not** imply prioritization, scheduling, or a delivery commitment. | ||
|
|
||
| --- | ||
|
|
||
| ## **Guiding Principles** | ||
|
|
||
| - RFCs exist to clarify decisions, not to block progress | ||
| - Escalate decision-making with impact | ||
| - Keep RFCs lightweight and focused | ||
| - Prefer early discussion over late surprises | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it needed to have both "author" and "champion"? seems overkill. What about a single "Owner" role?