@codedrifters/configulator 0.0.450 → 0.0.452

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
@@ -8120,7 +8120,8 @@ declare class AstroConfig extends Component {
8120
8120
  * `as const` enums for the `cdk` CLI surface. Phase 1 covered `cdk deploy`;
8121
8121
  * Phase 2 adds the enum needed by `cdk diff`; Phase 3 adds the enums needed by
8122
8122
  * `cdk gc`; Phase 4 adds the enums needed by `cdk init` (and reused by `cdk
8123
- * migrate`).
8123
+ * migrate`); Phase 5 brings the surface up to aws-cdk CLI 2.1136.0 (the pinned
8124
+ * version) plus the additions that landed in 2.1137/2.1138.
8124
8125
  *
8125
8126
  ******************************************************************************/
8126
8127
  /**
@@ -8149,11 +8150,21 @@ declare const CDK_DEPLOY_METHOD: {
8149
8150
  */
8150
8151
  type CdkDeployMethod = (typeof CDK_DEPLOY_METHOD)[keyof typeof CDK_DEPLOY_METHOD];
8151
8152
  /**
8152
- * `--progress` values accepted by `cdk deploy`.
8153
+ * `--progress` values accepted by `cdk deploy` and `cdk watch`.
8154
+ *
8155
+ * `ErrorsOnly` displays nothing except errors — upstream recommends it for AI
8156
+ * agents and other consumers that do not benefit from continuous progress
8157
+ * updates.
8158
+ *
8159
+ * **CLI version note:** `ErrorsOnly` requires aws-cdk CLI **2.1137.0 or
8160
+ * later**. This repository currently pins 2.1136.0, which rejects
8161
+ * `--progress=errors-only`. Consumers on the pinned version should stay on
8162
+ * `Bar` or `Events` until the pin advances.
8153
8163
  */
8154
8164
  declare const CDK_PROGRESS: {
8155
8165
  readonly Bar: "bar";
8156
8166
  readonly Events: "events";
8167
+ readonly ErrorsOnly: "errors-only";
8157
8168
  };
8158
8169
  /**
8159
8170
  * Type for {@link CDK_PROGRESS} values.
@@ -8225,6 +8236,39 @@ declare const CDK_INIT_LANGUAGE: {
8225
8236
  * Type for {@link CDK_INIT_LANGUAGE} values.
8226
8237
  */
8227
8238
  type CdkInitLanguage = (typeof CDK_INIT_LANGUAGE)[keyof typeof CDK_INIT_LANGUAGE];
8239
+ /**
8240
+ * `--package-manager` values accepted by `cdk init`.
8241
+ *
8242
+ * Only applicable to TypeScript and JavaScript projects; the CLI defaults to
8243
+ * `npm` for those and ignores the flag for every other language.
8244
+ */
8245
+ declare const CDK_INIT_PACKAGE_MANAGER: {
8246
+ readonly Npm: "npm";
8247
+ readonly Yarn: "yarn";
8248
+ readonly Pnpm: "pnpm";
8249
+ readonly Bun: "bun";
8250
+ };
8251
+ /**
8252
+ * Type for {@link CDK_INIT_PACKAGE_MANAGER} values.
8253
+ */
8254
+ type CdkInitPackageManager = (typeof CDK_INIT_PACKAGE_MANAGER)[keyof typeof CDK_INIT_PACKAGE_MANAGER];
8255
+ /**
8256
+ * `--from-scan` values accepted by `cdk migrate` — whether to start a new
8257
+ * CloudFormation resource scan or reuse the last successful one.
8258
+ *
8259
+ * Upstream declares `--from-scan` as a free-form `string` option and documents
8260
+ * the two accepted values only in the flag description rather than as a yargs
8261
+ * `choices` array. This enum pins that documented pair so callers cannot
8262
+ * render an invocation the CLI will reject.
8263
+ */
8264
+ declare const CDK_MIGRATE_FROM_SCAN: {
8265
+ readonly New: "new";
8266
+ readonly MostRecent: "most-recent";
8267
+ };
8268
+ /**
8269
+ * Type for {@link CDK_MIGRATE_FROM_SCAN} values.
8270
+ */
8271
+ type CdkMigrateFromScan = (typeof CDK_MIGRATE_FROM_SCAN)[keyof typeof CDK_MIGRATE_FROM_SCAN];
8228
8272
 
8229
8273
  /*******************************************************************************
8230
8274
  *
@@ -8235,9 +8279,11 @@ type CdkInitLanguage = (typeof CDK_INIT_LANGUAGE)[keyof typeof CDK_INIT_LANGUAGE
8235
8279
  * adds the maintenance / lifecycle commands `rollback`, `import`, `gc`,
8236
8280
  * `drift`, `refactor`, `publish-assets`, and `orphan`; Phase 4 adds the
8237
8281
  * inspection / scaffolding commands `init`, `migrate`, `context`, `metadata`,
8238
- * `flags`, `acknowledge`, `notices`, `doctor`, and `docs`. Every
8239
- * command-specific interface inherits {@link CdkGlobalOptions} so it carries
8240
- * the same global flag surface.
8282
+ * `flags`, `acknowledge`, `notices`, `doctor`, and `docs`; Phase 5 brings the
8283
+ * surface level with aws-cdk CLI 2.1136.0 (the pinned version) and adds
8284
+ * `validate`, `lsp`, `diagnose`, and `cli-telemetry`. Every command-specific
8285
+ * interface inherits {@link CdkGlobalOptions} so it carries the same global
8286
+ * flag surface.
8241
8287
  *
8242
8288
  * Every boolean field is tri-state (`boolean | undefined`):
8243
8289
  * - `undefined` → the renderer emits nothing, and the CLI's own default
@@ -8265,6 +8311,15 @@ interface CdkGlobalOptions {
8265
8311
  * `--profile` — named AWS profile from `~/.aws/credentials`.
8266
8312
  */
8267
8313
  readonly profile?: string;
8314
+ /**
8315
+ * `--region` — AWS region to use as the default environment region.
8316
+ *
8317
+ * Also carries `cdk migrate`'s region flag: the CLI declares `--region` both
8318
+ * globally and on `migrate`, where it names the region to retrieve the
8319
+ * source CloudFormation stack template from. See
8320
+ * {@link CdkMigrateOptions}.
8321
+ */
8322
+ readonly region?: string;
8268
8323
  /**
8269
8324
  * `--lookups` — whether the CLI may perform context lookups against the
8270
8325
  * target environment.
@@ -8285,9 +8340,24 @@ interface CdkGlobalOptions {
8285
8340
  */
8286
8341
  readonly verbose?: number;
8287
8342
  /**
8288
- * `--debug` — enable debug output.
8343
+ * `--debug` — enable debug output for both the CDK app and the CDK CLI.
8344
+ *
8345
+ * Upstream split the original single `--debug` switch into
8346
+ * {@link debugApp} and {@link debugCli}; `--debug` now implies both. Set
8347
+ * this when you want the pair, or set the narrower fields individually.
8348
+ * Significantly slows synthesis.
8289
8349
  */
8290
8350
  readonly debug?: boolean;
8351
+ /**
8352
+ * `--debug-app` — debug the CDK app only. Logs additional information during
8353
+ * synthesis (creation stack traces) and sets the `CDK_DEBUG` environment
8354
+ * variable. Implied by {@link debug}. Slows synthesis.
8355
+ */
8356
+ readonly debugApp?: boolean;
8357
+ /**
8358
+ * `--debug-cli` — debug the CDK CLI itself. Implied by {@link debug}.
8359
+ */
8360
+ readonly debugCli?: boolean;
8291
8361
  /**
8292
8362
  * `--ci` — non-interactive CI mode.
8293
8363
  */
@@ -8408,9 +8478,23 @@ interface CdkDeployOptions extends CdkGlobalOptions {
8408
8478
  * `--rollback` / `--no-rollback` — roll back the stack on failure.
8409
8479
  *
8410
8480
  * Tri-state: `true` enables rollback, `false` disables it (useful in dev for
8411
- * fast iteration), `undefined` defers to the CLI default.
8481
+ * fast iteration), `undefined` defers to the CLI default. The CLI default is
8482
+ * `true` for normal deployments but `false` under {@link express}.
8412
8483
  */
8413
8484
  readonly rollback?: boolean;
8485
+ /**
8486
+ * `--express` — deploy via CloudFormation express mode, a faster deployment
8487
+ * mode that skips resource stabilization.
8488
+ *
8489
+ * Express mode is oriented at dev iteration, not production: it does not
8490
+ * wait for resources to stabilize, and it flips the CLI's {@link rollback}
8491
+ * default from `true` to `false`. Set `rollback` explicitly alongside
8492
+ * `express` if you want rollback behaviour that does not depend on which
8493
+ * mode is active.
8494
+ *
8495
+ * @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-express-mode.html
8496
+ */
8497
+ readonly express?: boolean;
8414
8498
  /**
8415
8499
  * `--hotswap` — apply changes directly to running resources without going
8416
8500
  * through CloudFormation when possible.
@@ -8425,6 +8509,24 @@ interface CdkDeployOptions extends CdkGlobalOptions {
8425
8509
  * hotswap is not possible.
8426
8510
  */
8427
8511
  readonly hotswapFallback?: boolean;
8512
+ /**
8513
+ * `--hotswap-ecs-minimum-healthy-percent` — lower limit on the number of an
8514
+ * ECS service's tasks that must stay `RUNNING` during a hotswap deployment,
8515
+ * as a percentage of `desiredCount`.
8516
+ */
8517
+ readonly hotswapEcsMinimumHealthyPercent?: number;
8518
+ /**
8519
+ * `--hotswap-ecs-maximum-healthy-percent` — upper limit on the number of an
8520
+ * ECS service's tasks allowed in the `RUNNING` or `PENDING` state during a
8521
+ * hotswap deployment, as a percentage of `desiredCount`.
8522
+ */
8523
+ readonly hotswapEcsMaximumHealthyPercent?: number;
8524
+ /**
8525
+ * `--hotswap-ecs-stabilization-timeout-seconds` — how long to wait for a
8526
+ * single ECS service to reach a stable state (`runningCount` equal to
8527
+ * `desiredCount`) during a hotswap deployment.
8528
+ */
8529
+ readonly hotswapEcsStabilizationTimeoutSeconds?: number;
8428
8530
  /**
8429
8531
  * `--method` — how the deployment is performed (change-set vs direct).
8430
8532
  */
@@ -8466,6 +8568,11 @@ interface CdkDeployOptions extends CdkGlobalOptions {
8466
8568
  * `--concurrency` — number of stacks to deploy in parallel.
8467
8569
  */
8468
8570
  readonly concurrency?: number;
8571
+ /**
8572
+ * `--asset-build-concurrency` — maximum number of asset builds to run in
8573
+ * parallel. CLI default is `1`.
8574
+ */
8575
+ readonly assetBuildConcurrency?: number;
8469
8576
  /**
8470
8577
  * `--asset-parallelism` — upload assets in parallel.
8471
8578
  */
@@ -8588,6 +8695,24 @@ interface CdkWatchOptions extends CdkGlobalOptions {
8588
8695
  * `true`; supply `false` to disable.
8589
8696
  */
8590
8697
  readonly hotswap?: boolean;
8698
+ /**
8699
+ * `--hotswap-ecs-minimum-healthy-percent` — lower limit on the number of an
8700
+ * ECS service's tasks that must stay `RUNNING` during a hotswap deployment,
8701
+ * as a percentage of `desiredCount`.
8702
+ */
8703
+ readonly hotswapEcsMinimumHealthyPercent?: number;
8704
+ /**
8705
+ * `--hotswap-ecs-maximum-healthy-percent` — upper limit on the number of an
8706
+ * ECS service's tasks allowed in the `RUNNING` or `PENDING` state during a
8707
+ * hotswap deployment, as a percentage of `desiredCount`.
8708
+ */
8709
+ readonly hotswapEcsMaximumHealthyPercent?: number;
8710
+ /**
8711
+ * `--hotswap-ecs-stabilization-timeout-seconds` — how long to wait for a
8712
+ * single ECS service to reach a stable state (`runningCount` equal to
8713
+ * `desiredCount`) during a hotswap deployment.
8714
+ */
8715
+ readonly hotswapEcsStabilizationTimeoutSeconds?: number;
8591
8716
  /**
8592
8717
  * `--hotswap-fallback` — fall back to a full CloudFormation deployment when
8593
8718
  * a hotswap is not possible.
@@ -8636,6 +8761,16 @@ interface CdkDestroyOptions extends CdkGlobalOptions {
8636
8761
  * dependencies.
8637
8762
  */
8638
8763
  readonly exclusively?: boolean;
8764
+ /**
8765
+ * `--express` — tear the stack(s) down via CloudFormation express mode, a
8766
+ * faster teardown mode that skips resource stabilization and disables
8767
+ * automatic rollback by default.
8768
+ *
8769
+ * Oriented at dev iteration rather than production teardown.
8770
+ *
8771
+ * @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-express-mode.html
8772
+ */
8773
+ readonly express?: boolean;
8639
8774
  /**
8640
8775
  * `--force` — skip the confirmation prompt before destroying.
8641
8776
  */
@@ -8669,6 +8804,16 @@ interface CdkDiffOptions extends CdkGlobalOptions {
8669
8804
  * `--fail` — fail with a non-zero exit code when differences are detected.
8670
8805
  */
8671
8806
  readonly fail?: boolean;
8807
+ /**
8808
+ * `--import-existing-resources` — whether the change set the diff models
8809
+ * imports resources that already exist. CLI default is `false`.
8810
+ */
8811
+ readonly importExistingResources?: boolean;
8812
+ /**
8813
+ * `--include-moves` — include resource moves in the diff output. CLI default
8814
+ * is `false`.
8815
+ */
8816
+ readonly includeMoves?: boolean;
8672
8817
  /**
8673
8818
  * `--method` — how the diff is computed.
8674
8819
  */
@@ -8726,6 +8871,12 @@ interface CdkBootstrapOptions extends CdkGlobalOptions {
8726
8871
  * attach to the bootstrap roles.
8727
8872
  */
8728
8873
  readonly customPermissionsBoundary?: string;
8874
+ /**
8875
+ * `--deny-external-id` — block `AssumeRole` access to every bootstrapped
8876
+ * role when an `ExternalId` is supplied. Enabled by default in the CLI;
8877
+ * supply `false` to allow it.
8878
+ */
8879
+ readonly denyExternalId?: boolean;
8729
8880
  /**
8730
8881
  * `--example-permissions-boundary` — install the example permissions
8731
8882
  * boundary shipped with the CDK.
@@ -8735,10 +8886,26 @@ interface CdkBootstrapOptions extends CdkGlobalOptions {
8735
8886
  * `--execute` — execute the bootstrap change set immediately.
8736
8887
  */
8737
8888
  readonly execute?: boolean;
8889
+ /**
8890
+ * `--express` — create the bootstrap stack via CloudFormation express mode,
8891
+ * a faster mode that skips resource stabilization and disables automatic
8892
+ * rollback by default.
8893
+ *
8894
+ * @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-express-mode.html
8895
+ */
8896
+ readonly express?: boolean;
8738
8897
  /**
8739
8898
  * `--force` — force re-bootstrap even when the bootstrap stack is current.
8740
8899
  */
8741
8900
  readonly force?: boolean;
8901
+ /**
8902
+ * `--import-existing-resources` — import resources that already exist into
8903
+ * the bootstrap stack rather than failing on the collision.
8904
+ *
8905
+ * Note the CLI default here is **`true`**, unlike the same-named flag on
8906
+ * `cdk deploy` and `cdk diff`, which default to `false`.
8907
+ */
8908
+ readonly importExistingResources?: boolean;
8742
8909
  /**
8743
8910
  * `--previous-parameters` — use previous parameter values for any parameters
8744
8911
  * not explicitly supplied.
@@ -8788,6 +8955,12 @@ interface CdkBootstrapOptions extends CdkGlobalOptions {
8788
8955
  * per entry.
8789
8956
  */
8790
8957
  readonly trustForLookup?: Array<string>;
8958
+ /**
8959
+ * `--untrust` — AWS account IDs that should **not** be trusted by this
8960
+ * bootstrap environment. Repeats one `--untrust` flag per entry.
8961
+ * Modern bootstrapping only.
8962
+ */
8963
+ readonly untrust?: Array<string>;
8791
8964
  }
8792
8965
  /**
8793
8966
  * Options for the `cdk list` / `cdk ls` command.
@@ -8863,6 +9036,15 @@ interface CdkImportOptions extends CdkGlobalOptions {
8863
9036
  * would normally block it.
8864
9037
  */
8865
9038
  readonly force?: boolean;
9039
+ /**
9040
+ * `--notification-arns` — SNS topic ARNs CloudFormation notifies with
9041
+ * stack-related events. Repeats one `--notification-arns` flag per entry.
9042
+ *
9043
+ * **CLI version note:** requires aws-cdk CLI **2.1138.0 or later**. This
9044
+ * repository currently pins 2.1136.0, which does not accept the flag on
9045
+ * `cdk import`.
9046
+ */
9047
+ readonly notificationArns?: Array<string>;
8866
9048
  /**
8867
9049
  * `--record-resource-mapping` — write the resolved logical-id → physical-id
8868
9050
  * mapping to the given path for later reuse.
@@ -8873,6 +9055,13 @@ interface CdkImportOptions extends CdkGlobalOptions {
8873
9055
  * given path instead of prompting interactively.
8874
9056
  */
8875
9057
  readonly resourceMapping?: string;
9058
+ /**
9059
+ * `--resource-mapping-inline` — inline JSON resource mapping, e.g.
9060
+ * `{"MyResource":{"TableName":"my-table"}}`. Alternative to
9061
+ * {@link resourceMapping} when the mapping is short enough to pass on the
9062
+ * command line rather than through a file.
9063
+ */
9064
+ readonly resourceMappingInline?: string;
8876
9065
  /**
8877
9066
  * `--rollback` / `--no-rollback` — roll back the stack on failure.
8878
9067
  *
@@ -8908,6 +9097,10 @@ interface CdkGcOptions extends CdkGlobalOptions {
8908
9097
  /**
8909
9098
  * `--bootstrap-stack-name` — name of the bootstrap stack whose assets are
8910
9099
  * being garbage collected.
9100
+ *
9101
+ * @deprecated Upstream deprecated `--bootstrap-stack-name` in favour of
9102
+ * {@link toolkitStackName}, and the CLI rejects an invocation that supplies
9103
+ * both (they are declared as mutually exclusive). Use `toolkitStackName`.
8911
9104
  */
8912
9105
  readonly bootstrapStackName?: string;
8913
9106
  /**
@@ -8924,6 +9117,12 @@ interface CdkGcOptions extends CdkGlobalOptions {
8924
9117
  * deleting them so a rollback can recover them.
8925
9118
  */
8926
9119
  readonly rollbackBufferDays?: number;
9120
+ /**
9121
+ * `--toolkit-stack-name` — name of the CDK toolkit stack, when it differs
9122
+ * from the default `CDKToolkit`. Replaces the deprecated
9123
+ * {@link bootstrapStackName}; supplying both is rejected by the CLI.
9124
+ */
9125
+ readonly toolkitStackName?: string;
8927
9126
  /**
8928
9127
  * `--type` — restrict garbage collection to a particular asset type.
8929
9128
  */
@@ -8976,6 +9175,11 @@ interface CdkRefactorOptions extends CdkGlobalOptions {
8976
9175
  * out.
8977
9176
  */
8978
9177
  readonly force?: boolean;
9178
+ /**
9179
+ * `--toolkit-stack-name` — name of the existing CDK toolkit stack, used to
9180
+ * find the staging bucket for templates too large to send inline.
9181
+ */
9182
+ readonly toolkitStackName?: string;
8979
9183
  }
8980
9184
  /**
8981
9185
  * Options for the `cdk publish-assets` command.
@@ -9060,9 +9264,42 @@ interface CdkInitOptions extends CdkGlobalOptions {
9060
9264
  * post-scaffold steps (e.g. `git init`, dependency install).
9061
9265
  */
9062
9266
  readonly generateOnly?: boolean;
9267
+ /**
9268
+ * `--lib-version` — version of `aws-cdk-lib` to initialise built-in
9269
+ * templates with. Defaults to whatever was current when the CLI was built.
9270
+ *
9271
+ * The CLI rejects this alongside {@link fromPath}.
9272
+ */
9273
+ readonly libVersion?: string;
9274
+ /**
9275
+ * `--from-path` — path to a local custom template directory or
9276
+ * multi-template repository. Mutually exclusive with {@link libVersion}.
9277
+ */
9278
+ readonly fromPath?: string;
9279
+ /**
9280
+ * `--template-path` — path to a specific template inside a multi-template
9281
+ * repository. The CLI only accepts this alongside {@link fromPath}.
9282
+ */
9283
+ readonly templatePath?: string;
9284
+ /**
9285
+ * `--package-manager` — package manager used to install dependencies. Only
9286
+ * applies to TypeScript and JavaScript projects, where the CLI defaults to
9287
+ * `npm`.
9288
+ */
9289
+ readonly packageManager?: CdkInitPackageManager;
9290
+ /**
9291
+ * `--project-name` — name of the new project.
9292
+ */
9293
+ readonly projectName?: string;
9063
9294
  }
9064
9295
  /**
9065
9296
  * Options for the `cdk migrate` command.
9297
+ *
9298
+ * The CLI declares `--region` both globally and on `migrate`, where it names
9299
+ * the region to retrieve the source CloudFormation stack template from. That
9300
+ * flag is modelled once, as the inherited {@link CdkGlobalOptions.region}
9301
+ * field, so a rendered `migrate` invocation carries exactly one `--region`
9302
+ * token.
9066
9303
  */
9067
9304
  interface CdkMigrateOptions extends CdkGlobalOptions {
9068
9305
  /*****************************************************************************
@@ -9084,10 +9321,6 @@ interface CdkMigrateOptions extends CdkGlobalOptions {
9084
9321
  * `--account` — AWS account ID hosting the source resources.
9085
9322
  */
9086
9323
  readonly account?: string;
9087
- /**
9088
- * `--region` — AWS region hosting the source resources.
9089
- */
9090
- readonly region?: string;
9091
9324
  /**
9092
9325
  * `--from-path` — path to a CloudFormation template file to migrate from.
9093
9326
  */
@@ -9097,9 +9330,13 @@ interface CdkMigrateOptions extends CdkGlobalOptions {
9097
9330
  */
9098
9331
  readonly fromStack?: boolean;
9099
9332
  /**
9100
- * `--from-scan` — migrate by initiating a CloudFormation resource scan.
9333
+ * `--from-scan` — whether to start a new CloudFormation resource scan
9334
+ * (`"new"`) or reuse the last successful one (`"most-recent"`).
9335
+ *
9336
+ * The CLI flag is value-taking, so this field is an enum rather than a
9337
+ * tri-state boolean.
9101
9338
  */
9102
- readonly fromScan?: boolean;
9339
+ readonly fromScan?: CdkMigrateFromScan;
9103
9340
  /**
9104
9341
  * `--output-path` — directory to write the generated CDK app into.
9105
9342
  */
@@ -9162,23 +9399,37 @@ interface CdkMetadataOptions extends CdkGlobalOptions {
9162
9399
  * Options for the `cdk flags` command.
9163
9400
  */
9164
9401
  interface CdkFlagsOptions extends CdkGlobalOptions {
9402
+ /*****************************************************************************
9403
+ *
9404
+ * Flags-specific positional arguments
9405
+ *
9406
+ ****************************************************************************/
9407
+ /**
9408
+ * Positional `<FLAGNAME>` arguments naming the feature flags to view or
9409
+ * modify. Variadic — the CLI accepts zero or more. Rendered last, after the
9410
+ * trailing tokens, mirroring `cdk orphan`'s positional logical IDs.
9411
+ */
9412
+ readonly flagNames?: Array<string>;
9165
9413
  /*****************************************************************************
9166
9414
  *
9167
9415
  * Flags-specific flags
9168
9416
  *
9169
9417
  ****************************************************************************/
9170
9418
  /**
9171
- * `--value=FLAG` — print the configured value of a single feature flag.
9172
- * The CLI's `--value` flag is value-taking, so this field is typed as
9173
- * `string | undefined`.
9419
+ * `--value=VALUE` — the value to set the targeted feature flag to. Paired
9420
+ * with {@link set} and the {@link flagNames} positional; the CLI's `--value`
9421
+ * flag is value-taking, so this field is typed as `string | undefined`.
9174
9422
  */
9175
9423
  readonly value?: string;
9176
9424
  /**
9177
- * `--set=FLAG=VALUE` — set a feature flag to the given value. The CLI's
9178
- * `--set` flag is value-taking, so this field is typed as
9179
- * `string | undefined`.
9425
+ * `--set` — signals the intent to modify the feature-flag configuration.
9426
+ *
9427
+ * The CLI's `--set` is a plain boolean switch, **not** a value-taking
9428
+ * `--set=FLAG=VALUE` flag: the flag to change comes from the
9429
+ * {@link flagNames} positional and the new value from {@link value}. A
9430
+ * complete invocation looks like `cdk flags --set --value=true MyFlag`.
9180
9431
  */
9181
- readonly set?: string;
9432
+ readonly set?: boolean;
9182
9433
  /**
9183
9434
  * `--all` — include every known feature flag in the output.
9184
9435
  */
@@ -9233,12 +9484,18 @@ interface CdkAcknowledgeOptions extends CdkGlobalOptions {
9233
9484
  }
9234
9485
  /**
9235
9486
  * Options for the `cdk notices` command.
9236
- *
9237
- * `cdk notices` has no command-specific flags beyond the inherited globals.
9238
- * Surfaced as an empty interface so the renderer signature stays uniform
9239
- * with the rest of the command surface.
9240
9487
  */
9241
9488
  interface CdkNoticesOptions extends CdkGlobalOptions {
9489
+ /*****************************************************************************
9490
+ *
9491
+ * Notices-specific flags
9492
+ *
9493
+ ****************************************************************************/
9494
+ /**
9495
+ * `--unacknowledged` (`-u`) — list only notices that have not been
9496
+ * acknowledged yet.
9497
+ */
9498
+ readonly unacknowledged?: boolean;
9242
9499
  }
9243
9500
  /**
9244
9501
  * Options for the `cdk doctor` command.
@@ -9251,12 +9508,121 @@ interface CdkDoctorOptions extends CdkGlobalOptions {
9251
9508
  }
9252
9509
  /**
9253
9510
  * Options for the `cdk docs` (`doc`) command.
9254
- *
9255
- * `cdk docs` has no command-specific flags beyond the inherited globals.
9256
- * Surfaced as an empty interface so the renderer signature stays uniform
9257
- * with the rest of the command surface.
9258
9511
  */
9259
9512
  interface CdkDocsOptions extends CdkGlobalOptions {
9513
+ /*****************************************************************************
9514
+ *
9515
+ * Docs-specific flags
9516
+ *
9517
+ ****************************************************************************/
9518
+ /**
9519
+ * `--browser` (`-b`) — command used to open the browser, with `%u` as the
9520
+ * placeholder for the path to open.
9521
+ *
9522
+ * Left unset by default: the CLI's own default is resolved per platform at
9523
+ * run time, so baking a value here would override a platform-correct choice.
9524
+ */
9525
+ readonly browser?: string;
9526
+ }
9527
+ /**
9528
+ * Options for the `cdk validate` command — validates synthesized
9529
+ * CloudFormation templates against policy rules.
9530
+ *
9531
+ * Takes a variadic `STACKS` positional, carried by the inherited
9532
+ * {@link CdkGlobalOptions.stackPatterns} field.
9533
+ */
9534
+ interface CdkValidateOptions extends CdkGlobalOptions {
9535
+ /*****************************************************************************
9536
+ *
9537
+ * Validate-specific flags
9538
+ *
9539
+ ****************************************************************************/
9540
+ /**
9541
+ * `--online` — submit templates to CloudFormation for early validation.
9542
+ * Requires AWS credentials. CLI default is `true`; supply `false` to run
9543
+ * offline-only validation.
9544
+ */
9545
+ readonly online?: boolean;
9546
+ /**
9547
+ * `--watch` — continuously observe project files and re-validate the given
9548
+ * stacks when changes are detected. Never deploys. Consider pairing with
9549
+ * `online: false` to skip CloudFormation validation on every change.
9550
+ */
9551
+ readonly watch?: boolean;
9552
+ }
9553
+ /**
9554
+ * Options for the `cdk lsp` command — starts the CDK Language Server over
9555
+ * stdio for editor and AI-agent integration.
9556
+ *
9557
+ * Takes no positional arguments.
9558
+ */
9559
+ interface CdkLspOptions extends CdkGlobalOptions {
9560
+ /*****************************************************************************
9561
+ *
9562
+ * Lsp-specific flags
9563
+ *
9564
+ ****************************************************************************/
9565
+ /**
9566
+ * `--features` — print the LSP feature manifest as JSON and exit instead of
9567
+ * starting the server, letting a client probe LSP presence and capabilities
9568
+ * without opening a session.
9569
+ */
9570
+ readonly features?: boolean;
9571
+ }
9572
+ /**
9573
+ * Options for the `cdk diagnose` command — finds the root cause(s) of stack
9574
+ * deployment failures.
9575
+ *
9576
+ * Takes a variadic `STACKS` positional, carried by the inherited
9577
+ * {@link CdkGlobalOptions.stackPatterns} field.
9578
+ */
9579
+ interface CdkDiagnoseOptions extends CdkGlobalOptions {
9580
+ /*****************************************************************************
9581
+ *
9582
+ * Diagnose-specific flags
9583
+ *
9584
+ ****************************************************************************/
9585
+ /**
9586
+ * `--concurrency` — how many stacks to diagnose in parallel. The CLI
9587
+ * declares no default for this flag.
9588
+ */
9589
+ readonly concurrency?: number;
9590
+ /**
9591
+ * `--toolkit-stack-name` — name of the existing CDK toolkit stack. Only used
9592
+ * for apps on legacy synthesis.
9593
+ */
9594
+ readonly toolkitStackName?: string;
9595
+ }
9596
+ /**
9597
+ * Options for the `cdk cli-telemetry` command — enables or disables anonymous
9598
+ * CLI telemetry.
9599
+ *
9600
+ * The three flags are **mutually exclusive** in the CLI: it rejects an
9601
+ * invocation supplying more than one of {@link enable}, {@link disable}, and
9602
+ * {@link status}. The renderer emits whatever it is given and does not
9603
+ * validate the constraint, matching how the rest of this surface treats
9604
+ * upstream `conflicts` declarations.
9605
+ *
9606
+ * Takes no positional arguments.
9607
+ */
9608
+ interface CdkCliTelemetryOptions extends CdkGlobalOptions {
9609
+ /*****************************************************************************
9610
+ *
9611
+ * Cli-telemetry-specific flags
9612
+ *
9613
+ ****************************************************************************/
9614
+ /**
9615
+ * `--disable` — disable anonymous telemetry. Conflicts with {@link enable}.
9616
+ */
9617
+ readonly disable?: boolean;
9618
+ /**
9619
+ * `--enable` — enable anonymous telemetry. Conflicts with {@link disable}.
9620
+ */
9621
+ readonly enable?: boolean;
9622
+ /**
9623
+ * `--status` — report the current telemetry opt-in/out status.
9624
+ */
9625
+ readonly status?: boolean;
9260
9626
  }
9261
9627
  /**
9262
9628
  * Per-target / per-account override bundle for the `CdkCli` component.
@@ -9910,6 +10276,10 @@ interface AwsOrganization {
9910
10276
  * (`true`, i.e. atomic deploys with rollback) applies — this is what allows
9911
10277
  * replacement-style updates to succeed in stage/prod.
9912
10278
  * - `prod` pins `--method=change-set` to leave a reviewable change-set trail.
10279
+ * - `express` is deliberately **not** defaulted on any stage. CloudFormation
10280
+ * express mode skips resource stabilization and flips the CLI's `rollback`
10281
+ * default to `false`, so it is opt-in per consumer via `deployDefaults`,
10282
+ * `accountOverrides`, or a target's `cdkOptions.deploy` — never a built-in.
9913
10283
  */
9914
10284
  declare const CDK_DEPLOY_DEFAULTS_BY_STAGE: Record<AwsStageType, Partial<CdkDeployOptions>>;
9915
10285
  /**
@@ -10066,6 +10436,10 @@ declare const renderCdkOrphan: (opts: CdkOrphanOptions) => string;
10066
10436
  declare const renderCdkInit: (opts: CdkInitOptions) => string;
10067
10437
  /**
10068
10438
  * Render a `cdk migrate ...` command from the supplied options.
10439
+ *
10440
+ * `--region` is emitted by {@link renderGlobalTokens} rather than here: the
10441
+ * CLI declares the flag both globally and on `migrate`, and the surface models
10442
+ * it once on `CdkGlobalOptions` so exactly one `--region` token renders.
10069
10443
  */
10070
10444
  declare const renderCdkMigrate: (opts: CdkMigrateOptions) => string;
10071
10445
  /**
@@ -10082,9 +10456,10 @@ declare const renderCdkContext: (opts: CdkContextOptions) => string;
10082
10456
  */
10083
10457
  declare const renderCdkMetadata: (opts: CdkMetadataOptions) => string;
10084
10458
  /**
10085
- * Render a `cdk flags ...` command from the supplied options. `--value` and
10086
- * `--set` are value-taking string flags per the CLI surface; the remaining
10087
- * flags are tri-state booleans.
10459
+ * Render a `cdk flags ...` command from the supplied options. `--value` is the
10460
+ * only value-taking flag on this command; `--set` and the rest are tri-state
10461
+ * booleans. Variadic positional feature-flag names render last, after the
10462
+ * trailing tokens.
10088
10463
  */
10089
10464
  declare const renderCdkFlags: (opts: CdkFlagsOptions) => string;
10090
10465
  /**
@@ -10094,9 +10469,7 @@ declare const renderCdkFlags: (opts: CdkFlagsOptions) => string;
10094
10469
  */
10095
10470
  declare const renderCdkAcknowledge: (opts: CdkAcknowledgeOptions) => string;
10096
10471
  /**
10097
- * Render a `cdk notices ...` command from the supplied options. `notices`
10098
- * has no command-specific flags; only the inherited globals and trailing
10099
- * tokens contribute output.
10472
+ * Render a `cdk notices ...` command from the supplied options.
10100
10473
  */
10101
10474
  declare const renderCdkNotices: (opts: CdkNoticesOptions) => string;
10102
10475
  /**
@@ -10106,11 +10479,35 @@ declare const renderCdkNotices: (opts: CdkNoticesOptions) => string;
10106
10479
  */
10107
10480
  declare const renderCdkDoctor: (opts: CdkDoctorOptions) => string;
10108
10481
  /**
10109
- * Render a `cdk docs ...` command from the supplied options. `docs` has no
10110
- * command-specific flags; only the inherited globals and trailing tokens
10111
- * contribute output.
10482
+ * Render a `cdk docs ...` command from the supplied options.
10112
10483
  */
10113
10484
  declare const renderCdkDocs: (opts: CdkDocsOptions) => string;
10485
+ /**
10486
+ * Render a `cdk validate ...` command from the supplied options. The variadic
10487
+ * `STACKS` positional is carried by the inherited `stackPatterns` field and
10488
+ * renders in trailing-token position.
10489
+ */
10490
+ declare const renderCdkValidate: (opts: CdkValidateOptions) => string;
10491
+ /**
10492
+ * Render a `cdk lsp ...` command from the supplied options. `lsp` takes no
10493
+ * positional arguments.
10494
+ */
10495
+ declare const renderCdkLsp: (opts: CdkLspOptions) => string;
10496
+ /**
10497
+ * Render a `cdk diagnose ...` command from the supplied options. The variadic
10498
+ * `STACKS` positional is carried by the inherited `stackPatterns` field and
10499
+ * renders in trailing-token position.
10500
+ */
10501
+ declare const renderCdkDiagnose: (opts: CdkDiagnoseOptions) => string;
10502
+ /**
10503
+ * Render a `cdk cli-telemetry ...` command from the supplied options.
10504
+ *
10505
+ * `--enable`, `--disable`, and `--status` are mutually exclusive in the CLI.
10506
+ * The renderer emits whatever it is given without validating that constraint,
10507
+ * matching how the rest of this surface treats upstream `conflicts`
10508
+ * declarations.
10509
+ */
10510
+ declare const renderCdkCliTelemetry: (opts: CdkCliTelemetryOptions) => string;
10114
10511
 
10115
10512
  /**
10116
10513
  * One row in the doc reference-extraction report — describes a single
@@ -15245,4 +15642,4 @@ declare function pinPnpmActionSetup(project: Project$1): void;
15245
15642
  */
15246
15643
  declare function pinSetupNodeVersion(project: Project$1): void;
15247
15644
 
15248
- 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_TEMPLATE, 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 CdkContextOptions, type CdkDeployMethod, type CdkDeployOptions, type CdkDestroyOptions, 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 CdkInitTemplate, type CdkListOptions, type CdkMetadataOptions, type CdkMigrateOptions, type CdkNoticesOptions, type CdkOrphanOptions, type CdkProgress, type CdkPublishAssetsOptions, type CdkRefactorOptions, type CdkRequireApproval, type CdkRollbackOptions, type CdkSynthOptions, type CdkTargetOverrides, 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, renderCdkContext, renderCdkDeploy, renderCdkDestroy, renderCdkDiff, renderCdkDocs, renderCdkDoctor, renderCdkDrift, renderCdkFlags, renderCdkGc, renderCdkImport, renderCdkInit, renderCdkList, renderCdkMetadata, renderCdkMigrate, renderCdkNotices, renderCdkOrphan, renderCdkPublishAssets, renderCdkRefactor, renderCdkRollback, renderCdkSynth, 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 };
15645
+ 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 };