@pulse-compute/cli 0.0.0 → 1.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/API.md +572 -0
- package/CHANGELOG.md +71 -0
- package/README.md +71 -1
- package/bin/pulse.js +15 -0
- package/bin/pulsewasm-extract.js +22 -0
- package/cli-spec.json +575 -0
- package/completions/_pulse +106 -0
- package/completions/pulse.bash +31 -0
- package/completions/pulse.fish +76 -0
- package/docs/README.md +77 -0
- package/docs/architecture/current-contracts.md +470 -0
- package/docs/architecture/overview.md +93 -0
- package/docs/architecture/vision.md +515 -0
- package/docs/concepts/bodies.md +186 -0
- package/docs/concepts/compilation-and-lowering.md +496 -0
- package/docs/concepts/contracts-and-providers.md +158 -0
- package/docs/concepts/effects-and-continuations.md +300 -0
- package/docs/concepts/entities-and-adapters.md +71 -0
- package/docs/concepts/package-owned-lowering.md +175 -0
- package/docs/concepts/targets-and-hosts.md +70 -0
- package/docs/contributing/README.md +38 -0
- package/docs/contributing/adding-core-provider.md +315 -0
- package/docs/contributing/adding-first-party-lowerer.md +327 -0
- package/docs/contributing/entities-lowering.md +91 -0
- package/docs/contributing/package-lowerer-contract.md +383 -0
- package/docs/contributing/pulse-aware-packages.md +149 -0
- package/docs/examples.md +112 -0
- package/docs/fixtures/inspect-fetch-composition.selected.json +181 -0
- package/docs/getting-started.md +128 -0
- package/docs/guides/compatibility-imports.md +60 -0
- package/docs/guides/deploying-fastly.md +188 -0
- package/docs/guides/deploying-node.md +143 -0
- package/docs/guides/events.md +233 -0
- package/docs/guides/fastly-capabilities.md +153 -0
- package/docs/guides/fetching-and-composition.md +101 -0
- package/docs/guides/grip.md +94 -0
- package/docs/guides/json-schemas.md +233 -0
- package/docs/guides/migrating-from-express.md +192 -0
- package/docs/guides/project-lifecycle.md +143 -0
- package/docs/guides/routing.md +202 -0
- package/docs/guides/troubleshooting.md +47 -0
- package/docs/maintainers/README.md +60 -0
- package/docs/maintainers/codex-maintainer.md +71 -0
- package/docs/maintainers/documentation-deployment.md +147 -0
- package/docs/maintainers/documentation-system.md +58 -0
- package/docs/maintainers/documentation-versioning.md +65 -0
- package/docs/maintainers/maintainer-charter.md +100 -0
- package/docs/maintainers/maintenance-policy.json +809 -0
- package/docs/maintainers/maintenance-policy.md +124 -0
- package/docs/maintainers/npm-publishing.md +154 -0
- package/docs/maintainers/plugin-readiness.json +19 -0
- package/docs/maintainers/plugin-readiness.md +31 -0
- package/docs/maintainers/public-site.md +158 -0
- package/docs/maintainers/release-acceptance.md +293 -0
- package/docs/maintainers/release-manifest.md +89 -0
- package/docs/maintainers/repository-setup.md +145 -0
- package/docs/maintainers/scope-policy.md +105 -0
- package/docs/maintainers/support-and-triage.md +74 -0
- package/docs/maintainers/testing.md +334 -0
- package/docs/packages/README.md +60 -0
- package/docs/packages/assets.md +85 -0
- package/docs/packages/cli.md +190 -0
- package/docs/packages/crypto.md +78 -0
- package/docs/packages/entities.md +129 -0
- package/docs/packages/grip.md +82 -0
- package/docs/packages/implementation-packages.md +122 -0
- package/docs/packages/jwt.md +55 -0
- package/docs/packages/provider-fastly.md +243 -0
- package/docs/packages/pulse.md +159 -0
- package/docs/packages/runtime.md +265 -0
- package/docs/packages/s3.md +101 -0
- package/docs/preview-scope.md +142 -0
- package/docs/reference/README.md +33 -0
- package/docs/reference/cli-spec.json +575 -0
- package/docs/reference/cli.md +457 -0
- package/docs/reference/compatibility-matrix.md +169 -0
- package/docs/reference/diagnostics.md +1872 -0
- package/docs/reference/documentation-versions.json +22 -0
- package/docs/reference/environment.md +347 -0
- package/docs/reference/handler-authoring.md +264 -0
- package/docs/reference/project-config.md +582 -0
- package/docs/reference/project-config.schema.json +981 -0
- package/docs/reference/release-manifest.json +441 -0
- package/docs/reference/shell-completion.md +23 -0
- package/documentation-site.json +668 -0
- package/documentation-versions.json +22 -0
- package/examples/01-hello-json/.pulse/.gitignore +3 -0
- package/examples/01-hello-json/.pulse/config.ts +16 -0
- package/examples/01-hello-json/README.md +119 -0
- package/examples/01-hello-json/package.json +20 -0
- package/examples/01-hello-json/src/index.ts +9 -0
- package/examples/01-hello-json/tests/pulse.harness.ts +22 -0
- package/examples/01-hello-json/tsconfig.json +14 -0
- package/examples/02-request-schema/.pulse/.gitignore +3 -0
- package/examples/02-request-schema/.pulse/config.ts +17 -0
- package/examples/02-request-schema/README.md +145 -0
- package/examples/02-request-schema/package.json +20 -0
- package/examples/02-request-schema/src/index.ts +18 -0
- package/examples/02-request-schema/src/schemas.ts +20 -0
- package/examples/02-request-schema/tests/pulse.harness.ts +37 -0
- package/examples/02-request-schema/tsconfig.json +14 -0
- package/examples/03-fetch-composition/.pulse/.gitignore +3 -0
- package/examples/03-fetch-composition/.pulse/config.ts +31 -0
- package/examples/03-fetch-composition/README.md +210 -0
- package/examples/03-fetch-composition/package.json +20 -0
- package/examples/03-fetch-composition/src/index.ts +60 -0
- package/examples/03-fetch-composition/tests/pulse.harness.ts +47 -0
- package/examples/03-fetch-composition/tsconfig.json +14 -0
- package/examples/05-fastly-capabilities/.pulse/.gitignore +3 -0
- package/examples/05-fastly-capabilities/.pulse/config.ts +57 -0
- package/examples/05-fastly-capabilities/README.md +257 -0
- package/examples/05-fastly-capabilities/package.json +22 -0
- package/examples/05-fastly-capabilities/src/index.ts +55 -0
- package/examples/05-fastly-capabilities/tests/pulse.harness.ts +66 -0
- package/examples/05-fastly-capabilities/tsconfig.json +14 -0
- package/examples/07-opaque-proxy/.pulse/.gitignore +3 -0
- package/examples/07-opaque-proxy/.pulse/config.ts +38 -0
- package/examples/07-opaque-proxy/README.md +150 -0
- package/examples/07-opaque-proxy/package.json +21 -0
- package/examples/07-opaque-proxy/src/index.ts +9 -0
- package/examples/07-opaque-proxy/tests/pulse.harness.ts +25 -0
- package/examples/07-opaque-proxy/tsconfig.json +14 -0
- package/examples/09-router-lowering/.pulse/.gitignore +3 -0
- package/examples/09-router-lowering/.pulse/config.ts +22 -0
- package/examples/09-router-lowering/README.md +287 -0
- package/examples/09-router-lowering/package.json +22 -0
- package/examples/09-router-lowering/src/index.ts +65 -0
- package/examples/09-router-lowering/tests/pulse.harness.ts +91 -0
- package/examples/09-router-lowering/tsconfig.json +14 -0
- package/examples/10-entities-tools/.pulse/.gitignore +4 -0
- package/examples/10-entities-tools/.pulse/config.ts +23 -0
- package/examples/10-entities-tools/README.md +165 -0
- package/examples/10-entities-tools/package.json +21 -0
- package/examples/10-entities-tools/src/handlers.ts +15 -0
- package/examples/10-entities-tools/src/index.ts +31 -0
- package/examples/10-entities-tools/src/schemas.ts +18 -0
- package/examples/10-entities-tools/tests/pulse.harness.ts +40 -0
- package/examples/10-entities-tools/tools-facade.cjs +158 -0
- package/examples/10-entities-tools/tsconfig.json +14 -0
- package/examples/11-events/.pulse/.gitignore +4 -0
- package/examples/11-events/.pulse/config.ts +24 -0
- package/examples/11-events/README.md +194 -0
- package/examples/11-events/package.json +20 -0
- package/examples/11-events/src/index.ts +27 -0
- package/examples/11-events/src/schemas.ts +19 -0
- package/examples/11-events/tests/pulse.harness.ts +34 -0
- package/examples/11-events/tsconfig.json +15 -0
- package/examples/12-mcp-proxy/.pulse/.gitignore +3 -0
- package/examples/12-mcp-proxy/.pulse/config.ts +25 -0
- package/examples/12-mcp-proxy/README.md +149 -0
- package/examples/12-mcp-proxy/package.json +20 -0
- package/examples/12-mcp-proxy/src/index.ts +17 -0
- package/examples/12-mcp-proxy/tests/pulse.harness.ts +29 -0
- package/examples/12-mcp-proxy/tsconfig.json +14 -0
- package/examples/13-jwt-es256/.pulse/config.ts +19 -0
- package/examples/13-jwt-es256/README.md +195 -0
- package/examples/13-jwt-es256/package.json +21 -0
- package/examples/13-jwt-es256/src/index.ts +21 -0
- package/examples/13-jwt-es256/tests/pulse.harness.ts +54 -0
- package/examples/13-jwt-es256/tsconfig.json +14 -0
- package/examples/README.md +36 -0
- package/package.json +66 -6
- package/project-config.schema.json +981 -0
- package/release-manifest.json +441 -0
- package/src/command-spec.js +279 -0
- package/src/completion.js +113 -0
- package/src/diagnostics.js +350 -0
- package/src/documentation.js +45 -0
- package/src/index.d.ts +133 -0
- package/src/index.js +15 -0
- package/src/internal/command-executor.d.ts +29 -0
- package/src/internal/command-executor.js +143 -0
- package/src/internal/command-plan.d.ts +9 -0
- package/src/internal/command-plan.js +73 -0
- package/src/internal/command-reporter.d.ts +15 -0
- package/src/internal/command-reporter.js +133 -0
- package/src/internal/command-request.d.ts +35 -0
- package/src/internal/command-request.js +154 -0
- package/src/internal/node-http.js +54 -0
- package/src/internal/project-context.d.ts +66 -0
- package/src/internal/project-context.js +175 -0
- package/src/project-config-reference.js +4 -0
- package/src/project-config-schema.d.ts +23 -0
- package/src/project-config-schema.js +271 -0
- package/src/project-config.js +724 -0
- package/src/project-execution.js +2946 -0
- package/src/provider-drivers.js +3 -0
- package/src/target-support.js +3 -0
- package/src/typescript-module-loader.js +269 -0
- package/src/workflow.js +78 -0
- package/src/workspace.js +82 -0
|
@@ -0,0 +1,809 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "pulse.maintenance-policy.v2",
|
|
3
|
+
"policyVersion": 7,
|
|
4
|
+
"releaseVersion": "1.0.0-beta.2",
|
|
5
|
+
"reviewedAt": "2026-09-13",
|
|
6
|
+
"maintainerModel": {
|
|
7
|
+
"residentMaintainer": "Codex",
|
|
8
|
+
"architectureAuthority": "human",
|
|
9
|
+
"mergeAuthority": "human-only",
|
|
10
|
+
"releaseAuthority": "human-only",
|
|
11
|
+
"defaultAgentMode": "analyze-review-and-prepare-patches",
|
|
12
|
+
"agentMayMerge": false,
|
|
13
|
+
"agentMayPublish": false,
|
|
14
|
+
"agentMayChangeRepositorySettings": false,
|
|
15
|
+
"agentMayApproveProtectedBoundaryChanges": false
|
|
16
|
+
},
|
|
17
|
+
"github": {
|
|
18
|
+
"codeOwners": [
|
|
19
|
+
"@pulse-compute/pulse-maintainers"
|
|
20
|
+
],
|
|
21
|
+
"openAiSecret": "OPENAI_API_KEY",
|
|
22
|
+
"codexEnvironment": "codex-maintainer",
|
|
23
|
+
"requiredStatusChecks": [
|
|
24
|
+
"Maintainer scope / scope",
|
|
25
|
+
"Repository validation / maintenance",
|
|
26
|
+
"Repository validation / node-floor",
|
|
27
|
+
"Repository validation / portable",
|
|
28
|
+
"Documentation / build"
|
|
29
|
+
],
|
|
30
|
+
"codexMode": "manual-policy-review-plus-optional-native-review",
|
|
31
|
+
"actionPins": {
|
|
32
|
+
"actions/checkout": {
|
|
33
|
+
"sha": "9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0",
|
|
34
|
+
"version": "v7.0.0"
|
|
35
|
+
},
|
|
36
|
+
"actions/setup-node": {
|
|
37
|
+
"sha": "48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e",
|
|
38
|
+
"version": "v6.4.0"
|
|
39
|
+
},
|
|
40
|
+
"actions/upload-artifact": {
|
|
41
|
+
"sha": "043fb46d1a93c77aae656e7c1c64a875d1fc6a0a",
|
|
42
|
+
"version": "v7.0.1"
|
|
43
|
+
},
|
|
44
|
+
"actions/download-artifact": {
|
|
45
|
+
"sha": "3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c",
|
|
46
|
+
"version": "v8.0.1"
|
|
47
|
+
},
|
|
48
|
+
"actions/github-script": {
|
|
49
|
+
"sha": "3a2844b7e9c422d3c10d287c895573f7108da1b3",
|
|
50
|
+
"version": "v9.0.0"
|
|
51
|
+
},
|
|
52
|
+
"openai/codex-action": {
|
|
53
|
+
"sha": "52fe01ec70a42f454c9d2ebd47598f9fd6893d56",
|
|
54
|
+
"version": "v1.11"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"protectedEnvironments": {
|
|
58
|
+
"codex-maintainer": {
|
|
59
|
+
"authority": "human-maintainer",
|
|
60
|
+
"allowedRefs": "default-branch",
|
|
61
|
+
"secrets": [
|
|
62
|
+
"OPENAI_API_KEY"
|
|
63
|
+
],
|
|
64
|
+
"variables": []
|
|
65
|
+
},
|
|
66
|
+
"npm-publish": {
|
|
67
|
+
"authority": "human-release",
|
|
68
|
+
"allowedRefs": "release-tags",
|
|
69
|
+
"secrets": [],
|
|
70
|
+
"variables": []
|
|
71
|
+
},
|
|
72
|
+
"documentation-production": {
|
|
73
|
+
"authority": "human-release-infrastructure",
|
|
74
|
+
"allowedRefs": "release-tags",
|
|
75
|
+
"secrets": [
|
|
76
|
+
"FASTLY_OBJECT_STORAGE_ACCESS_KEY_ID",
|
|
77
|
+
"FASTLY_OBJECT_STORAGE_SECRET_ACCESS_KEY"
|
|
78
|
+
],
|
|
79
|
+
"variables": [
|
|
80
|
+
"FASTLY_OBJECT_STORAGE_BUCKET",
|
|
81
|
+
"FASTLY_OBJECT_STORAGE_REGION",
|
|
82
|
+
"FASTLY_OBJECT_STORAGE_ENDPOINT",
|
|
83
|
+
"PULSE_DOCUMENTATION_ORIGIN",
|
|
84
|
+
"PULSE_DOCUMENTATION_BASE_PATH"
|
|
85
|
+
]
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"changeClasses": {
|
|
90
|
+
"defect": {
|
|
91
|
+
"label": "Defect",
|
|
92
|
+
"summary": "Supported behavior does not match the documented or tested contract.",
|
|
93
|
+
"agentMayImplement": true,
|
|
94
|
+
"humanDecisionRequired": false,
|
|
95
|
+
"defaultScope": "inside-developer-preview"
|
|
96
|
+
},
|
|
97
|
+
"hardening": {
|
|
98
|
+
"label": "Hardening",
|
|
99
|
+
"summary": "Reliability, security, diagnostics, performance, or test strength improves without widening supported behavior.",
|
|
100
|
+
"agentMayImplement": true,
|
|
101
|
+
"humanDecisionRequired": false,
|
|
102
|
+
"defaultScope": "inside-developer-preview"
|
|
103
|
+
},
|
|
104
|
+
"documentation": {
|
|
105
|
+
"label": "Documentation",
|
|
106
|
+
"summary": "Documentation, examples, generated references, or presentation change without runtime behavior expansion.",
|
|
107
|
+
"agentMayImplement": true,
|
|
108
|
+
"humanDecisionRequired": false,
|
|
109
|
+
"defaultScope": "inside-developer-preview"
|
|
110
|
+
},
|
|
111
|
+
"evidence": {
|
|
112
|
+
"label": "Evidence",
|
|
113
|
+
"summary": "A reproduction, benchmark, fixture, experiment, or usage report records information without creating a product promise.",
|
|
114
|
+
"agentMayImplement": true,
|
|
115
|
+
"humanDecisionRequired": false,
|
|
116
|
+
"defaultScope": "evidence-only"
|
|
117
|
+
},
|
|
118
|
+
"scope-expansion": {
|
|
119
|
+
"label": "Scope expansion",
|
|
120
|
+
"summary": "New authoring syntax, capability, provider, effect, public entry point, compatibility promise, or product behavior is proposed.",
|
|
121
|
+
"agentMayImplement": false,
|
|
122
|
+
"humanDecisionRequired": true,
|
|
123
|
+
"defaultScope": "scope-expansion"
|
|
124
|
+
},
|
|
125
|
+
"architecture": {
|
|
126
|
+
"label": "Architecture",
|
|
127
|
+
"summary": "A protected boundary, trust assumption, ownership rule, execution contract, or governance mechanism changes.",
|
|
128
|
+
"agentMayImplement": false,
|
|
129
|
+
"humanDecisionRequired": true,
|
|
130
|
+
"defaultScope": "architecture-change"
|
|
131
|
+
},
|
|
132
|
+
"release": {
|
|
133
|
+
"label": "Release",
|
|
134
|
+
"summary": "Versioning, publication, signing, provenance, package composition, or release-channel behavior changes.",
|
|
135
|
+
"agentMayImplement": false,
|
|
136
|
+
"humanDecisionRequired": true,
|
|
137
|
+
"defaultScope": "release-change"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"scopeStates": {
|
|
141
|
+
"inside-developer-preview": {
|
|
142
|
+
"label": "Inside Beta",
|
|
143
|
+
"humanDecisionRequired": false
|
|
144
|
+
},
|
|
145
|
+
"evidence-only": {
|
|
146
|
+
"label": "Evidence only",
|
|
147
|
+
"humanDecisionRequired": false
|
|
148
|
+
},
|
|
149
|
+
"scope-expansion": {
|
|
150
|
+
"label": "Scope expansion",
|
|
151
|
+
"humanDecisionRequired": true
|
|
152
|
+
},
|
|
153
|
+
"architecture-change": {
|
|
154
|
+
"label": "Architecture change",
|
|
155
|
+
"humanDecisionRequired": true
|
|
156
|
+
},
|
|
157
|
+
"release-change": {
|
|
158
|
+
"label": "Release change",
|
|
159
|
+
"humanDecisionRequired": true
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"checks": {
|
|
163
|
+
"maintenance-policy": {
|
|
164
|
+
"label": "Maintainer control plane",
|
|
165
|
+
"command": "node scripts/validate-maintainer-control-plane.cjs",
|
|
166
|
+
"portable": true
|
|
167
|
+
},
|
|
168
|
+
"publication-control-plane": {
|
|
169
|
+
"label": "Publication and documentation deployment control plane",
|
|
170
|
+
"command": "node scripts/validate-publication-workflows.cjs",
|
|
171
|
+
"portable": true
|
|
172
|
+
},
|
|
173
|
+
"release-preflight": {
|
|
174
|
+
"label": "Release preflight and documentation inventory",
|
|
175
|
+
"command": "node scripts/release-preflight.cjs --check",
|
|
176
|
+
"portable": true
|
|
177
|
+
},
|
|
178
|
+
"documentation": {
|
|
179
|
+
"label": "Documentation synchronization and site",
|
|
180
|
+
"command": "npm run docs:check",
|
|
181
|
+
"portable": true
|
|
182
|
+
},
|
|
183
|
+
"unit": {
|
|
184
|
+
"label": "Unit and repository contract evidence",
|
|
185
|
+
"command": "node wasm/scripts/run-wasm-tests.cjs --profile unit --no-report",
|
|
186
|
+
"portable": true
|
|
187
|
+
},
|
|
188
|
+
"native": {
|
|
189
|
+
"label": "Native compilation and runtime evidence",
|
|
190
|
+
"command": "node wasm/scripts/run-wasm-tests.cjs --profile native --no-report",
|
|
191
|
+
"portable": true
|
|
192
|
+
},
|
|
193
|
+
"javascript": {
|
|
194
|
+
"label": "JavaScript target evidence",
|
|
195
|
+
"command": "node wasm/scripts/run-wasm-tests.cjs --profile javascript --no-report",
|
|
196
|
+
"portable": true
|
|
197
|
+
},
|
|
198
|
+
"conformance": {
|
|
199
|
+
"label": "Cross-target conformance evidence",
|
|
200
|
+
"command": "node wasm/scripts/run-wasm-tests.cjs --profile conformance --no-report",
|
|
201
|
+
"portable": true
|
|
202
|
+
},
|
|
203
|
+
"cli": {
|
|
204
|
+
"label": "CLI truth profile",
|
|
205
|
+
"command": "node wasm/scripts/run-wasm-tests.cjs --profile cli --no-report",
|
|
206
|
+
"portable": true
|
|
207
|
+
},
|
|
208
|
+
"providers": {
|
|
209
|
+
"label": "Provider realization evidence",
|
|
210
|
+
"command": "node wasm/scripts/run-wasm-tests.cjs --profile providers --no-report",
|
|
211
|
+
"portable": false
|
|
212
|
+
},
|
|
213
|
+
"build": {
|
|
214
|
+
"label": "Workspace TypeScript build",
|
|
215
|
+
"command": "pnpm build",
|
|
216
|
+
"portable": false
|
|
217
|
+
},
|
|
218
|
+
"release": {
|
|
219
|
+
"label": "Aggregate release seal",
|
|
220
|
+
"command": "npm run release:seal",
|
|
221
|
+
"portable": false
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"protectedBoundaries": [
|
|
225
|
+
{
|
|
226
|
+
"id": "public-authoring-api",
|
|
227
|
+
"label": "Public authoring API",
|
|
228
|
+
"summary": "The provider-neutral TypeScript handler and exported application types.",
|
|
229
|
+
"decisionKind": "architecture",
|
|
230
|
+
"contractUpdateRequired": true
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"id": "effect-capability-model",
|
|
234
|
+
"label": "Effect and capability model",
|
|
235
|
+
"summary": "The explicit operations a guest can request and the authority a host can realize.",
|
|
236
|
+
"decisionKind": "architecture",
|
|
237
|
+
"contractUpdateRequired": true
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"id": "continuation-runtime",
|
|
241
|
+
"label": "Continuation runtime",
|
|
242
|
+
"summary": "Suspension, resumption, timeout, identity, and lifecycle semantics between effects.",
|
|
243
|
+
"decisionKind": "architecture",
|
|
244
|
+
"contractUpdateRequired": true
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"id": "lowerer-trust",
|
|
248
|
+
"label": "Lowerer trust boundary",
|
|
249
|
+
"summary": "Discovery and execution of package-owned lowerers and the first-party trust restriction.",
|
|
250
|
+
"decisionKind": "architecture",
|
|
251
|
+
"contractUpdateRequired": true
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"id": "provider-registry",
|
|
255
|
+
"label": "Provider registry",
|
|
256
|
+
"summary": "Provider namespace resolution, exact scoped-package bootstrap, provider contracts, host bindings, and target realization.",
|
|
257
|
+
"decisionKind": "architecture",
|
|
258
|
+
"contractUpdateRequired": true
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"id": "configuration-contract",
|
|
262
|
+
"label": "Configuration contract",
|
|
263
|
+
"summary": "Public project configuration fields, defaults, precedence, and runtime constraints.",
|
|
264
|
+
"decisionKind": "architecture",
|
|
265
|
+
"contractUpdateRequired": false
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"id": "runtime-target-fluidity",
|
|
269
|
+
"label": "Runtime target fluidity",
|
|
270
|
+
"summary": "The stable runtime authoring contract and the explicit boundary between native, JavaScript, and future sidecar execution targets.",
|
|
271
|
+
"decisionKind": "architecture",
|
|
272
|
+
"contractUpdateRequired": true
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"id": "package-publication",
|
|
276
|
+
"label": "Package publication contract",
|
|
277
|
+
"summary": "Published package set, exports, support tiers, exact versions, and packed payloads.",
|
|
278
|
+
"decisionKind": "release",
|
|
279
|
+
"contractUpdateRequired": false
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"id": "maintenance-control-plane",
|
|
283
|
+
"label": "Maintenance control plane",
|
|
284
|
+
"summary": "Agent authority, scope policy, repository workflows, ownership, and review gates.",
|
|
285
|
+
"decisionKind": "architecture",
|
|
286
|
+
"contractUpdateRequired": true
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"id": "documentation-deployment",
|
|
290
|
+
"label": "Documentation deployment contract",
|
|
291
|
+
"summary": "Immutable version objects, mutable promotion surfaces, Object Storage delivery, public routing, and production activation.",
|
|
292
|
+
"decisionKind": "release",
|
|
293
|
+
"contractUpdateRequired": false
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"id": "release-authority",
|
|
297
|
+
"label": "Release authority",
|
|
298
|
+
"summary": "Version, channel, publication, deployment, signing, and provenance decisions.",
|
|
299
|
+
"decisionKind": "release",
|
|
300
|
+
"contractUpdateRequired": false
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"pathRules": [
|
|
304
|
+
{
|
|
305
|
+
"id": "maintainer-control-plane",
|
|
306
|
+
"patterns": [
|
|
307
|
+
"AGENTS.md",
|
|
308
|
+
"**/AGENTS.md",
|
|
309
|
+
".github/**",
|
|
310
|
+
"CONTRIBUTING.md",
|
|
311
|
+
"SECURITY.md",
|
|
312
|
+
"SUPPORT.md",
|
|
313
|
+
"release/maintenance-policy.json",
|
|
314
|
+
"scripts/maintenance-policy.cjs",
|
|
315
|
+
"scripts/maintainer-*.cjs",
|
|
316
|
+
"scripts/validate-maintainer-control-plane.cjs",
|
|
317
|
+
"docs/maintainers/README.md",
|
|
318
|
+
"docs/maintainers/maintainer-charter.md",
|
|
319
|
+
"docs/maintainers/scope-policy.md",
|
|
320
|
+
"docs/maintainers/codex-maintainer.md",
|
|
321
|
+
"docs/maintainers/repository-setup.md",
|
|
322
|
+
"docs/maintainers/support-and-triage.md",
|
|
323
|
+
"docs/maintainers/maintenance-policy.*"
|
|
324
|
+
],
|
|
325
|
+
"areas": [
|
|
326
|
+
"governance"
|
|
327
|
+
],
|
|
328
|
+
"boundaries": [
|
|
329
|
+
"maintenance-control-plane"
|
|
330
|
+
],
|
|
331
|
+
"checks": [
|
|
332
|
+
"maintenance-policy",
|
|
333
|
+
"documentation"
|
|
334
|
+
],
|
|
335
|
+
"risk": "high"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"id": "public-api",
|
|
339
|
+
"patterns": [
|
|
340
|
+
"API.md",
|
|
341
|
+
"packages/pulse/**",
|
|
342
|
+
"packages/runtime/**"
|
|
343
|
+
],
|
|
344
|
+
"areas": [
|
|
345
|
+
"api"
|
|
346
|
+
],
|
|
347
|
+
"boundaries": [
|
|
348
|
+
"public-authoring-api"
|
|
349
|
+
],
|
|
350
|
+
"checks": [
|
|
351
|
+
"documentation",
|
|
352
|
+
"unit",
|
|
353
|
+
"native",
|
|
354
|
+
"conformance",
|
|
355
|
+
"build"
|
|
356
|
+
],
|
|
357
|
+
"risk": "high"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"id": "effects-and-continuations",
|
|
361
|
+
"patterns": [
|
|
362
|
+
"wasm/packages/contracts/src/handler/**",
|
|
363
|
+
"wasm/packages/host-runtime/src/runtime/**",
|
|
364
|
+
"wasm/packages/runtime-core-as/src/compiler/route-handler-effects.js",
|
|
365
|
+
"wasm/packages/runtime-core-as/src/compiler/route-handler-context.js",
|
|
366
|
+
"wasm/packages/compiler/src/codegen/effect-*.js",
|
|
367
|
+
"wasm/packages/compiler/src/codegen/host-runtime-kernel.js"
|
|
368
|
+
],
|
|
369
|
+
"areas": [
|
|
370
|
+
"compiler",
|
|
371
|
+
"runtime"
|
|
372
|
+
],
|
|
373
|
+
"boundaries": [
|
|
374
|
+
"effect-capability-model",
|
|
375
|
+
"continuation-runtime"
|
|
376
|
+
],
|
|
377
|
+
"checks": [
|
|
378
|
+
"unit",
|
|
379
|
+
"native",
|
|
380
|
+
"conformance",
|
|
381
|
+
"build"
|
|
382
|
+
],
|
|
383
|
+
"risk": "critical"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"id": "lowerer-trust",
|
|
387
|
+
"patterns": [
|
|
388
|
+
"packages/*/pulsewasm.manifest.cjs",
|
|
389
|
+
"packages/*/pulsewasm.compiler.cjs",
|
|
390
|
+
"packages/*/src/pulsewasm*.ts",
|
|
391
|
+
"wasm/packages/contracts/src/library/**",
|
|
392
|
+
"wasm/packages/library-kit/src/compiler/package-lowering.js",
|
|
393
|
+
"wasm/packages/compiler/src/canonical-project-compiler.js",
|
|
394
|
+
"wasm/packages/library-kit/src/compiler/handler-library-contracts.js"
|
|
395
|
+
],
|
|
396
|
+
"areas": [
|
|
397
|
+
"lowering"
|
|
398
|
+
],
|
|
399
|
+
"boundaries": [
|
|
400
|
+
"lowerer-trust"
|
|
401
|
+
],
|
|
402
|
+
"checks": [
|
|
403
|
+
"unit",
|
|
404
|
+
"native",
|
|
405
|
+
"build"
|
|
406
|
+
],
|
|
407
|
+
"risk": "critical"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"id": "providers",
|
|
411
|
+
"patterns": [
|
|
412
|
+
"wasm/packages/cli/src/provider-drivers.js",
|
|
413
|
+
"wasm/packages/compiler/src/provider-toolchain.js",
|
|
414
|
+
"wasm/packages/compiler/src/project-target-support.js",
|
|
415
|
+
"wasm/packages/contracts/src/project/javascript-core-capabilities.js",
|
|
416
|
+
"wasm/packages/contracts/src/project/native-optimization.js",
|
|
417
|
+
"wasm/packages/contracts/src/provider/**",
|
|
418
|
+
"packages/provider-node/**",
|
|
419
|
+
"packages/provider-fastly/**"
|
|
420
|
+
],
|
|
421
|
+
"areas": [
|
|
422
|
+
"provider"
|
|
423
|
+
],
|
|
424
|
+
"boundaries": [
|
|
425
|
+
"provider-registry",
|
|
426
|
+
"runtime-target-fluidity"
|
|
427
|
+
],
|
|
428
|
+
"checks": [
|
|
429
|
+
"unit",
|
|
430
|
+
"native",
|
|
431
|
+
"javascript",
|
|
432
|
+
"conformance",
|
|
433
|
+
"providers",
|
|
434
|
+
"build"
|
|
435
|
+
],
|
|
436
|
+
"risk": "critical"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"id": "target-compilation",
|
|
440
|
+
"patterns": [
|
|
441
|
+
"wasm/packages/cli/src/project-execution.js",
|
|
442
|
+
"wasm/packages/compiler/src/canonical-api-compiler.js",
|
|
443
|
+
"wasm/packages/compiler/src/canonical-project-compiler.js",
|
|
444
|
+
"wasm/packages/compiler/src/canonical-native-plan.js",
|
|
445
|
+
"wasm/packages/compiler/src/javascript-application-plan.js",
|
|
446
|
+
"wasm/packages/compiler/src/project/router-module-linker.js",
|
|
447
|
+
"wasm/packages/compiler/src/spine/async-surface-normalizer.js",
|
|
448
|
+
"wasm/packages/compiler/src/spine/plain-handler-frontend.js",
|
|
449
|
+
"wasm/packages/compiler/src/spine/router-handler-frontend.js"
|
|
450
|
+
],
|
|
451
|
+
"areas": [
|
|
452
|
+
"compiler",
|
|
453
|
+
"cli"
|
|
454
|
+
],
|
|
455
|
+
"boundaries": [
|
|
456
|
+
"runtime-target-fluidity"
|
|
457
|
+
],
|
|
458
|
+
"checks": [
|
|
459
|
+
"documentation",
|
|
460
|
+
"unit",
|
|
461
|
+
"native",
|
|
462
|
+
"javascript",
|
|
463
|
+
"conformance",
|
|
464
|
+
"cli",
|
|
465
|
+
"build"
|
|
466
|
+
],
|
|
467
|
+
"risk": "high"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"id": "configuration",
|
|
471
|
+
"patterns": [
|
|
472
|
+
"wasm/packages/cli/src/project-config*.js",
|
|
473
|
+
"wasm/packages/cli/src/project-config*.d.ts",
|
|
474
|
+
"packages/provider-fastly/src/config-schema.*",
|
|
475
|
+
"docs/reference/project-config*"
|
|
476
|
+
],
|
|
477
|
+
"areas": [
|
|
478
|
+
"cli",
|
|
479
|
+
"configuration"
|
|
480
|
+
],
|
|
481
|
+
"boundaries": [
|
|
482
|
+
"configuration-contract"
|
|
483
|
+
],
|
|
484
|
+
"checks": [
|
|
485
|
+
"maintenance-policy",
|
|
486
|
+
"documentation",
|
|
487
|
+
"unit",
|
|
488
|
+
"cli",
|
|
489
|
+
"build"
|
|
490
|
+
],
|
|
491
|
+
"risk": "high"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"id": "cli-and-diagnostics",
|
|
495
|
+
"patterns": [
|
|
496
|
+
"wasm/packages/cli/**",
|
|
497
|
+
"wasm/scripts/pulse.cjs",
|
|
498
|
+
"docs/reference/cli*",
|
|
499
|
+
"docs/reference/diagnostics.md",
|
|
500
|
+
"docs/reference/environment.md"
|
|
501
|
+
],
|
|
502
|
+
"areas": [
|
|
503
|
+
"cli"
|
|
504
|
+
],
|
|
505
|
+
"boundaries": [],
|
|
506
|
+
"checks": [
|
|
507
|
+
"documentation",
|
|
508
|
+
"unit",
|
|
509
|
+
"cli",
|
|
510
|
+
"build"
|
|
511
|
+
],
|
|
512
|
+
"risk": "medium"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"id": "release-system",
|
|
516
|
+
"patterns": [
|
|
517
|
+
"LICENSE",
|
|
518
|
+
"NOTICE",
|
|
519
|
+
"release/pulse-release-manifest.json",
|
|
520
|
+
"release/release-preflight.json",
|
|
521
|
+
"release/documentation-inventory.json",
|
|
522
|
+
"release/documentation-versions.json",
|
|
523
|
+
"release/documentation-site.json",
|
|
524
|
+
"package.json",
|
|
525
|
+
"pnpm-lock.yaml",
|
|
526
|
+
"pnpm-workspace.yaml",
|
|
527
|
+
"packages/*/package.json",
|
|
528
|
+
"wasm/packages/*/package.json",
|
|
529
|
+
"scripts/pack-release.cjs",
|
|
530
|
+
"scripts/release-preflight.cjs",
|
|
531
|
+
"scripts/validate-release.cjs",
|
|
532
|
+
"scripts/bundle_deps.sh",
|
|
533
|
+
"scripts/restore_deps.sh",
|
|
534
|
+
".gitignore",
|
|
535
|
+
"scripts/package-support.cjs"
|
|
536
|
+
],
|
|
537
|
+
"areas": [
|
|
538
|
+
"release"
|
|
539
|
+
],
|
|
540
|
+
"boundaries": [
|
|
541
|
+
"package-publication",
|
|
542
|
+
"release-authority"
|
|
543
|
+
],
|
|
544
|
+
"checks": [
|
|
545
|
+
"maintenance-policy",
|
|
546
|
+
"release-preflight",
|
|
547
|
+
"documentation",
|
|
548
|
+
"unit",
|
|
549
|
+
"build",
|
|
550
|
+
"release"
|
|
551
|
+
],
|
|
552
|
+
"risk": "critical"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"id": "publication-and-delivery",
|
|
556
|
+
"patterns": [
|
|
557
|
+
"LICENSE",
|
|
558
|
+
"NOTICE",
|
|
559
|
+
"release/pulse-release-manifest.json",
|
|
560
|
+
"release/release-preflight.json",
|
|
561
|
+
"release/documentation-inventory.json",
|
|
562
|
+
"release/documentation-deployment.json",
|
|
563
|
+
"scripts/pack-release.cjs",
|
|
564
|
+
"scripts/release-candidate.cjs",
|
|
565
|
+
"scripts/release-publication.cjs",
|
|
566
|
+
"scripts/publish-release.cjs",
|
|
567
|
+
"scripts/verify-npm-release.cjs",
|
|
568
|
+
"scripts/documentation-deployment.cjs",
|
|
569
|
+
"scripts/validate-publication-workflows.cjs",
|
|
570
|
+
"scripts/release-preflight.cjs",
|
|
571
|
+
"wasm/test/release/assert-release-packages.cjs",
|
|
572
|
+
".github/workflows/npm-publish.yml",
|
|
573
|
+
".github/workflows/documentation.yml",
|
|
574
|
+
".github/workflows/documentation-deploy.yml",
|
|
575
|
+
"infra/fastly/documentation/**",
|
|
576
|
+
"docs/maintainers/npm-publishing.md",
|
|
577
|
+
"docs/maintainers/documentation-deployment.md"
|
|
578
|
+
],
|
|
579
|
+
"areas": [
|
|
580
|
+
"release",
|
|
581
|
+
"documentation",
|
|
582
|
+
"deployment"
|
|
583
|
+
],
|
|
584
|
+
"boundaries": [
|
|
585
|
+
"package-publication",
|
|
586
|
+
"documentation-deployment",
|
|
587
|
+
"release-authority"
|
|
588
|
+
],
|
|
589
|
+
"checks": [
|
|
590
|
+
"maintenance-policy",
|
|
591
|
+
"publication-control-plane",
|
|
592
|
+
"release-preflight",
|
|
593
|
+
"documentation",
|
|
594
|
+
"unit",
|
|
595
|
+
"build",
|
|
596
|
+
"release"
|
|
597
|
+
],
|
|
598
|
+
"risk": "critical"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"id": "documentation",
|
|
602
|
+
"patterns": [
|
|
603
|
+
"CHANGELOG.md",
|
|
604
|
+
"README.md",
|
|
605
|
+
"docs/**",
|
|
606
|
+
"examples/**",
|
|
607
|
+
"scripts/documentation-*.cjs",
|
|
608
|
+
"scripts/build-docs-site.cjs",
|
|
609
|
+
"scripts/documentation-site/**",
|
|
610
|
+
"wasm/scripts/sync-*.cjs",
|
|
611
|
+
"packages/*/README.md",
|
|
612
|
+
"wasm/packages/*/README.md",
|
|
613
|
+
"wasm/MAPPING.md",
|
|
614
|
+
"scripts/environment-reference.cjs"
|
|
615
|
+
],
|
|
616
|
+
"areas": [
|
|
617
|
+
"documentation"
|
|
618
|
+
],
|
|
619
|
+
"boundaries": [],
|
|
620
|
+
"checks": [
|
|
621
|
+
"maintenance-policy",
|
|
622
|
+
"documentation"
|
|
623
|
+
],
|
|
624
|
+
"risk": "low"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"id": "tests-and-evidence",
|
|
628
|
+
"patterns": [
|
|
629
|
+
"wasm/test/**"
|
|
630
|
+
],
|
|
631
|
+
"areas": [
|
|
632
|
+
"testing"
|
|
633
|
+
],
|
|
634
|
+
"boundaries": [],
|
|
635
|
+
"checks": [
|
|
636
|
+
"maintenance-policy",
|
|
637
|
+
"unit"
|
|
638
|
+
],
|
|
639
|
+
"risk": "medium"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"id": "compiler-default",
|
|
643
|
+
"patterns": [
|
|
644
|
+
"wasm/packages/build-support/**",
|
|
645
|
+
"wasm/packages/compiler/**",
|
|
646
|
+
"wasm/packages/contracts/**",
|
|
647
|
+
"wasm/packages/host-runtime/**",
|
|
648
|
+
"wasm/packages/library-kit/**",
|
|
649
|
+
"wasm/packages/runtime-core-as/**",
|
|
650
|
+
"wasm/packages/schema-json/**"
|
|
651
|
+
],
|
|
652
|
+
"areas": [
|
|
653
|
+
"compiler"
|
|
654
|
+
],
|
|
655
|
+
"boundaries": [],
|
|
656
|
+
"checks": [
|
|
657
|
+
"unit",
|
|
658
|
+
"native",
|
|
659
|
+
"javascript",
|
|
660
|
+
"conformance",
|
|
661
|
+
"build"
|
|
662
|
+
],
|
|
663
|
+
"risk": "high"
|
|
664
|
+
}
|
|
665
|
+
],
|
|
666
|
+
"pullRequestDeclaration": {
|
|
667
|
+
"startMarker": "<!-- pulse-maintainer-declaration:start -->",
|
|
668
|
+
"endMarker": "<!-- pulse-maintainer-declaration:end -->",
|
|
669
|
+
"fields": {
|
|
670
|
+
"Change class": [
|
|
671
|
+
"defect",
|
|
672
|
+
"hardening",
|
|
673
|
+
"documentation",
|
|
674
|
+
"evidence",
|
|
675
|
+
"scope-expansion",
|
|
676
|
+
"architecture",
|
|
677
|
+
"release"
|
|
678
|
+
],
|
|
679
|
+
"Scope": [
|
|
680
|
+
"inside-developer-preview",
|
|
681
|
+
"evidence-only",
|
|
682
|
+
"scope-expansion",
|
|
683
|
+
"architecture-change",
|
|
684
|
+
"release-change"
|
|
685
|
+
],
|
|
686
|
+
"Protected boundaries": "boundary-list-or-none",
|
|
687
|
+
"Human decision": [
|
|
688
|
+
"not-required",
|
|
689
|
+
"required"
|
|
690
|
+
]
|
|
691
|
+
}
|
|
692
|
+
},
|
|
693
|
+
"labels": [
|
|
694
|
+
{
|
|
695
|
+
"name": "type:defect",
|
|
696
|
+
"color": "d73a4a",
|
|
697
|
+
"description": "Supported behavior is broken or inconsistent."
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"name": "type:hardening",
|
|
701
|
+
"color": "fbca04",
|
|
702
|
+
"description": "Reliability, security, diagnostics, performance, or test hardening."
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"name": "type:documentation",
|
|
706
|
+
"color": "0075ca",
|
|
707
|
+
"description": "Documentation, examples, or generated reference work."
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"name": "type:evidence",
|
|
711
|
+
"color": "bfdadc",
|
|
712
|
+
"description": "Reproduction, experiment, benchmark, or usage evidence."
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"name": "type:scope-proposal",
|
|
716
|
+
"color": "c5def5",
|
|
717
|
+
"description": "Proposal to widen current product scope."
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"name": "type:support",
|
|
721
|
+
"color": "d4c5f9",
|
|
722
|
+
"description": "Usage question or support request."
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"name": "decision:human-required",
|
|
726
|
+
"color": "b60205",
|
|
727
|
+
"description": "Architecture, scope, or release authority decision is required."
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
"name": "decision:architecture",
|
|
731
|
+
"color": "5319e7",
|
|
732
|
+
"description": "A protected architecture boundary is involved."
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"name": "status:needs-reproduction",
|
|
736
|
+
"color": "fef2c0",
|
|
737
|
+
"description": "A minimal reproduction or additional evidence is required."
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"name": "status:blocked",
|
|
741
|
+
"color": "000000",
|
|
742
|
+
"description": "Work cannot proceed until an explicit dependency or decision is resolved."
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"name": "area:compiler",
|
|
746
|
+
"color": "1d76db",
|
|
747
|
+
"description": "Compiler, lowering, contracts, or generated program work."
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"name": "area:cli",
|
|
751
|
+
"color": "0e8a16",
|
|
752
|
+
"description": "CLI, configuration, diagnostics, or workflow work."
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"name": "area:provider",
|
|
756
|
+
"color": "0052cc",
|
|
757
|
+
"description": "Provider contract, host binding, or target work."
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"name": "area:documentation",
|
|
761
|
+
"color": "006b75",
|
|
762
|
+
"description": "Documentation system or public site work."
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"name": "area:release",
|
|
766
|
+
"color": "e99695",
|
|
767
|
+
"description": "Package publication, versioning, or release acceptance work."
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"name": "area:deployment",
|
|
771
|
+
"color": "0b7285",
|
|
772
|
+
"description": "npm publication, Object Storage, or CDN delivery work."
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"name": "area:governance",
|
|
776
|
+
"color": "7057ff",
|
|
777
|
+
"description": "Maintainer policy, agent guidance, or repository automation work."
|
|
778
|
+
}
|
|
779
|
+
],
|
|
780
|
+
"issueForms": {
|
|
781
|
+
"bug.yml": {
|
|
782
|
+
"changeClass": "defect",
|
|
783
|
+
"labels": [
|
|
784
|
+
"type:defect",
|
|
785
|
+
"status:needs-reproduction"
|
|
786
|
+
]
|
|
787
|
+
},
|
|
788
|
+
"documentation.yml": {
|
|
789
|
+
"changeClass": "documentation",
|
|
790
|
+
"labels": [
|
|
791
|
+
"type:documentation",
|
|
792
|
+
"area:documentation"
|
|
793
|
+
]
|
|
794
|
+
},
|
|
795
|
+
"scope-proposal.yml": {
|
|
796
|
+
"changeClass": "scope-expansion",
|
|
797
|
+
"labels": [
|
|
798
|
+
"type:scope-proposal",
|
|
799
|
+
"decision:human-required"
|
|
800
|
+
]
|
|
801
|
+
},
|
|
802
|
+
"support.yml": {
|
|
803
|
+
"changeClass": "evidence",
|
|
804
|
+
"labels": [
|
|
805
|
+
"type:support"
|
|
806
|
+
]
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
}
|