@codedrifters/configulator 0.0.295 → 0.0.297
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/lib/index.d.mts +288 -10
- package/lib/index.d.ts +289 -11
- package/lib/index.js +514 -60
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +488 -43
- package/lib/index.mjs.map +1 -1
- package/package.json +2 -2
package/lib/index.d.mts
CHANGED
|
@@ -3428,6 +3428,111 @@ declare function buildBaseBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
|
3428
3428
|
*/
|
|
3429
3429
|
declare const baseBundle: AgentRuleBundle;
|
|
3430
3430
|
|
|
3431
|
+
/**
|
|
3432
|
+
* Hand-maintained registry mapping every bundle name to the cross-bundle
|
|
3433
|
+
* surface it owns: GitHub `type:*` labels, phase-label prefixes,
|
|
3434
|
+
* scheduled-task IDs, whether it emits Starlight docs, and whether it
|
|
3435
|
+
* declares any downstream issue kinds (i.e. files `gh issue create`
|
|
3436
|
+
* recipes via the issue-templates convention).
|
|
3437
|
+
*
|
|
3438
|
+
* The registry is consulted by renderers in other bundles whenever
|
|
3439
|
+
* `AgentConfigOptions.excludeBundles` is non-empty so cross-bundle
|
|
3440
|
+
* references to an excluded bundle's agents, type labels, phase labels,
|
|
3441
|
+
* or scheduled tasks disappear from the generated output.
|
|
3442
|
+
*
|
|
3443
|
+
* The map is **hand-maintained** rather than derived from each bundle's
|
|
3444
|
+
* runtime shape. The defining surfaces (the funnel-tier table in
|
|
3445
|
+
* `tiers.ts`, the per-phase scope-gate overrides in `scope-gate.ts`, and
|
|
3446
|
+
* the scheduled-tasks registry in `scheduled-tasks.ts`) live as flat
|
|
3447
|
+
* data tables that already get walked by their renderers — declaring the
|
|
3448
|
+
* ownership map alongside them keeps the relationship explicit and
|
|
3449
|
+
* readable without forcing every bundle to grow an "ownership"
|
|
3450
|
+
* descriptor.
|
|
3451
|
+
*
|
|
3452
|
+
* Bundles that ship no cross-bundle surface (e.g. `slack`, `typescript`,
|
|
3453
|
+
* `pnpm`, `vitest`, `jest`, `aws-cdk`, `projen`, `turborepo`,
|
|
3454
|
+
* `upstream-configulator-docs`) deliberately do not appear here —
|
|
3455
|
+
* excluding them is already a no-op since they own nothing other
|
|
3456
|
+
* bundles reference.
|
|
3457
|
+
*/
|
|
3458
|
+
interface BundleOwnership {
|
|
3459
|
+
/**
|
|
3460
|
+
* GitHub `type:*` label values (without the `type:` prefix) the
|
|
3461
|
+
* bundle owns. The funnel-tier table in `tiers.ts` and any rendered
|
|
3462
|
+
* tables that group agents by `type:*` label consult this list.
|
|
3463
|
+
*/
|
|
3464
|
+
readonly typeLabels: ReadonlyArray<string>;
|
|
3465
|
+
/**
|
|
3466
|
+
* Phase-label prefixes (with trailing colon, e.g. `"company:"`) the
|
|
3467
|
+
* bundle owns. Used by the scope-gate per-phase override table and
|
|
3468
|
+
* any other renderer that groups by phase label. An entry without a
|
|
3469
|
+
* trailing colon (e.g. `"req:write"`) is treated as an exact
|
|
3470
|
+
* phase-label match instead of a prefix.
|
|
3471
|
+
*/
|
|
3472
|
+
readonly phaseLabelPrefixes: ReadonlyArray<string>;
|
|
3473
|
+
/**
|
|
3474
|
+
* `taskId` values from `DEFAULT_SCHEDULED_TASK_ENTRIES` that target
|
|
3475
|
+
* this bundle's sub-agent. The scheduled-tasks registry filter in
|
|
3476
|
+
* `agent-config.ts` consults this list when pruning default entries
|
|
3477
|
+
* for an excluded bundle.
|
|
3478
|
+
*/
|
|
3479
|
+
readonly scheduledTaskIds: ReadonlyArray<string>;
|
|
3480
|
+
/**
|
|
3481
|
+
* Whether this bundle emits Starlight content roots — i.e. whether
|
|
3482
|
+
* any of its workflows write files under `docs/src/content/docs/`
|
|
3483
|
+
* (or the configured docs root). Drives the auto-suppression of the
|
|
3484
|
+
* `section-index-pages` rule when no docs-emitting bundle is active.
|
|
3485
|
+
*/
|
|
3486
|
+
readonly emitsDocs: boolean;
|
|
3487
|
+
/**
|
|
3488
|
+
* Whether this bundle dispatches downstream issues (i.e. its
|
|
3489
|
+
* workflows file `gh issue create` recipes). Drives the
|
|
3490
|
+
* auto-suppression of the `issue-templates-convention` rule when no
|
|
3491
|
+
* such bundle is active.
|
|
3492
|
+
*/
|
|
3493
|
+
readonly downstreamIssueKinds: boolean;
|
|
3494
|
+
}
|
|
3495
|
+
/**
|
|
3496
|
+
* Canonical ownership map. Only bundles that own at least one
|
|
3497
|
+
* cross-bundle surface appear here.
|
|
3498
|
+
*/
|
|
3499
|
+
declare const BUNDLE_OWNERSHIP: Readonly<Record<string, BundleOwnership>>;
|
|
3500
|
+
/**
|
|
3501
|
+
* Return `true` when `typeLabel` (without the leading `type:` prefix)
|
|
3502
|
+
* is owned by any bundle in `excludedBundles`. Used by tier-table and
|
|
3503
|
+
* scheduled-task renderers to drop rows whose owning bundle has been
|
|
3504
|
+
* excluded.
|
|
3505
|
+
*/
|
|
3506
|
+
declare function isTypeLabelOwnedByExcluded(typeLabel: string, excludedBundles: ReadonlyArray<string>): boolean;
|
|
3507
|
+
/**
|
|
3508
|
+
* Return `true` when `phaseLabel` is owned by any bundle in
|
|
3509
|
+
* `excludedBundles`. Matches against both prefix entries (with
|
|
3510
|
+
* trailing colon, e.g. `"company:"`) and exact-match entries (without
|
|
3511
|
+
* trailing colon, e.g. `"req:write"`). Used by the scope-gate
|
|
3512
|
+
* per-phase-override table renderer.
|
|
3513
|
+
*/
|
|
3514
|
+
declare function isPhaseLabelOwnedByExcluded(phaseLabel: string, excludedBundles: ReadonlyArray<string>): boolean;
|
|
3515
|
+
/**
|
|
3516
|
+
* Return `true` when the scheduled-task `taskId` is owned by any
|
|
3517
|
+
* bundle in `excludedBundles`. Used by the scheduled-tasks registry
|
|
3518
|
+
* filter to drop default entries pointing at an excluded bundle.
|
|
3519
|
+
*/
|
|
3520
|
+
declare function isScheduledTaskOwnedByExcluded(taskId: string, excludedBundles: ReadonlyArray<string>): boolean;
|
|
3521
|
+
/**
|
|
3522
|
+
* Return `true` when at least one docs-emitting bundle is **not**
|
|
3523
|
+
* excluded. Used by the `section-index-pages` rule auto-suppression
|
|
3524
|
+
* gate — when this returns `false`, the rule is dropped from the
|
|
3525
|
+
* rendered rule map entirely.
|
|
3526
|
+
*/
|
|
3527
|
+
declare function hasAnyDocsEmittingBundle(excludedBundles: ReadonlyArray<string>): boolean;
|
|
3528
|
+
/**
|
|
3529
|
+
* Return `true` when at least one downstream-issue-kind bundle is
|
|
3530
|
+
* **not** excluded. Used by the `issue-templates-convention`
|
|
3531
|
+
* auto-suppression gate — when this returns `false`, the rule body
|
|
3532
|
+
* renders the disabled-stub variant.
|
|
3533
|
+
*/
|
|
3534
|
+
declare function hasAnyDownstreamIssueKindBundle(excludedBundles: ReadonlyArray<string>): boolean;
|
|
3535
|
+
|
|
3431
3536
|
/**
|
|
3432
3537
|
* Build the bcm-writer bundle with the supplied resolved paths.
|
|
3433
3538
|
*
|
|
@@ -3977,7 +4082,7 @@ interface ResolvedScheduledTasks {
|
|
|
3977
4082
|
* duplicate taskIds in a single supplied list) throw a descriptive
|
|
3978
4083
|
* `Error` — callers should not need to guard against it at runtime.
|
|
3979
4084
|
*/
|
|
3980
|
-
declare function resolveScheduledTasks(config?: ScheduledTasksConfig): ResolvedScheduledTasks;
|
|
4085
|
+
declare function resolveScheduledTasks(config?: ScheduledTasksConfig, excludeBundles?: ReadonlyArray<string>): ResolvedScheduledTasks;
|
|
3981
4086
|
/**
|
|
3982
4087
|
* Synth-time validation hook. Throws a descriptive `Error` when the
|
|
3983
4088
|
* supplied `ScheduledTasksConfig` is malformed. Called by
|
|
@@ -3996,7 +4101,7 @@ declare function resolveScheduledTasks(config?: ScheduledTasksConfig): ResolvedS
|
|
|
3996
4101
|
* plain string.
|
|
3997
4102
|
* - Duplicate `taskId` values within the supplied `tasks` list.
|
|
3998
4103
|
*/
|
|
3999
|
-
declare function validateScheduledTasksConfig(config?: ScheduledTasksConfig): ResolvedScheduledTasks;
|
|
4104
|
+
declare function validateScheduledTasksConfig(config?: ScheduledTasksConfig, excludeBundles?: ReadonlyArray<string>): ResolvedScheduledTasks;
|
|
4000
4105
|
/**
|
|
4001
4106
|
* Render the markdown subsection appended to the
|
|
4002
4107
|
* `orchestrator-conventions` rule. Always returns a non-empty string —
|
|
@@ -4235,8 +4340,13 @@ declare function classifyIssueScope(body: string, gate: ResolvedScopeGate, label
|
|
|
4235
4340
|
* `orchestrator-conventions` rule. Always returns a non-empty string
|
|
4236
4341
|
* so the orchestrator rule documents the scope gate even when the
|
|
4237
4342
|
* consumer relies on the defaults.
|
|
4343
|
+
*
|
|
4344
|
+
* When `excludeBundles` is non-empty, per-phase override rows whose
|
|
4345
|
+
* phase label is owned by an excluded bundle are dropped from the
|
|
4346
|
+
* **Per-phase-label thresholds** sub-table. The sub-section as a
|
|
4347
|
+
* whole is hidden when no rows survive.
|
|
4238
4348
|
*/
|
|
4239
|
-
declare function renderScopeGateSection(gate: ResolvedScopeGate): string;
|
|
4349
|
+
declare function renderScopeGateSection(gate: ResolvedScopeGate, excludeBundles?: ReadonlyArray<string>): string;
|
|
4240
4350
|
/**
|
|
4241
4351
|
* Render a shell-script snippet embedded in `check-blocked.sh`. The
|
|
4242
4352
|
* snippet declares a `scope_of()` function that reads an issue body
|
|
@@ -4353,8 +4463,15 @@ declare function validateAgentTierConfig(config?: AgentTierConfig): ReadonlyArra
|
|
|
4353
4463
|
* `orchestrator-conventions` rule. Always returns a non-empty string
|
|
4354
4464
|
* because the default tier list is non-empty — the orchestrator
|
|
4355
4465
|
* always documents its sort order.
|
|
4466
|
+
*
|
|
4467
|
+
* When `excludeBundles` is non-empty, rows whose `type:*` label is
|
|
4468
|
+
* owned by an excluded bundle are dropped before rendering. Tiers
|
|
4469
|
+
* that end up with no surviving rows render an empty `_(none
|
|
4470
|
+
* registered)_` cell for consistency with the existing render — the
|
|
4471
|
+
* tier itself stays in the table so the dispatch ordering is still
|
|
4472
|
+
* documented end-to-end.
|
|
4356
4473
|
*/
|
|
4357
|
-
declare function renderAgentTierSection(tiers: ReadonlyArray<ResolvedAgentTier>): string;
|
|
4474
|
+
declare function renderAgentTierSection(tiers: ReadonlyArray<ResolvedAgentTier>, excludeBundles?: ReadonlyArray<string>): string;
|
|
4358
4475
|
/**
|
|
4359
4476
|
* Render a shell-script snippet that the `check-blocked.sh` procedure
|
|
4360
4477
|
* uses to look up a tier for a given `type:*` label. Emitted as a
|
|
@@ -4496,7 +4613,7 @@ declare function buildUnblockDependentsProcedure(unblockDependents?: ResolvedUnb
|
|
|
4496
4613
|
* Every optional parameter defaults to the bundle's built-in default
|
|
4497
4614
|
* when the caller omits it.
|
|
4498
4615
|
*/
|
|
4499
|
-
declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio, scheduledTasks?: ResolvedScheduledTasks, unblockDependents?: ResolvedUnblockDependents): string;
|
|
4616
|
+
declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio, scheduledTasks?: ResolvedScheduledTasks, unblockDependents?: ResolvedUnblockDependents, excludeBundles?: ReadonlyArray<string>): string;
|
|
4500
4617
|
/**
|
|
4501
4618
|
* Resolve the orchestrator-conventions rule content and the
|
|
4502
4619
|
* check-blocked.sh procedure content for a given (possibly absent)
|
|
@@ -4508,7 +4625,7 @@ declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<Resolv
|
|
|
4508
4625
|
* can splice them into their rule map and procedure map in a single
|
|
4509
4626
|
* pass.
|
|
4510
4627
|
*/
|
|
4511
|
-
declare function resolveOrchestratorAssets(tierConfig?: AgentTierConfig, scopeGateConfig?: ScopeGateConfig, runRatioConfig?: RunRatioConfig, scheduledTasksConfig?: ScheduledTasksConfig, unblockDependentsConfig?: UnblockDependentsConfig): {
|
|
4628
|
+
declare function resolveOrchestratorAssets(tierConfig?: AgentTierConfig, scopeGateConfig?: ScopeGateConfig, runRatioConfig?: RunRatioConfig, scheduledTasksConfig?: ScheduledTasksConfig, unblockDependentsConfig?: UnblockDependentsConfig, excludeBundles?: ReadonlyArray<string>): {
|
|
4512
4629
|
readonly tiers: ReadonlyArray<ResolvedAgentTier>;
|
|
4513
4630
|
readonly scopeGate: ResolvedScopeGate;
|
|
4514
4631
|
readonly runRatio: ResolvedRunRatio;
|
|
@@ -4696,7 +4813,7 @@ declare function validateIssueTemplatesConfig(config?: IssueTemplatesConfig): Re
|
|
|
4696
4813
|
*
|
|
4697
4814
|
* When the convention is disabled, the rule renders a short stub.
|
|
4698
4815
|
*/
|
|
4699
|
-
declare function renderIssueTemplatesRuleContent(it: ResolvedIssueTemplates): string;
|
|
4816
|
+
declare function renderIssueTemplatesRuleContent(it: ResolvedIssueTemplates, hasDownstreamBundles?: boolean): string;
|
|
4700
4817
|
/**
|
|
4701
4818
|
* Render the short issue-templates hook section injected into a
|
|
4702
4819
|
* phased-agent bundle's workflow rule. The section cites the full
|
|
@@ -7717,11 +7834,11 @@ declare const VERSION: {
|
|
|
7717
7834
|
* Version of `pnpm/action-setup` to use in GitHub workflows.
|
|
7718
7835
|
* Tracks the version projen currently emits (see node_modules/projen/lib/javascript/node-project.js).
|
|
7719
7836
|
*/
|
|
7720
|
-
readonly PNPM_ACTION_SETUP_VERSION: "
|
|
7837
|
+
readonly PNPM_ACTION_SETUP_VERSION: "v6.0.5";
|
|
7721
7838
|
/**
|
|
7722
7839
|
* Version of PNPM to use in workflows at github actions.
|
|
7723
7840
|
*/
|
|
7724
|
-
readonly PNPM_VERSION: "
|
|
7841
|
+
readonly PNPM_VERSION: "11.0.8";
|
|
7725
7842
|
/**
|
|
7726
7843
|
* Version of Projen to use.
|
|
7727
7844
|
*/
|
|
@@ -7876,6 +7993,33 @@ interface PnpmWorkspaceOptions {
|
|
|
7876
7993
|
* See: https://pnpm.io/settings#minimumreleaseageexclude
|
|
7877
7994
|
*/
|
|
7878
7995
|
readonly minimumReleaseAgeExclude?: Array<string>;
|
|
7996
|
+
/**
|
|
7997
|
+
* A map of package names to booleans controlling whether each package may
|
|
7998
|
+
* execute "preinstall", "install", and/or "postinstall" scripts during
|
|
7999
|
+
* installation. Set a package's value to `true` to allow lifecycle scripts;
|
|
8000
|
+
* set it to `false` to silently block them without a warning.
|
|
8001
|
+
*
|
|
8002
|
+
* pnpm 11 replaced the legacy `onlyBuiltDependencies` (allow-list) and
|
|
8003
|
+
* `ignoredBuiltDependencies` (deny-list) settings with this single
|
|
8004
|
+
* `allowBuilds` map. Configulator translates the deprecated input fields
|
|
8005
|
+
* automatically: entries from `onlyBuiltDependencies` map to `true` and
|
|
8006
|
+
* entries from `ignoredBuiltDependencies` map to `false`. When a key
|
|
8007
|
+
* appears in both `allowBuilds` and one of the deprecated fields, the
|
|
8008
|
+
* explicit `allowBuilds` value wins.
|
|
8009
|
+
*
|
|
8010
|
+
* For cross-version compatibility, configulator emits BOTH the new
|
|
8011
|
+
* `allowBuilds` map AND the legacy `onlyBuiltDependencies` /
|
|
8012
|
+
* `ignoredBuiltDependencies` arrays in the generated YAML so consumers
|
|
8013
|
+
* on either pnpm 10 or pnpm 11 see correct lifecycle-script behavior
|
|
8014
|
+
* without changing their input.
|
|
8015
|
+
*
|
|
8016
|
+
* See: https://pnpm.io/settings#allowbuilds
|
|
8017
|
+
*
|
|
8018
|
+
* @default none (empty object)
|
|
8019
|
+
*/
|
|
8020
|
+
readonly allowBuilds?: {
|
|
8021
|
+
[packageName: string]: boolean;
|
|
8022
|
+
};
|
|
7879
8023
|
/**
|
|
7880
8024
|
* A list of package names that are allowed to execute "preinstall",
|
|
7881
8025
|
* "install", and/or "postinstall" scripts during installation. Only the
|
|
@@ -7889,6 +8033,12 @@ interface PnpmWorkspaceOptions {
|
|
|
7889
8033
|
*
|
|
7890
8034
|
* See: https://pnpm.io/settings#onlybuiltdependencies
|
|
7891
8035
|
*
|
|
8036
|
+
* @deprecated Deprecated in pnpm 11; configulator emits both legacy and
|
|
8037
|
+
* new keys for cross-version compatibility — pnpm 10 honors
|
|
8038
|
+
* the legacy keys, pnpm 11 honors `allowBuilds`. Prefer
|
|
8039
|
+
* `allowBuilds` as the input field going forward; entries
|
|
8040
|
+
* supplied here translate to `allowBuilds[<package>] = true`.
|
|
8041
|
+
*
|
|
7892
8042
|
* @default none (empty array)
|
|
7893
8043
|
*/
|
|
7894
8044
|
readonly onlyBuiltDependencies?: Array<string>;
|
|
@@ -7902,6 +8052,12 @@ interface PnpmWorkspaceOptions {
|
|
|
7902
8052
|
*
|
|
7903
8053
|
* https://pnpm.io/settings#ignoredbuiltdependencies
|
|
7904
8054
|
*
|
|
8055
|
+
* @deprecated Deprecated in pnpm 11; configulator emits both legacy and
|
|
8056
|
+
* new keys for cross-version compatibility — pnpm 10 honors
|
|
8057
|
+
* the legacy keys, pnpm 11 honors `allowBuilds`. Prefer
|
|
8058
|
+
* `allowBuilds` as the input field going forward; entries
|
|
8059
|
+
* supplied here translate to `allowBuilds[<package>] = false`.
|
|
8060
|
+
*
|
|
7905
8061
|
* @default none (empty array)
|
|
7906
8062
|
*/
|
|
7907
8063
|
readonly ignoredBuiltDependencies?: Array<string>;
|
|
@@ -8012,6 +8168,21 @@ declare class PnpmWorkspace extends Component {
|
|
|
8012
8168
|
* See: https://pnpm.io/settings#minimumreleaseageexclude
|
|
8013
8169
|
*/
|
|
8014
8170
|
minimumReleaseAgeExclude: Array<string>;
|
|
8171
|
+
/**
|
|
8172
|
+
* A map of package names to booleans controlling whether each package may
|
|
8173
|
+
* execute lifecycle scripts during install. `true` allows the scripts;
|
|
8174
|
+
* `false` silently blocks them.
|
|
8175
|
+
*
|
|
8176
|
+
* pnpm 11+ replaced `onlyBuiltDependencies` and `ignoredBuiltDependencies`
|
|
8177
|
+
* with this single map. Configulator translates the deprecated input
|
|
8178
|
+
* fields into `allowBuilds` automatically and emits both legacy and new
|
|
8179
|
+
* keys in the generated YAML for pnpm 10/11 cross-version compatibility.
|
|
8180
|
+
*
|
|
8181
|
+
* See: https://pnpm.io/settings#allowbuilds
|
|
8182
|
+
*/
|
|
8183
|
+
allowBuilds: {
|
|
8184
|
+
[packageName: string]: boolean;
|
|
8185
|
+
};
|
|
8015
8186
|
/**
|
|
8016
8187
|
* A list of package names that are allowed to execute "preinstall",
|
|
8017
8188
|
* "install", and/or "postinstall" scripts during installation. Only the
|
|
@@ -8024,6 +8195,12 @@ declare class PnpmWorkspace extends Component {
|
|
|
8024
8195
|
* versions of the package may run lifecycle scripts:
|
|
8025
8196
|
*
|
|
8026
8197
|
* See: https://pnpm.io/settings#onlybuiltdependencies
|
|
8198
|
+
*
|
|
8199
|
+
* @deprecated Deprecated in pnpm 11; configulator emits both legacy and
|
|
8200
|
+
* new keys for cross-version compatibility — pnpm 10 honors
|
|
8201
|
+
* the legacy keys, pnpm 11 honors `allowBuilds`. Prefer
|
|
8202
|
+
* `allowBuilds` as the input field going forward; entries
|
|
8203
|
+
* supplied here translate to `allowBuilds[<package>] = true`.
|
|
8027
8204
|
*/
|
|
8028
8205
|
onlyBuiltDependencies: Array<string>;
|
|
8029
8206
|
/**
|
|
@@ -8035,6 +8212,12 @@ declare class PnpmWorkspace extends Component {
|
|
|
8035
8212
|
* lifecycle scripts are not needed.
|
|
8036
8213
|
*
|
|
8037
8214
|
* https://pnpm.io/settings#ignoredbuiltdependencies
|
|
8215
|
+
*
|
|
8216
|
+
* @deprecated Deprecated in pnpm 11; configulator emits both legacy and
|
|
8217
|
+
* new keys for cross-version compatibility — pnpm 10 honors
|
|
8218
|
+
* the legacy keys, pnpm 11 honors `allowBuilds`. Prefer
|
|
8219
|
+
* `allowBuilds` as the input field going forward; entries
|
|
8220
|
+
* supplied here translate to `allowBuilds[<package>] = false`.
|
|
8038
8221
|
*/
|
|
8039
8222
|
ignoredBuiltDependencies: Array<string>;
|
|
8040
8223
|
/**
|
|
@@ -9301,6 +9484,25 @@ declare class AwsCdkProject extends awscdk.AwsCdkTypeScriptApp {
|
|
|
9301
9484
|
addDeploymentTarget(options: AwsDeploymentTargetOptions): AwsDeploymentTarget;
|
|
9302
9485
|
}
|
|
9303
9486
|
|
|
9487
|
+
/**
|
|
9488
|
+
* Emits a `.nvmrc` file at the project root containing the Node.js
|
|
9489
|
+
* version pinned in {@link VERSION.NODE_WORKFLOWS}.
|
|
9490
|
+
*
|
|
9491
|
+
* The file gives `nvm`, `fnm`, `volta`, and IDE plugins a single
|
|
9492
|
+
* source of truth for the Node version local development should use,
|
|
9493
|
+
* matching the version every CI workflow installs via
|
|
9494
|
+
* `actions/setup-node`. Without it, devs on hosts whose default Node
|
|
9495
|
+
* is older than the floor required by tooling (Astro 6, Starlight,
|
|
9496
|
+
* pnpm 11) silently break after a regen.
|
|
9497
|
+
*
|
|
9498
|
+
* Projen has no built-in `.nvmrc` knob — the closest input is
|
|
9499
|
+
* `workflowNodeVersion`, which only drives CI. This component closes
|
|
9500
|
+
* the local-dev gap.
|
|
9501
|
+
*/
|
|
9502
|
+
declare class Nvmrc extends Component {
|
|
9503
|
+
constructor(project: Project$1);
|
|
9504
|
+
}
|
|
9505
|
+
|
|
9304
9506
|
/**
|
|
9305
9507
|
* Provides structured project metadata consumed by AgentConfig, skills,
|
|
9306
9508
|
* and other configulator features at synthesis time.
|
|
@@ -9562,4 +9764,80 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
9562
9764
|
*/
|
|
9563
9765
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
9564
9766
|
|
|
9565
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffCheckOptions, type ApiDiffFinding, type ApiDiffResult, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApiSurfaceEntry, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CompileFencedSamplesOptions, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PRIORITY_LABELS, DEFAULT_PRODUCT_CONTEXT_PATH, DEFAULT_PROGRESS_FILES_ENABLED, DEFAULT_PROGRESS_FILES_FILENAME_PATTERN, DEFAULT_PROGRESS_FILES_FORMAT, DEFAULT_PROGRESS_FILES_STALE_AFTER_HOURS, DEFAULT_PROGRESS_FILES_STATE_DIR, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_SAMPLE_COMPILER_OPTIONS, DEFAULT_SCHEDULED_TASKS_ROOT, DEFAULT_SCHEDULED_TASK_ENTRIES, DEFAULT_SHARED_EDITING_CONFLICT_STRATEGY, DEFAULT_SHARED_EDITING_EMIT_HELPER, DEFAULT_SHARED_EDITING_ENABLED, DEFAULT_SHARED_EDITING_VERIFY_COMMIT, DEFAULT_SHARED_INDEX_PATHS, DEFAULT_SKILL_EVALS_EMIT_RUNNER, DEFAULT_SKILL_EVALS_ENABLED, DEFAULT_SKILL_EVALS_SKILLS_ROOT, DEFAULT_SOURCES_THRESHOLDS, DEFAULT_STATE_FILE_PATH, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, MonorepoProject, type MonorepoProjectOptions, type OrganizationMetadata, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateBundleOverride, type ScopeGateConfig, type ScopeGateThresholds, type SharedEditingConfig, type SkillEvalsConfig, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, type TemplateResolveResult, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStubIndexConventionRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
|
|
9767
|
+
/**
|
|
9768
|
+
* Rewrites every `pnpm/action-setup@vX` step `uses` field reachable from
|
|
9769
|
+
* a project's GitHub component (and its sub-projects) to the version
|
|
9770
|
+
* pinned in {@link VERSION.PNPM_ACTION_SETUP_VERSION}.
|
|
9771
|
+
*
|
|
9772
|
+
* Projen's NodeProject and JsiiProject both hardcode a `pnpm/action-setup`
|
|
9773
|
+
* pin in their generated build / release / upgrade workflows. When that
|
|
9774
|
+
* pin lags behind the version required by the pnpm release we run in CI
|
|
9775
|
+
* (e.g. v5 cannot install pnpm 11), the action installs the wrong pnpm
|
|
9776
|
+
* version and CI breaks. This helper post-patches every workflow owned
|
|
9777
|
+
* by `project.github` so the pin tracks our centralised constant.
|
|
9778
|
+
*
|
|
9779
|
+
* Two passes run in sequence:
|
|
9780
|
+
*
|
|
9781
|
+
* 1. **Eager step arrays.** Walks every {@link Component} on the
|
|
9782
|
+
* project (and on its sub-projects) for the well-known fields
|
|
9783
|
+
* enumerated in {@link STEP_ARRAY_FIELDS}. Projen's BuildWorkflow
|
|
9784
|
+
* and Release components hold their pnpm-setup steps in these
|
|
9785
|
+
* arrays before the workflow's lazy step closures resolve them.
|
|
9786
|
+
* 2. **Direct workflow jobs.** Walks every job step on every
|
|
9787
|
+
* `GithubWorkflow` for jobs whose steps are eagerly populated
|
|
9788
|
+
* (e.g. the upgrade workflow). Steps held inside lazy closures
|
|
9789
|
+
* are skipped — those are reached via pass 1.
|
|
9790
|
+
*
|
|
9791
|
+
* @param project The project whose GitHub workflows should be patched.
|
|
9792
|
+
*/
|
|
9793
|
+
declare function pinPnpmActionSetup(project: Project$1): void;
|
|
9794
|
+
|
|
9795
|
+
/**
|
|
9796
|
+
* Rewrites every Node-version source reachable from a project's
|
|
9797
|
+
* GitHub component (and its sub-projects) to the version pinned in
|
|
9798
|
+
* {@link VERSION.NODE_WORKFLOWS}.
|
|
9799
|
+
*
|
|
9800
|
+
* Projen hardcodes `node-version: "lts/*"` in its release workflow
|
|
9801
|
+
* generator (via {@code Publisher.workflowNodeVersion}); configulator-
|
|
9802
|
+
* owned workflows already pass through {@link VERSION.NODE_WORKFLOWS}.
|
|
9803
|
+
* Without this patch, the two sources disagree (release workflows
|
|
9804
|
+
* install whatever Node lts/* resolves to; build / upgrade workflows
|
|
9805
|
+
* install Node 24). This helper post-patches every Node-version
|
|
9806
|
+
* source so a single source of truth — the centralised
|
|
9807
|
+
* {@link VERSION.NODE_WORKFLOWS} constant — drives every workflow
|
|
9808
|
+
* this repo and its consumers generate.
|
|
9809
|
+
*
|
|
9810
|
+
* Three passes run in sequence:
|
|
9811
|
+
*
|
|
9812
|
+
* 1. **Component Node-version fields.** Walks every {@link Component}
|
|
9813
|
+
* on the project (and on its sub-projects) and rewrites the
|
|
9814
|
+
* well-known fields enumerated in {@link NODE_VERSION_FIELDS} —
|
|
9815
|
+
* notably {@code Publisher.workflowNodeVersion}, which projen
|
|
9816
|
+
* renders into {@code tools.node.version} on the publish job
|
|
9817
|
+
* (and ultimately into the synthesized
|
|
9818
|
+
* `actions/setup-node` step).
|
|
9819
|
+
* 2. **Component step arrays.** Walks every {@link Component} on the
|
|
9820
|
+
* project (and on its sub-projects) for the well-known step-array
|
|
9821
|
+
* fields enumerated in {@link STEP_ARRAY_FIELDS}. Projen's
|
|
9822
|
+
* BuildWorkflow and Release components hold their pre/post-build
|
|
9823
|
+
* steps in these arrays before the workflow's lazy step closures
|
|
9824
|
+
* resolve them.
|
|
9825
|
+
* 3. **Direct workflow jobs.** Walks every job on every
|
|
9826
|
+
* `GithubWorkflow`. For each job:
|
|
9827
|
+
* - If `tools.node.version` is set (the lazy `setupTools` path
|
|
9828
|
+
* that synthesises the setup-node step at render time),
|
|
9829
|
+
* rewrite it.
|
|
9830
|
+
* - If `steps` is already an array (i.e. not a lazy closure),
|
|
9831
|
+
* patch any `actions/setup-node` step in place.
|
|
9832
|
+
*
|
|
9833
|
+
* The step-level patch only mutates `with["node-version"]`. Other
|
|
9834
|
+
* fields on `with` (`cache`, `cache-dependency-path`,
|
|
9835
|
+
* `registry-url`, `package-manager-cache`, etc.) are preserved
|
|
9836
|
+
* untouched. The step's `uses` field is also left alone — this
|
|
9837
|
+
* helper pins the input, not the action version pin.
|
|
9838
|
+
*
|
|
9839
|
+
* @param project The project whose GitHub workflows should be patched.
|
|
9840
|
+
*/
|
|
9841
|
+
declare function pinSetupNodeVersion(project: Project$1): void;
|
|
9842
|
+
|
|
9843
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffCheckOptions, type ApiDiffFinding, type ApiDiffResult, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApiSurfaceEntry, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CompileFencedSamplesOptions, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PRIORITY_LABELS, DEFAULT_PRODUCT_CONTEXT_PATH, DEFAULT_PROGRESS_FILES_ENABLED, DEFAULT_PROGRESS_FILES_FILENAME_PATTERN, DEFAULT_PROGRESS_FILES_FORMAT, DEFAULT_PROGRESS_FILES_STALE_AFTER_HOURS, DEFAULT_PROGRESS_FILES_STATE_DIR, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_SAMPLE_COMPILER_OPTIONS, DEFAULT_SCHEDULED_TASKS_ROOT, DEFAULT_SCHEDULED_TASK_ENTRIES, DEFAULT_SHARED_EDITING_CONFLICT_STRATEGY, DEFAULT_SHARED_EDITING_EMIT_HELPER, DEFAULT_SHARED_EDITING_ENABLED, DEFAULT_SHARED_EDITING_VERIFY_COMMIT, DEFAULT_SHARED_INDEX_PATHS, DEFAULT_SKILL_EVALS_EMIT_RUNNER, DEFAULT_SKILL_EVALS_ENABLED, DEFAULT_SKILL_EVALS_SKILLS_ROOT, DEFAULT_SOURCES_THRESHOLDS, DEFAULT_STATE_FILE_PATH, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateBundleOverride, type ScopeGateConfig, type ScopeGateThresholds, type SharedEditingConfig, type SkillEvalsConfig, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, type TemplateResolveResult, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isTypeLabelOwnedByExcluded, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStubIndexConventionRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
|