Skip to content

Commit 62da93d

Browse files
morph-eosclaude
andcommitted
web: governance links and proposals point at the home, not shotgate
- governance panel links to the org-level GOVERNANCE/MAINTAINERS/ CONTRIBUTING in coldqubit/.github instead of shotgate's project-scoped files - 'Propose a project' opens the project-proposal issue form on the .github repository (product trackers are scoped to product bugs and features) - maintainers stat now parses the home roster in the org's MAINTAINERS.md Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent ca927e3 commit 62da93d

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@ <h2>One home, growing into an ecosystem.</h2>
119119
<div class="proj-role">planned</div>
120120
</div>
121121
</div>
122-
<p class="proj-desc">The gap between a runnable circuit and production is wider than one tool: scheduling, observability, policy, cost. If you want to build one of those layers in the open, start the conversation with an issue.</p>
122+
<p class="proj-desc">The gap between a runnable circuit and production is wider than one tool: scheduling, observability, policy, cost. If you want to build one of those layers in the open, there is a proposal form at the project home, and no working code is required to use it.</p>
123123
<div class="proj-links">
124-
<a class="plink" href="https://github.com/coldqubit/shotgate/issues">Propose a project <span class="arr"></span></a>
124+
<a class="plink" href="https://github.com/coldqubit/.github/issues/new?template=project-proposal.yml">Propose a project <span class="arr"></span></a>
125125
</div>
126126
</div>
127127
</div>
@@ -136,14 +136,14 @@ <h2>One home, growing into an ecosystem.</h2>
136136
<h3>One maintainer today, structured to grow.</h3>
137137
<p>coldqubit is an independent, open-source project home for quantum tooling, not a company and not a one-person hobby. It is built so that no decision depends on any one person staying available.</p>
138138
<ul class="glist">
139-
<li><span class="arr"></span><span>Routine changes land by lazy consensus; substantial or hard-to-reverse changes are recorded as Architecture Decision Records.</span></li>
140-
<li><span class="arr"></span><span>Co-maintainers are welcome, including for a single area such as a backend, the Terraform module, or the docs.</span></li>
141-
<li><span class="arr"></span><span>Container-first reproducibility and written governance keep the project legible to new contributors.</span></li>
139+
<li><span class="arr"></span><span>Routine changes land by lazy consensus; substantial or hard-to-reverse changes are written down before they happen, org-scoped ones at the home, project-scoped ones as ADRs in the project.</span></li>
140+
<li><span class="arr"></span><span>New projects start as a proposal issue at the home; every project commits to the same shared standards.</span></li>
141+
<li><span class="arr"></span><span>Co-maintainers are welcome at every level, including for a single area such as a backend, the Terraform module, or the docs.</span></li>
142142
</ul>
143143
<div class="panel-links">
144-
<a class="plink" href="https://github.com/coldqubit/shotgate/blob/main/GOVERNANCE.md">Governance <span class="arr"></span></a>
145-
<a class="plink" href="https://github.com/coldqubit/shotgate/blob/main/MAINTAINERS.md">Maintainers <span class="arr"></span></a>
146-
<a class="plink" href="https://github.com/coldqubit/shotgate/blob/main/CONTRIBUTING.md">Contributing <span class="arr"></span></a>
144+
<a class="plink" href="https://github.com/coldqubit/.github/blob/main/GOVERNANCE.md">Governance <span class="arr"></span></a>
145+
<a class="plink" href="https://github.com/coldqubit/.github/blob/main/MAINTAINERS.md">Maintainers <span class="arr"></span></a>
146+
<a class="plink" href="https://github.com/coldqubit/.github/blob/main/CONTRIBUTING.md">Contributing <span class="arr"></span></a>
147147
</div>
148148
</div>
149149

js/site.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@
5252
set('s-projects-sub', names + ' · more planned');
5353
}).catch(function () {});
5454

55-
// Maintainers: count the rows of the "Current maintainers" table in
56-
// shotgate's MAINTAINERS.md, the project's source of truth for the roster.
57-
cached('https://raw.githubusercontent.com/' + ORG + '/shotgate/main/MAINTAINERS.md', true).then(function (md) {
58-
var section = md.split(/^## Current maintainers/m)[1];
55+
// Maintainers: count the rows of the "Home maintainers" table in the org's
56+
// MAINTAINERS.md (the .github repo), the home's source of truth.
57+
cached('https://raw.githubusercontent.com/' + ORG + '/.github/main/MAINTAINERS.md', true).then(function (md) {
58+
var section = md.split(/^## Home maintainers/m)[1];
5959
if (!section) return;
6060
section = section.split(/^## /m)[0];
6161
var rows = section.split('\n').filter(function (l) {

0 commit comments

Comments
 (0)