@codedrifters/configulator 0.0.454 → 0.0.456

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 CHANGED
@@ -9886,6 +9886,20 @@ declare class AwsDeploymentTarget extends Component {
9886
9886
  *
9887
9887
  ****************************************************************************/
9888
9888
  private configureWatchTask;
9889
+ /*****************************************************************************
9890
+ *
9891
+ * Destroy Tasks
9892
+ *
9893
+ * - If local deploy, add a destroy task.
9894
+ *
9895
+ * Mirrors the deploy task family so `destroyDefaults`, per-account
9896
+ * `destroy` overrides, and a target's `cdkOptions.destroy` all reach a
9897
+ * rendered command. Projen's generic `destroy` passthrough is deliberately
9898
+ * left intact as an ad-hoc escape hatch — unlike the generic `deploy` and
9899
+ * `watch` tasks, it is not reset to a disabled stub.
9900
+ *
9901
+ ****************************************************************************/
9902
+ private configureDestroyTask;
9889
9903
  }
9890
9904
 
9891
9905
  /*******************************************************************************
@@ -11906,6 +11920,107 @@ declare const MINIMUM_RELEASE_AGE: {
11906
11920
  SIX_DAYS: number;
11907
11921
  ONE_WEEK: number;
11908
11922
  };
11923
+ /**
11924
+ * Platform selectors used by `supportedArchitectures` to widen the set of
11925
+ * optional dependencies pnpm downloads beyond the current host.
11926
+ *
11927
+ * See: https://pnpm.io/settings#supportedarchitectures
11928
+ */
11929
+ interface PnpmSupportedArchitectures {
11930
+ /**
11931
+ * Operating systems to fetch optional dependencies for, e.g.
11932
+ * `["current", "win32", "linux"]`.
11933
+ */
11934
+ readonly os?: Array<string>;
11935
+ /**
11936
+ * CPU architectures to fetch optional dependencies for, e.g.
11937
+ * `["current", "x64", "arm64"]`.
11938
+ */
11939
+ readonly cpu?: Array<string>;
11940
+ /**
11941
+ * libc implementations to fetch optional dependencies for, e.g.
11942
+ * `["current", "glibc", "musl"]`.
11943
+ */
11944
+ readonly libc?: Array<string>;
11945
+ }
11946
+ /**
11947
+ * Rules that relax pnpm's peer-dependency diagnostics.
11948
+ *
11949
+ * See: https://pnpm.io/settings#peerdependencyrules
11950
+ */
11951
+ interface PnpmPeerDependencyRules {
11952
+ /**
11953
+ * Peer dependency names (glob patterns allowed) whose "missing peer"
11954
+ * warnings are suppressed.
11955
+ */
11956
+ readonly ignoreMissing?: Array<string>;
11957
+ /**
11958
+ * Peer dependency names (glob patterns allowed) that may resolve to any
11959
+ * version without a version-mismatch warning.
11960
+ */
11961
+ readonly allowAny?: Array<string>;
11962
+ /**
11963
+ * Additional version ranges accepted for a peer dependency, keyed by
11964
+ * package name or by `parent>child` selector.
11965
+ */
11966
+ readonly allowedVersions?: {
11967
+ [selector: string]: string;
11968
+ };
11969
+ }
11970
+ /**
11971
+ * pnpm 11's `update` block, controlling `pnpm update` behavior.
11972
+ *
11973
+ * Supersedes the deprecated `updateConfig` block. When both are set, pnpm
11974
+ * ignores `updateConfig` in favor of `update` and emits a warning — so
11975
+ * configulator emits only the winning key.
11976
+ *
11977
+ * See: https://pnpm.io/settings#update
11978
+ */
11979
+ interface PnpmUpdateSettings {
11980
+ /**
11981
+ * Packages excluded from `pnpm update`. Replaces the deprecated
11982
+ * `updateConfig.ignoreDependencies`.
11983
+ */
11984
+ readonly ignoreDeps?: Array<string>;
11985
+ /**
11986
+ * Whether `pnpm update` writes a changeset file.
11987
+ */
11988
+ readonly changeset?: boolean;
11989
+ /**
11990
+ * Whether `pnpm update` also updates GitHub Actions workflow pins.
11991
+ */
11992
+ readonly githubActions?: boolean;
11993
+ /**
11994
+ * GitHub server used when resolving GitHub Actions updates.
11995
+ */
11996
+ readonly githubActionsServer?: string;
11997
+ }
11998
+ /**
11999
+ * The deprecated `updateConfig` block.
12000
+ *
12001
+ * @deprecated Superseded by `update` in pnpm 11. Retained so consumers on
12002
+ * older pnpm majors keep a typed route; prefer `update`.
12003
+ *
12004
+ * See: https://pnpm.io/settings#updateconfig
12005
+ */
12006
+ interface PnpmUpdateConfigSettings {
12007
+ /**
12008
+ * Packages excluded from `pnpm update`.
12009
+ */
12010
+ readonly ignoreDependencies?: Array<string>;
12011
+ /**
12012
+ * Whether `pnpm update` writes a changeset file.
12013
+ */
12014
+ readonly changeset?: boolean;
12015
+ /**
12016
+ * Whether `pnpm update` also updates GitHub Actions workflow pins.
12017
+ */
12018
+ readonly githubActions?: boolean;
12019
+ /**
12020
+ * GitHub server used when resolving GitHub Actions updates.
12021
+ */
12022
+ readonly githubActionsServer?: string;
12023
+ }
11909
12024
  interface PnpmWorkspaceOptions {
11910
12025
  /**
11911
12026
  * Filename for the pnpm workspace file. This should probably never change.
@@ -12172,7 +12287,570 @@ interface PnpmWorkspaceOptions {
12172
12287
  * @see https://pnpm.io/settings#minimumreleaseageignoremissingtime
12173
12288
  */
12174
12289
  readonly minimumReleaseAgeIgnoreMissingTime?: boolean;
12290
+ /*****************************************************************************
12291
+ *
12292
+ * DEPENDENCY GRAPH
12293
+ *
12294
+ ****************************************************************************/
12295
+ /**
12296
+ * Version overrides applied to any dependency in the graph, including
12297
+ * transitive ones that no direct dependency would otherwise let you pin.
12298
+ *
12299
+ * Keys accept pnpm's full selector syntax — a bare name (`"foo"`), a
12300
+ * range-scoped selector (`"@smithy/types@^4"`), or a parent-scoped
12301
+ * selector (`"parent>child"`). Rendered verbatim.
12302
+ *
12303
+ * ```ts
12304
+ * overrides: {
12305
+ * "@smithy/types@^4": "4.17.2",
12306
+ * "cli-table3>colors": "^1.4.0",
12307
+ * }
12308
+ * ```
12309
+ *
12310
+ * @default undefined (key omitted)
12311
+ *
12312
+ * @see https://pnpm.io/settings#overrides
12313
+ */
12314
+ readonly overrides?: {
12315
+ [selector: string]: string;
12316
+ };
12317
+ /**
12318
+ * Extra fields merged into a third-party package's manifest at install
12319
+ * time — the supported way to repair a dependency that ships an incorrect
12320
+ * or incomplete `package.json` without patching it.
12321
+ *
12322
+ * @default undefined (key omitted)
12323
+ *
12324
+ * @see https://pnpm.io/settings#packageextensions
12325
+ */
12326
+ readonly packageExtensions?: {
12327
+ [packageSelector: string]: unknown;
12328
+ };
12329
+ /**
12330
+ * Patch files applied to dependencies, keyed by `name@version` and valued
12331
+ * with a repo-relative path to the `.patch` file.
12332
+ *
12333
+ * @default undefined (key omitted)
12334
+ *
12335
+ * @see https://pnpm.io/settings#patcheddependencies
12336
+ */
12337
+ readonly patchedDependencies?: {
12338
+ [packageAndVersion: string]: string;
12339
+ };
12340
+ /**
12341
+ * Directory that `pnpm patch-commit` writes patch files into.
12342
+ *
12343
+ * @default undefined (key omitted; pnpm defaults to "patches")
12344
+ *
12345
+ * @see https://pnpm.io/settings#patchesdir
12346
+ */
12347
+ readonly patchesDir?: string;
12348
+ /**
12349
+ * Whether an entry in `patchedDependencies` that matches no installed
12350
+ * package is tolerated instead of failing the install.
12351
+ *
12352
+ * @default undefined (key omitted; pnpm uses its built-in default)
12353
+ *
12354
+ * @see https://pnpm.io/settings#allowunusedpatches
12355
+ */
12356
+ readonly allowUnusedPatches?: boolean;
12357
+ /**
12358
+ * Deprecation warnings to silence, keyed by package name (or
12359
+ * `name@range`) and valued with the version range whose deprecation
12360
+ * message is suppressed.
12361
+ *
12362
+ * @default undefined (key omitted)
12363
+ *
12364
+ * @see https://pnpm.io/settings#alloweddeprecatedversions
12365
+ */
12366
+ readonly allowedDeprecatedVersions?: {
12367
+ [packageName: string]: string;
12368
+ };
12369
+ /**
12370
+ * Packages whose lifecycle scripts never run, regardless of the
12371
+ * `allowBuilds` map.
12372
+ *
12373
+ * Composes with the `allowBuilds` / legacy built-dependencies hybrid
12374
+ * emission: every entry is merged into the emitted `allowBuilds` map as
12375
+ * `false` (so the derived legacy allow/deny arrays stay consistent), and
12376
+ * the verbatim `neverBuiltDependencies` array is emitted alongside.
12377
+ * Precedence runs `onlyBuiltDependencies` → `ignoredBuiltDependencies` →
12378
+ * `neverBuiltDependencies` → explicit `allowBuilds`, so an explicit
12379
+ * `allowBuilds` entry still wins.
12380
+ *
12381
+ * @default undefined (key omitted)
12382
+ *
12383
+ * @see https://pnpm.io/settings#neverbuiltdependencies
12384
+ */
12385
+ readonly neverBuiltDependencies?: Array<string>;
12386
+ /**
12387
+ * Optional dependencies that are never installed, by package name.
12388
+ *
12389
+ * @default undefined (key omitted)
12390
+ *
12391
+ * @see https://pnpm.io/settings#ignoredoptionaldependencies
12392
+ */
12393
+ readonly ignoredOptionalDependencies?: Array<string>;
12394
+ /**
12395
+ * Platforms to fetch optional dependencies for beyond the current host —
12396
+ * the usual way to make a lockfile usable across CI runners and developer
12397
+ * machines with different OS/CPU/libc combinations.
12398
+ *
12399
+ * @default undefined (key omitted)
12400
+ *
12401
+ * @see https://pnpm.io/settings#supportedarchitectures
12402
+ */
12403
+ readonly supportedArchitectures?: PnpmSupportedArchitectures;
12404
+ /**
12405
+ * Packages installed before anything else and allowed to contribute
12406
+ * configuration (hooks, patches, catalogs) to the workspace, keyed by
12407
+ * package name and valued with `version+integrity`.
12408
+ *
12409
+ * @default undefined (key omitted)
12410
+ *
12411
+ * @see https://pnpm.io/settings#configdependencies
12412
+ */
12413
+ readonly configDependencies?: {
12414
+ [packageName: string]: string;
12415
+ };
12416
+ /**
12417
+ * How pnpm picks a version when several satisfy a range.
12418
+ *
12419
+ * @default undefined (key omitted; pnpm defaults to "highest")
12420
+ *
12421
+ * @see https://pnpm.io/settings#resolutionmode
12422
+ */
12423
+ readonly resolutionMode?: "highest" | "time-based" | "lowest-direct";
12424
+ /**
12425
+ * Range prefix written for newly added dependencies, e.g. `"^"` or `"~"`.
12426
+ *
12427
+ * @default undefined (key omitted)
12428
+ *
12429
+ * @see https://pnpm.io/settings#saveprefix
12430
+ */
12431
+ readonly savePrefix?: string;
12432
+ /**
12433
+ * Whether newly added dependencies are pinned to an exact version.
12434
+ *
12435
+ * @default undefined (key omitted)
12436
+ *
12437
+ * @see https://pnpm.io/settings#saveexact
12438
+ */
12439
+ readonly saveExact?: boolean;
12440
+ /*****************************************************************************
12441
+ *
12442
+ * SUPPLY-CHAIN POSTURE
12443
+ *
12444
+ * Extends the `minimumReleaseAge` stance above.
12445
+ *
12446
+ ****************************************************************************/
12447
+ /**
12448
+ * Whether pnpm rejects a package whose publish-trust level has regressed
12449
+ * (e.g. a package previously published with provenance that no longer is).
12450
+ *
12451
+ * @default undefined (key omitted; pnpm uses its built-in default)
12452
+ *
12453
+ * @see https://pnpm.io/settings#trustpolicy
12454
+ */
12455
+ readonly trustPolicy?: "off" | "no-downgrade";
12456
+ /**
12457
+ * Packages exempt from `trustPolicy`, as `name` or `name@range` selectors.
12458
+ *
12459
+ * @default undefined (key omitted)
12460
+ *
12461
+ * @see https://pnpm.io/settings#trustpolicyexclude
12462
+ */
12463
+ readonly trustPolicyExclude?: Array<string>;
12464
+ /**
12465
+ * Unix timestamp (seconds) after which `trustPolicy` stops applying, used
12466
+ * to grandfather in packages published before a cutoff.
12467
+ *
12468
+ * @default undefined (key omitted)
12469
+ *
12470
+ * @see https://pnpm.io/settings#trustpolicyignoreafter
12471
+ */
12472
+ readonly trustPolicyIgnoreAfter?: number;
12473
+ /**
12474
+ * Whether transitive dependencies resolved through exotic (non-registry)
12475
+ * specifiers — git, tarball URL, local path — are rejected. Direct
12476
+ * dependencies are unaffected.
12477
+ *
12478
+ * @default undefined (key omitted; pnpm 11 defaults to true)
12479
+ *
12480
+ * @see https://pnpm.io/settings#blockexoticsubdeps
12481
+ */
12482
+ readonly blockExoticSubdeps?: boolean;
12483
+ /**
12484
+ * Whether `minimumReleaseAgeExclude` entries are pruned to those actually
12485
+ * resolved in the lockfile.
12486
+ *
12487
+ * @default undefined (key omitted; pnpm defaults to false)
12488
+ *
12489
+ * @see https://pnpm.io/settings#minimumreleaseageexcludeprune
12490
+ */
12491
+ readonly minimumReleaseAgeExcludePrune?: boolean;
12492
+ /*****************************************************************************
12493
+ *
12494
+ * PEER DEPENDENCIES
12495
+ *
12496
+ ****************************************************************************/
12497
+ /**
12498
+ * Whether missing peer dependencies are installed automatically.
12499
+ *
12500
+ * @default undefined (key omitted)
12501
+ *
12502
+ * @see https://pnpm.io/settings#autoinstallpeers
12503
+ */
12504
+ readonly autoInstallPeers?: boolean;
12505
+ /**
12506
+ * Whether an unresolved peer dependency fails the install.
12507
+ *
12508
+ * @default undefined (key omitted)
12509
+ *
12510
+ * @see https://pnpm.io/settings#strictpeerdependencies
12511
+ */
12512
+ readonly strictPeerDependencies?: boolean;
12513
+ /**
12514
+ * Whether dependents are deduplicated when they resolve peers identically.
12515
+ *
12516
+ * @default undefined (key omitted)
12517
+ *
12518
+ * @see https://pnpm.io/settings#dedupepeerdependents
12519
+ */
12520
+ readonly dedupePeerDependents?: boolean;
12521
+ /**
12522
+ * Whether peer dependencies may resolve from the workspace root's
12523
+ * dependencies.
12524
+ *
12525
+ * @default undefined (key omitted; pnpm 11 defaults to true)
12526
+ *
12527
+ * @see https://pnpm.io/settings#resolvepeersfromworkspaceroot
12528
+ */
12529
+ readonly resolvePeersFromWorkspaceRoot?: boolean;
12530
+ /**
12531
+ * Rules that relax peer-dependency diagnostics for known-good mismatches.
12532
+ *
12533
+ * @default undefined (key omitted)
12534
+ *
12535
+ * @see https://pnpm.io/settings#peerdependencyrules
12536
+ */
12537
+ readonly peerDependencyRules?: PnpmPeerDependencyRules;
12538
+ /*****************************************************************************
12539
+ *
12540
+ * WORKSPACE SEMANTICS
12541
+ *
12542
+ ****************************************************************************/
12543
+ /**
12544
+ * Whether dependencies satisfied by a workspace package link to it rather
12545
+ * than resolving from the registry. `"deep"` also links transitively.
12546
+ *
12547
+ * @default undefined (key omitted)
12548
+ *
12549
+ * @see https://pnpm.io/settings#linkworkspacepackages
12550
+ */
12551
+ readonly linkWorkspacePackages?: boolean | "deep";
12552
+ /**
12553
+ * Whether a workspace package is preferred over a registry version even
12554
+ * when the registry has a higher matching version.
12555
+ *
12556
+ * @default undefined (key omitted)
12557
+ *
12558
+ * @see https://pnpm.io/settings#preferworkspacepackages
12559
+ */
12560
+ readonly preferWorkspacePackages?: boolean;
12561
+ /**
12562
+ * Whether workspace dependencies are hard-linked into the dependent's
12563
+ * `node_modules` instead of symlinked.
12564
+ *
12565
+ * @default undefined (key omitted)
12566
+ *
12567
+ * @see https://pnpm.io/settings#injectworkspacepackages
12568
+ */
12569
+ readonly injectWorkspacePackages?: boolean;
12570
+ /**
12571
+ * Whether injected workspace dependencies are deduplicated.
12572
+ *
12573
+ * @default undefined (key omitted)
12574
+ *
12575
+ * @see https://pnpm.io/settings#dedupeinjecteddeps
12576
+ */
12577
+ readonly dedupeInjectedDeps?: boolean;
12578
+ /**
12579
+ * Script names after which injected workspace dependencies are re-synced.
12580
+ *
12581
+ * @default undefined (key omitted)
12582
+ *
12583
+ * @see https://pnpm.io/settings#syncinjecteddepsafterscripts
12584
+ */
12585
+ readonly syncInjectedDepsAfterScripts?: Array<string>;
12586
+ /**
12587
+ * How workspace dependencies are written to `package.json`. `"rolling"`
12588
+ * writes `workspace:^`, `true` writes `workspace:<version>`.
12589
+ *
12590
+ * @default undefined (key omitted; pnpm defaults to "rolling")
12591
+ *
12592
+ * @see https://pnpm.io/settings#saveworkspaceprotocol
12593
+ */
12594
+ readonly saveWorkspaceProtocol?: boolean | "rolling";
12595
+ /**
12596
+ * Whether recursive commands include the workspace root project.
12597
+ *
12598
+ * @default undefined (key omitted)
12599
+ *
12600
+ * @see https://pnpm.io/settings#includeworkspaceroot
12601
+ */
12602
+ readonly includeWorkspaceRoot?: boolean;
12603
+ /**
12604
+ * Whether the workspace uses a single shared lockfile at the root.
12605
+ *
12606
+ * @default undefined (key omitted; pnpm defaults to true)
12607
+ *
12608
+ * @see https://pnpm.io/settings#sharedworkspacelockfile
12609
+ */
12610
+ readonly sharedWorkspaceLockfile?: boolean;
12611
+ /**
12612
+ * Whether a cyclic dependency between workspace packages fails the install.
12613
+ *
12614
+ * @default undefined (key omitted)
12615
+ *
12616
+ * @see https://pnpm.io/settings#disallowworkspacecycles
12617
+ */
12618
+ readonly disallowWorkspaceCycles?: boolean;
12619
+ /**
12620
+ * Whether workspace packages are hoisted to the root `node_modules`.
12621
+ *
12622
+ * @default undefined (key omitted)
12623
+ *
12624
+ * @see https://pnpm.io/settings#hoistworkspacepackages
12625
+ */
12626
+ readonly hoistWorkspacePackages?: boolean;
12627
+ /**
12628
+ * Scripts every workspace package must define; a missing script fails the
12629
+ * install.
12630
+ *
12631
+ * @default undefined (key omitted)
12632
+ *
12633
+ * @see https://pnpm.io/settings#requiredscripts
12634
+ */
12635
+ readonly requiredScripts?: Array<string>;
12636
+ /*****************************************************************************
12637
+ *
12638
+ * LAYOUT AND LOCKFILE
12639
+ *
12640
+ ****************************************************************************/
12641
+ /**
12642
+ * How `node_modules` is laid out — pnpm's symlinked store (`"isolated"`),
12643
+ * a flat npm-style tree (`"hoisted"`), or Plug'n'Play (`"pnp"`).
12644
+ *
12645
+ * @default undefined (key omitted; pnpm defaults to "isolated")
12646
+ *
12647
+ * @see https://pnpm.io/settings#nodelinker
12648
+ */
12649
+ readonly nodeLinker?: "isolated" | "hoisted" | "pnp";
12650
+ /**
12651
+ * Glob patterns hoisted into the hidden `node_modules/.pnpm/node_modules`
12652
+ * directory.
12653
+ *
12654
+ * @default undefined (key omitted)
12655
+ *
12656
+ * @see https://pnpm.io/settings#hoistpattern
12657
+ */
12658
+ readonly hoistPattern?: Array<string>;
12659
+ /**
12660
+ * Glob patterns hoisted all the way to the root `node_modules`, making
12661
+ * them importable by any package.
12662
+ *
12663
+ * @default undefined (key omitted)
12664
+ *
12665
+ * @see https://pnpm.io/settings#publichoistpattern
12666
+ */
12667
+ readonly publicHoistPattern?: Array<string>;
12668
+ /**
12669
+ * Whether every dependency is hoisted to the root `node_modules`,
12670
+ * reproducing npm's flat layout.
12671
+ *
12672
+ * @default undefined (key omitted)
12673
+ *
12674
+ * @see https://pnpm.io/settings#shamefullyhoist
12675
+ */
12676
+ readonly shamefullyHoist?: boolean;
12677
+ /**
12678
+ * Whether an up-to-date lockfile short-circuits resolution.
12679
+ *
12680
+ * @default undefined (key omitted; pnpm defaults to true)
12681
+ *
12682
+ * @see https://pnpm.io/settings#preferfrozenlockfile
12683
+ */
12684
+ readonly preferFrozenLockfile?: boolean;
12685
+ /**
12686
+ * Maximum length of the peer-resolution suffix in virtual store directory
12687
+ * names, lowered when Windows path limits bite.
12688
+ *
12689
+ * @default undefined (key omitted)
12690
+ *
12691
+ * @see https://pnpm.io/settings#peerssuffixmaxlength
12692
+ */
12693
+ readonly peersSuffixMaxLength?: number;
12694
+ /*****************************************************************************
12695
+ *
12696
+ * SCRIPTS, ENGINES, PUBLISH
12697
+ *
12698
+ ****************************************************************************/
12699
+ /**
12700
+ * Whether `pre` and `post` script hooks run around a named script.
12701
+ *
12702
+ * @default undefined (key omitted)
12703
+ *
12704
+ * @see https://pnpm.io/settings#enableprepostscripts
12705
+ */
12706
+ readonly enablePrePostScripts?: boolean;
12707
+ /**
12708
+ * Value of `NODE_OPTIONS` for lifecycle scripts, e.g.
12709
+ * `"--max-old-space-size=4096"`.
12710
+ *
12711
+ * @default undefined (key omitted)
12712
+ *
12713
+ * @see https://pnpm.io/settings#nodeoptions
12714
+ */
12715
+ readonly nodeOptions?: string;
12716
+ /**
12717
+ * Whether a package whose `engines` field excludes the running Node
12718
+ * version fails the install.
12719
+ *
12720
+ * @default undefined (key omitted)
12721
+ *
12722
+ * @see https://pnpm.io/settings#enginestrict
12723
+ */
12724
+ readonly engineStrict?: boolean;
12725
+ /**
12726
+ * `pnpm update` behavior. Supersedes `updateConfig`.
12727
+ *
12728
+ * When both `update` and `updateConfig` are supplied, `update` wins and
12729
+ * only `update` is emitted — pnpm warns and ignores `updateConfig` when
12730
+ * it sees both keys, so emitting both would produce a warning on every
12731
+ * install.
12732
+ *
12733
+ * @default undefined (key omitted)
12734
+ *
12735
+ * @see https://pnpm.io/settings#update
12736
+ */
12737
+ readonly update?: PnpmUpdateSettings;
12738
+ /**
12739
+ * `pnpm update` behavior, in the pre-pnpm-11 spelling.
12740
+ *
12741
+ * @deprecated Superseded by `update` in pnpm 11. Supplying both emits only
12742
+ * `update`. Prefer `update` in new configs.
12743
+ *
12744
+ * @default undefined (key omitted)
12745
+ *
12746
+ * @see https://pnpm.io/settings#updateconfig
12747
+ */
12748
+ readonly updateConfig?: PnpmUpdateConfigSettings;
12749
+ /**
12750
+ * Whether `pnpm publish` runs its git working-tree and branch checks.
12751
+ *
12752
+ * @default undefined (key omitted; pnpm defaults to true)
12753
+ *
12754
+ * @see https://pnpm.io/settings#gitchecks
12755
+ */
12756
+ readonly gitChecks?: boolean;
12757
+ /**
12758
+ * Branch `pnpm publish` is allowed to publish from.
12759
+ *
12760
+ * @default undefined (key omitted)
12761
+ *
12762
+ * @see https://pnpm.io/settings#publishbranch
12763
+ */
12764
+ readonly publishBranch?: string;
12765
+ /**
12766
+ * Whether `pnpm publish` attaches npm provenance attestations.
12767
+ *
12768
+ * @default undefined (key omitted)
12769
+ *
12770
+ * @see https://pnpm.io/settings#provenance
12771
+ */
12772
+ readonly provenance?: boolean;
12773
+ /**
12774
+ * Whether the README is embedded in the published package metadata.
12775
+ *
12776
+ * @default undefined (key omitted)
12777
+ *
12778
+ * @see https://pnpm.io/settings#embedreadme
12779
+ */
12780
+ readonly embedReadme?: boolean;
12781
+ /*****************************************************************************
12782
+ *
12783
+ * CATALOG MAINTENANCE
12784
+ *
12785
+ ****************************************************************************/
12786
+ /**
12787
+ * Whether pnpm prunes unused catalog entries from `pnpm-workspace.yaml`
12788
+ * during install. This is pnpm's current spelling for what
12789
+ * `cleanupUnusedCatalogs` configures.
12790
+ *
12791
+ * When both are supplied, `catalogPrune` wins and only `catalogPrune` is
12792
+ * emitted, matching pnpm's own `catalogPrune ??= cleanupUnusedCatalogs`
12793
+ * precedence. When only `cleanupUnusedCatalogs` is supplied, that key is
12794
+ * emitted unchanged so consumers on older pnpm majors keep working.
12795
+ *
12796
+ * @default undefined (key omitted; pnpm defaults to false)
12797
+ *
12798
+ * @see https://pnpm.io/settings#catalogprune
12799
+ */
12800
+ readonly catalogPrune?: boolean;
12801
+ /*****************************************************************************
12802
+ *
12803
+ * PASSTHROUGH
12804
+ *
12805
+ ****************************************************************************/
12806
+ /**
12807
+ * Arbitrary pnpm settings rendered verbatim as top-level keys in the
12808
+ * generated `pnpm-workspace.yaml`.
12809
+ *
12810
+ * This is the escape hatch for every setting configulator does not type —
12811
+ * per-user / per-machine / CI-environment settings that are deliberately
12812
+ * left untyped (proxies and TLS, fetch and retry tuning, store and cache
12813
+ * paths, CLI cosmetics, registry and auth settings), settings added by
12814
+ * future pnpm releases, and the handful of settings that do not exist in
12815
+ * the pnpm version this package targets.
12816
+ *
12817
+ * ```ts
12818
+ * additionalSettings: {
12819
+ * networkConcurrency: 8,
12820
+ * storeDir: "/mnt/pnpm-store",
12821
+ * }
12822
+ * ```
12823
+ *
12824
+ * A key that collides with a typed field or with a structural key
12825
+ * (`packages`, `catalog`, `catalogs`) throws at synth, naming the typed
12826
+ * option to use instead.
12827
+ *
12828
+ * @default undefined (no additional keys)
12829
+ *
12830
+ * @see https://pnpm.io/settings
12831
+ */
12832
+ readonly additionalSettings?: {
12833
+ [settingName: string]: unknown;
12834
+ };
12175
12835
  }
12836
+ /**
12837
+ * Curated settings that render verbatim under their own name whenever the
12838
+ * consumer supplies a value.
12839
+ *
12840
+ * Declaration order here is emission order in the generated YAML, so the
12841
+ * output stays deterministic across synths. Every entry is verified to exist
12842
+ * in the pnpm version this package targets.
12843
+ *
12844
+ * Settings needing bespoke handling are deliberately absent:
12845
+ * `neverBuiltDependencies` (merges into the `allowBuilds` map),
12846
+ * `catalogPrune` / `cleanupUnusedCatalogs`, and `update` / `updateConfig`
12847
+ * (deprecated-alias precedence pairs).
12848
+ */
12849
+ declare const CURATED_SETTING_KEYS: readonly ["overrides", "packageExtensions", "patchedDependencies", "patchesDir", "allowUnusedPatches", "allowedDeprecatedVersions", "ignoredOptionalDependencies", "supportedArchitectures", "configDependencies", "resolutionMode", "savePrefix", "saveExact", "trustPolicy", "trustPolicyExclude", "trustPolicyIgnoreAfter", "blockExoticSubdeps", "minimumReleaseAgeExcludePrune", "autoInstallPeers", "strictPeerDependencies", "dedupePeerDependents", "resolvePeersFromWorkspaceRoot", "peerDependencyRules", "linkWorkspacePackages", "preferWorkspacePackages", "injectWorkspacePackages", "dedupeInjectedDeps", "syncInjectedDepsAfterScripts", "saveWorkspaceProtocol", "includeWorkspaceRoot", "sharedWorkspaceLockfile", "disallowWorkspaceCycles", "hoistWorkspacePackages", "requiredScripts", "nodeLinker", "hoistPattern", "publicHoistPattern", "shamefullyHoist", "preferFrozenLockfile", "peersSuffixMaxLength", "enablePrePostScripts", "nodeOptions", "engineStrict", "gitChecks", "publishBranch", "provenance", "embedReadme"];
12850
+ /**
12851
+ * A curated setting name.
12852
+ */
12853
+ type PnpmCuratedSettingKey = (typeof CURATED_SETTING_KEYS)[number];
12176
12854
  declare class PnpmWorkspace extends Component {
12177
12855
  /**
12178
12856
  * Get the pnpm workspace component of a project. If it does not exist,
@@ -12340,7 +13018,34 @@ declare class PnpmWorkspace extends Component {
12340
13018
  * @see https://pnpm.io/settings#minimumreleaseageignoremissingtime
12341
13019
  */
12342
13020
  minimumReleaseAgeIgnoreMissingTime?: boolean;
13021
+ /**
13022
+ * Values for every curated setting the consumer supplied, keyed by setting
13023
+ * name. A setting left undefined is absent from this record and therefore
13024
+ * omitted from the generated YAML, so consumers who configure nothing get
13025
+ * byte-identical output.
13026
+ */
13027
+ private readonly curatedSettings;
13028
+ /**
13029
+ * Verbatim passthrough settings supplied via `additionalSettings`.
13030
+ */
13031
+ private readonly additionalSettings;
12343
13032
  constructor(project: Project$1, options?: PnpmWorkspaceOptions);
13033
+ /**
13034
+ * Read back a configured pnpm setting by name.
13035
+ *
13036
+ * Covers both tiers: curated settings added since the original typed
13037
+ * surface, and verbatim `additionalSettings` passthrough keys. Returns
13038
+ * `undefined` when the setting was not configured, which is the same
13039
+ * signal the emitter uses to omit the key from the generated YAML.
13040
+ *
13041
+ * The fifteen original options (`minimumReleaseAge`, `allowBuilds`,
13042
+ * `defaultCatalog`, and friends) remain available as public fields and are
13043
+ * not served by this accessor.
13044
+ *
13045
+ * @param settingName - The pnpm setting name, e.g. `"overrides"`.
13046
+ * @returns The configured value, or `undefined` when unset.
13047
+ */
13048
+ setting(settingName: string): unknown;
12344
13049
  }
12345
13050
  /**
12346
13051
  * @deprecated Use `MINIMUM_RELEASE_AGE` instead. This alias will be removed in a future major release.
@@ -15666,4 +16371,4 @@ declare function pinPnpmActionSetup(project: Project$1): void;
15666
16371
  */
15667
16372
  declare function pinSetupNodeVersion(project: Project$1): void;
15668
16373
 
15669
- export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, APPROVE_JOB_ID, AUDIT_CATEGORY_ORDER, type ActionItemFilingConfig, type ActivateBranchNameEnvVarOptions, type AddStorybookOptions, type AgentCommand, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRegistryEntry, 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, ApplyWorkflow, type ApplyWorkflowAttachOptions, type ApplyWorkflowContract, type ApplyWorkflowOptions, 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, BUILD_ARTIFACT_NAME, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, CDK_BOOTSTRAP_DEFAULTS_BY_STAGE, CDK_DEPLOY_DEFAULTS_BY_STAGE, CDK_DEPLOY_METHOD, CDK_DESTROY_DEFAULTS_BY_STAGE, CDK_DIFF_DEFAULTS_BY_STAGE, CDK_DIFF_METHOD, CDK_GC_ACTION, CDK_GC_TYPE, CDK_INIT_LANGUAGE, CDK_INIT_PACKAGE_MANAGER, CDK_INIT_TEMPLATE, CDK_MIGRATE_FROM_SCAN, CDK_PROGRESS, CDK_REQUIRE_APPROVAL, CDK_SYNTH_DEFAULTS_BY_STAGE, CDK_WATCH_DEFAULTS_BY_STAGE, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, CONVENTIONAL_COMMIT_TYPE_LABELS, type CdkAcknowledgeOptions, type CdkBootstrapOptions, CdkCli, type CdkCliOptions, type CdkCliTelemetryOptions, type CdkContextOptions, type CdkDeployMethod, type CdkDeployOptions, type CdkDestroyOptions, type CdkDiagnoseOptions, type CdkDiffMethod, type CdkDiffOptions, type CdkDocsOptions, type CdkDoctorOptions, type CdkDriftOptions, type CdkFlagsOptions, type CdkGcAction, type CdkGcOptions, type CdkGcType, type CdkGlobalOptions, type CdkImportOptions, type CdkInitLanguage, type CdkInitOptions, type CdkInitPackageManager, type CdkInitTemplate, type CdkListOptions, type CdkLspOptions, type CdkMetadataOptions, type CdkMigrateFromScan, type CdkMigrateOptions, type CdkNoticesOptions, type CdkOrphanOptions, type CdkProgress, type CdkPublishAssetsOptions, type CdkRefactorOptions, type CdkRequireApproval, type CdkRollbackOptions, type CdkSynthOptions, type CdkTargetOverrides, type CdkValidateOptions, type CdkWatchOptions, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudeMdConfig, 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_BASE_CONVENTIONS, DEFAULT_BUILD_POLICY, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_GITHUB_ISSUE_TYPE, 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_ORCHESTRATOR_CONVENTIONS, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PATHS_EXEMPT_FROM_SIZE, 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_REQUIREMENT_CATEGORY_DIRS, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_RULE_CONVENTIONS, 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_TEMPORAL_FRAMING_CADENCES, DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER, DEFAULT_TEMPORAL_FRAMING_ENABLED, DEFAULT_TEMPORAL_FRAMING_PATHS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DEPLOY_APPROVALS, DEPLOY_GATE, DIFF_ARTIFACT_NAME, DIFF_NEW_STACK_MARKER, DIFF_OUTPUT_DIRECTORY, DIFF_PART_ARTIFACT_PREFIX, DIFF_REPORT_JOB_ID, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployApprovals, type DeployDiffOptions, type DeployGate, type DeployWorkflowOptions, type DeploymentMetadata, DiffReportJob, type DiffReportJobAttachOptions, type DiffReportTarget, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, GITHUB_ISSUE_TYPES, GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type GithubIssueType, type IDependencyResolver, ISSUE_TEMPLATES_GENERATED_SUFFIX, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplateRecipeStub, type IssueTemplatesConfig, type IssueTypeAssignmentStepOptions, 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, type MonorepoPnpmOptions, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PERMISSION_BACKUP_FILE, PHASE_LABEL_TYPE_MAP, PLAN_RUN_ID_INPUT, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, type PhaseLabelTypeOutcome, type PhaseLabelTypeResolution, type PlanApplyOptions, type PlanValidationScriptOptions, PnpmWorkspace, type PnpmWorkspaceOptions, type PrReviewAutoMergeConfig, type PrReviewCiVerificationConfig, type PrReviewPolicyConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, type ReactViteSiteProjectOptions, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, type RequirementBlockFields, type RequirementCategoryDirsConfig, RequirementIssueTemplate, type RequirementIssueTemplateOptions, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedBaseConventions, type ResolvedBuildPolicy, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedOrchestratorConventions, type ResolvedPrReviewAutoMerge, type ResolvedPrReviewPolicy, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRequirementCategoryDirs, type ResolvedRuleConventions, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedTemporalFraming, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SET_ISSUE_TYPE_HELPER_PATH, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, 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, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, type TurboRunContinue, type TurboRunDryRun, type TurboRunLogOrder, type TurboRunLogPrefix, type TurboRunOptions, type TurboRunOutputLogs, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VALIDATE_PLAN_JOB_ID, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, WorkflowHomeRepository, type WorkflowHomeRepositoryOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildGithubWorkflowBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildPrReviewBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildTurborepoBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkClosingKeywordsProcedure, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, collectIssueTemplateRecipeStubs, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubIssueTypeForTitle, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, includeHiddenFilesInBuildArtifact, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, issueTemplatesChildGlob, issueTemplatesGeneratedPath, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, mergeCdkOptions, nextRequirementIdProcedure, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCdkAcknowledge, renderCdkBootstrap, renderCdkCliTelemetry, renderCdkContext, renderCdkDeploy, renderCdkDestroy, renderCdkDiagnose, renderCdkDiff, renderCdkDocs, renderCdkDoctor, renderCdkDrift, renderCdkFlags, renderCdkGc, renderCdkImport, renderCdkInit, renderCdkList, renderCdkLsp, renderCdkMetadata, renderCdkMigrate, renderCdkNotices, renderCdkOrphan, renderCdkPublishAssets, renderCdkRefactor, renderCdkRollback, renderCdkSynth, renderCdkValidate, renderCdkWatch, renderCheckClosingKeywordsScript, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderDiffPartUploadStep, renderExtractApiProcedure, renderFocusSection, renderGithubIssueTypeSection, renderGithubIssueTypeSectionLines, renderHomeRepositoryCondition, renderIssueTemplateLabelsCheckerScript, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesGeneratedPage, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderIssueTypeAssignmentBlanket, renderIssueTypeAssignmentStep, renderMeetingTypesSection, renderNextRequirementIdProcedure, renderPhaseTypeInvariantSection, renderPhaseTypeInvariantShellHelpers, renderPlanValidationScript, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRequirementBlock, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSetIssueTypeFallbackLines, renderSetupNode, renderSetupPnpm, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStripToolArtifactTagsProcedure, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderTitlePrefixTypeBullets, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveApprovalGate, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveBuildPolicy, resolveEnvironmentGate, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolvePrReviewPolicy, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeLabelForLabels, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, stripToolArtifactTagsProcedure, tsdocRecordToFindings, turborepoBundle, typeLabelForPhaseLabel, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
16374
+ export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, APPROVE_JOB_ID, AUDIT_CATEGORY_ORDER, type ActionItemFilingConfig, type ActivateBranchNameEnvVarOptions, type AddStorybookOptions, type AgentCommand, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRegistryEntry, 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, ApplyWorkflow, type ApplyWorkflowAttachOptions, type ApplyWorkflowContract, type ApplyWorkflowOptions, 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, BUILD_ARTIFACT_NAME, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, CDK_BOOTSTRAP_DEFAULTS_BY_STAGE, CDK_DEPLOY_DEFAULTS_BY_STAGE, CDK_DEPLOY_METHOD, CDK_DESTROY_DEFAULTS_BY_STAGE, CDK_DIFF_DEFAULTS_BY_STAGE, CDK_DIFF_METHOD, CDK_GC_ACTION, CDK_GC_TYPE, CDK_INIT_LANGUAGE, CDK_INIT_PACKAGE_MANAGER, CDK_INIT_TEMPLATE, CDK_MIGRATE_FROM_SCAN, CDK_PROGRESS, CDK_REQUIRE_APPROVAL, CDK_SYNTH_DEFAULTS_BY_STAGE, CDK_WATCH_DEFAULTS_BY_STAGE, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, CONVENTIONAL_COMMIT_TYPE_LABELS, type CdkAcknowledgeOptions, type CdkBootstrapOptions, CdkCli, type CdkCliOptions, type CdkCliTelemetryOptions, type CdkContextOptions, type CdkDeployMethod, type CdkDeployOptions, type CdkDestroyOptions, type CdkDiagnoseOptions, type CdkDiffMethod, type CdkDiffOptions, type CdkDocsOptions, type CdkDoctorOptions, type CdkDriftOptions, type CdkFlagsOptions, type CdkGcAction, type CdkGcOptions, type CdkGcType, type CdkGlobalOptions, type CdkImportOptions, type CdkInitLanguage, type CdkInitOptions, type CdkInitPackageManager, type CdkInitTemplate, type CdkListOptions, type CdkLspOptions, type CdkMetadataOptions, type CdkMigrateFromScan, type CdkMigrateOptions, type CdkNoticesOptions, type CdkOrphanOptions, type CdkProgress, type CdkPublishAssetsOptions, type CdkRefactorOptions, type CdkRequireApproval, type CdkRollbackOptions, type CdkSynthOptions, type CdkTargetOverrides, type CdkValidateOptions, type CdkWatchOptions, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudeMdConfig, 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_BASE_CONVENTIONS, DEFAULT_BUILD_POLICY, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_GITHUB_ISSUE_TYPE, 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_ORCHESTRATOR_CONVENTIONS, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PATHS_EXEMPT_FROM_SIZE, 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_REQUIREMENT_CATEGORY_DIRS, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_RULE_CONVENTIONS, 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_TEMPORAL_FRAMING_CADENCES, DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER, DEFAULT_TEMPORAL_FRAMING_ENABLED, DEFAULT_TEMPORAL_FRAMING_PATHS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DEPLOY_APPROVALS, DEPLOY_GATE, DIFF_ARTIFACT_NAME, DIFF_NEW_STACK_MARKER, DIFF_OUTPUT_DIRECTORY, DIFF_PART_ARTIFACT_PREFIX, DIFF_REPORT_JOB_ID, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployApprovals, type DeployDiffOptions, type DeployGate, type DeployWorkflowOptions, type DeploymentMetadata, DiffReportJob, type DiffReportJobAttachOptions, type DiffReportTarget, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, GITHUB_ISSUE_TYPES, GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type GithubIssueType, type IDependencyResolver, ISSUE_TEMPLATES_GENERATED_SUFFIX, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplateRecipeStub, type IssueTemplatesConfig, type IssueTypeAssignmentStepOptions, 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, type MonorepoPnpmOptions, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PERMISSION_BACKUP_FILE, PHASE_LABEL_TYPE_MAP, PLAN_RUN_ID_INPUT, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, type PhaseLabelTypeOutcome, type PhaseLabelTypeResolution, type PlanApplyOptions, type PlanValidationScriptOptions, type PnpmCuratedSettingKey, type PnpmPeerDependencyRules, type PnpmSupportedArchitectures, type PnpmUpdateConfigSettings, type PnpmUpdateSettings, PnpmWorkspace, type PnpmWorkspaceOptions, type PrReviewAutoMergeConfig, type PrReviewCiVerificationConfig, type PrReviewPolicyConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, type ReactViteSiteProjectOptions, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, type RequirementBlockFields, type RequirementCategoryDirsConfig, RequirementIssueTemplate, type RequirementIssueTemplateOptions, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedBaseConventions, type ResolvedBuildPolicy, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedOrchestratorConventions, type ResolvedPrReviewAutoMerge, type ResolvedPrReviewPolicy, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRequirementCategoryDirs, type ResolvedRuleConventions, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedTemporalFraming, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SET_ISSUE_TYPE_HELPER_PATH, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, 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, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, type TurboRunContinue, type TurboRunDryRun, type TurboRunLogOrder, type TurboRunLogPrefix, type TurboRunOptions, type TurboRunOutputLogs, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VALIDATE_PLAN_JOB_ID, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, WorkflowHomeRepository, type WorkflowHomeRepositoryOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildGithubWorkflowBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildPrReviewBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildTurborepoBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkClosingKeywordsProcedure, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, collectIssueTemplateRecipeStubs, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubIssueTypeForTitle, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, includeHiddenFilesInBuildArtifact, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, issueTemplatesChildGlob, issueTemplatesGeneratedPath, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, mergeCdkOptions, nextRequirementIdProcedure, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCdkAcknowledge, renderCdkBootstrap, renderCdkCliTelemetry, renderCdkContext, renderCdkDeploy, renderCdkDestroy, renderCdkDiagnose, renderCdkDiff, renderCdkDocs, renderCdkDoctor, renderCdkDrift, renderCdkFlags, renderCdkGc, renderCdkImport, renderCdkInit, renderCdkList, renderCdkLsp, renderCdkMetadata, renderCdkMigrate, renderCdkNotices, renderCdkOrphan, renderCdkPublishAssets, renderCdkRefactor, renderCdkRollback, renderCdkSynth, renderCdkValidate, renderCdkWatch, renderCheckClosingKeywordsScript, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderDiffPartUploadStep, renderExtractApiProcedure, renderFocusSection, renderGithubIssueTypeSection, renderGithubIssueTypeSectionLines, renderHomeRepositoryCondition, renderIssueTemplateLabelsCheckerScript, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesGeneratedPage, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderIssueTypeAssignmentBlanket, renderIssueTypeAssignmentStep, renderMeetingTypesSection, renderNextRequirementIdProcedure, renderPhaseTypeInvariantSection, renderPhaseTypeInvariantShellHelpers, renderPlanValidationScript, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRequirementBlock, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSetIssueTypeFallbackLines, renderSetupNode, renderSetupPnpm, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStripToolArtifactTagsProcedure, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderTitlePrefixTypeBullets, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveApprovalGate, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveBuildPolicy, resolveEnvironmentGate, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolvePrReviewPolicy, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeLabelForLabels, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, stripToolArtifactTagsProcedure, tsdocRecordToFindings, turborepoBundle, typeLabelForPhaseLabel, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };