@codedrifters/configulator 0.0.428 → 0.0.430

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.ts CHANGED
@@ -7,7 +7,7 @@ import * as spec from '@jsii/spec';
7
7
  import { TypeScriptAppProject, TypeScriptProjectOptions as TypeScriptProjectOptions$1, TypeScriptProject as TypeScriptProject$1 } from 'projen/lib/typescript';
8
8
  import { ValueOf } from 'type-fest';
9
9
  import { BuildWorkflow, BuildWorkflowOptions } from 'projen/lib/build';
10
- import { GithubWorkflow } from 'projen/lib/github';
10
+ import { GithubWorkflow, GitHub } from 'projen/lib/github';
11
11
  import { JobStep } from 'projen/lib/github/workflows-model';
12
12
 
13
13
  /**
@@ -12496,6 +12496,23 @@ declare const PERMISSION_BACKUP_FILE = "permissions-backup.acl";
12496
12496
  * when `gate` is `plan-apply`.
12497
12497
  */
12498
12498
  interface PlanApplyOptions {
12499
+ /**
12500
+ * Put this workflow's apply jobs on an apply workflow another
12501
+ * `AwsDeployWorkflow` already created, instead of creating a second one.
12502
+ *
12503
+ * Pass that component's `applyWorkflow`. Sharing is what lets a multi-service
12504
+ * repo render a cross-service `deployAfterTargets` graph: GitHub resolves
12505
+ * `needs` only within a single workflow file. Every component sharing an
12506
+ * apply workflow must share one build workflow and agree on
12507
+ * {@link requireCurrentHead}, {@link verifyArtifactDigest}, and
12508
+ * `homeRepository`, all of which the single shared validation job bakes in.
12509
+ *
12510
+ * Mutually exclusive with {@link applyWorkflowName}.
12511
+ *
12512
+ * @see `docs/packages/@codedrifters/configulator/workflows/aws-deploy-workflow.md`
12513
+ * @default - this component creates its own apply workflow
12514
+ */
12515
+ readonly applyWorkflow?: GithubWorkflow;
12499
12516
  /**
12500
12517
  * File name (without `.yml`) of the generated apply workflow.
12501
12518
  *
@@ -12748,10 +12765,16 @@ declare class AwsDeployWorkflow extends Component {
12748
12765
  * Resolved `plan-apply` settings. Every field is concrete so callers never
12749
12766
  * have to re-apply the defaults. Populated under every gate, and simply
12750
12767
  * unused outside `plan-apply`.
12768
+ *
12769
+ * `applyWorkflow` is omitted because it is an input, not a setting — read
12770
+ * {@link applyWorkflow} for the workflow this component actually uses,
12771
+ * whether it created or joined it.
12751
12772
  */
12752
- readonly planApplyOptions: Required<PlanApplyOptions>;
12773
+ readonly planApplyOptions: Required<Omit<PlanApplyOptions, "applyWorkflow">>;
12753
12774
  /**
12754
- * The dispatch-only apply workflow, when the gate is `plan-apply`.
12775
+ * The dispatch-only apply workflow, when the gate is `plan-apply`. Shared
12776
+ * with any other `AwsDeployWorkflow` that was pointed at it via
12777
+ * `planApply.applyWorkflow`.
12755
12778
  */
12756
12779
  readonly applyWorkflow?: GithubWorkflow;
12757
12780
  constructor(project: AwsCdkTypeScriptApp, options?: DeployWorkflowOptions);
@@ -12764,6 +12787,11 @@ declare class AwsDeployWorkflow extends Component {
12764
12787
  * header so dev/stage/prod comments don't collide on the same PR.
12765
12788
  */
12766
12789
  private buildJobName;
12790
+ /**
12791
+ * Build the deterministic GitHub Actions job name for a target's apply job.
12792
+ * Mirrors {@link buildJobName} with an `apply` verb.
12793
+ */
12794
+ private buildApplyJobName;
12767
12795
  /**
12768
12796
  * Build the deterministic GitHub Actions job name for a target's `cdk diff`
12769
12797
  * job. Mirrors {@link buildJobName} with a `diff` verb so the diff and deploy
@@ -12771,29 +12799,35 @@ declare class AwsDeployWorkflow extends Component {
12771
12799
  */
12772
12800
  private buildDiffJobName;
12773
12801
  /**
12774
- * Build the deterministic GitHub Actions job name for a target's apply job.
12775
- * Mirrors {@link buildJobName} with an `apply` verb.
12802
+ * Build the slug that makes a target unique among every target in the plan
12803
+ * workflow, across every deploy component feeding it.
12804
+ *
12805
+ * Includes `deploymentTargetRole`, which two otherwise-identical targets can
12806
+ * differ on.
12776
12807
  */
12777
- private buildApplyJobName;
12808
+ private buildDiffSlug;
12778
12809
  /**
12779
- * Build the CI artifact name for a target's captured diff.
12810
+ * Build the file a target's captured diff is written to, both in its own diff
12811
+ * job's workspace and in the merged directory the report job assembles.
12812
+ */
12813
+ private buildDiffOutputFile;
12814
+ /**
12815
+ * Build the intermediate artifact name carrying one target's captured diff.
12780
12816
  *
12781
- * Carries every component that makes a target unique including
12782
- * `deploymentTargetRole`, which two otherwise-identical targets can differ
12783
- * on. `actions/upload-artifact` v4+ treats artifacts as immutable and rejects
12784
- * a duplicate name within a run, so parallel diff jobs cannot share one.
12817
+ * The diff jobs run in parallel and `actions/upload-artifact` v4+ rejects a
12818
+ * duplicate name within a run, so each target needs its own. The report job
12819
+ * merges them into a single artifact, which is the one meant to be read.
12785
12820
  */
12786
- private buildDiffArtifactName;
12821
+ private buildDiffPartArtifactName;
12787
12822
  /**
12788
- * Create the dispatch-only apply workflow and its validation job.
12823
+ * Join an apply workflow another `AwsDeployWorkflow` already created, so this
12824
+ * component's apply jobs land in that file rather than a second one.
12789
12825
  *
12790
- * The workflow file name defaults to the plan workflow's name suffixed with
12791
- * `-apply`. A name already in use throws rather than silently colliding on
12792
- * the underlying `.github/workflows/<name>.yml` file the usual cause is two
12793
- * `AwsDeployWorkflow`s sharing one build workflow, and the fix is an explicit
12794
- * `planApply.applyWorkflowName`.
12826
+ * Rejects a `GithubWorkflow` that is not an apply workflow: attaching to an
12827
+ * arbitrary one would add apply jobs depending on a `validate-plan` job that
12828
+ * does not exist there, which GitHub rejects only at run time.
12795
12829
  */
12796
- private createApplyWorkflow;
12830
+ private attachApplyWorkflow;
12797
12831
  /**
12798
12832
  * Register one target's apply job on the apply workflow.
12799
12833
  *
@@ -14434,6 +14468,111 @@ declare class VSCodeConfig extends Component {
14434
14468
  constructor(project: TypeScriptAppProject);
14435
14469
  }
14436
14470
 
14471
+ /**
14472
+ * Settings every `AwsDeployWorkflow` sharing one apply workflow must agree on,
14473
+ * because they are baked into the single shared `validate-plan` job.
14474
+ */
14475
+ interface ApplyWorkflowContract {
14476
+ /**
14477
+ * Name of the plan (build) workflow whose runs this apply workflow accepts.
14478
+ */
14479
+ readonly planWorkflowName: string;
14480
+ /**
14481
+ * Assert the plan run's commit is still the head of its branch.
14482
+ */
14483
+ readonly requireCurrentHead: boolean;
14484
+ /**
14485
+ * Resolve and export the build artifact's digest during validation.
14486
+ */
14487
+ readonly verifyArtifactDigest: boolean;
14488
+ }
14489
+ /**
14490
+ * Inputs to {@link ApplyWorkflow.attach}.
14491
+ */
14492
+ interface ApplyWorkflowAttachOptions extends ApplyWorkflowContract {
14493
+ /**
14494
+ * Targets the attaching component deploys. Their branches join the union the
14495
+ * validation job accepts.
14496
+ */
14497
+ readonly awsDeploymentTargets: Array<AwsDeploymentTarget>;
14498
+ /**
14499
+ * Component name used in thrown error messages.
14500
+ */
14501
+ readonly componentName: string;
14502
+ }
14503
+ /**
14504
+ * Inputs to the {@link ApplyWorkflow} constructor.
14505
+ */
14506
+ interface ApplyWorkflowOptions extends ApplyWorkflowAttachOptions {
14507
+ /**
14508
+ * File name (without `.yml`) of the generated apply workflow.
14509
+ */
14510
+ readonly applyWorkflowName: string;
14511
+ /**
14512
+ * Rendered repository-guard expression for the validation job, if any.
14513
+ */
14514
+ readonly homeRepositoryCondition?: string;
14515
+ }
14516
+ /**
14517
+ * The dispatch-only apply workflow behind the `plan-apply` gate, plus the state
14518
+ * every `AwsDeployWorkflow` attached to it shares.
14519
+ *
14520
+ * One component owns the file so several deploy components — typically one per
14521
+ * service in a multi-service repo, all sharing a build workflow — can put their
14522
+ * apply jobs in it. That is what lets a cross-service `deployAfterTargets`
14523
+ * graph render as valid `needs`: GitHub resolves `needs` only within a single
14524
+ * workflow file.
14525
+ *
14526
+ * @see `docs/packages/@codedrifters/configulator/workflows/aws-deploy-workflow.md`
14527
+ */
14528
+ declare class ApplyWorkflow extends Component {
14529
+ static of(project: Project, workflow: GithubWorkflow): ApplyWorkflow | undefined;
14530
+ /**
14531
+ * The generated workflow. Exposed so a second `AwsDeployWorkflow` can be
14532
+ * pointed at it via `planApply.applyWorkflow`.
14533
+ */
14534
+ readonly workflow: GithubWorkflow;
14535
+ /**
14536
+ * Settings every attached component must agree on.
14537
+ */
14538
+ readonly contract: ApplyWorkflowContract;
14539
+ /**
14540
+ * Repository guard on the validation job, if any.
14541
+ */
14542
+ private readonly homeRepositoryCondition?;
14543
+ /**
14544
+ * Every attached component's targets, in attach order. Held as targets rather
14545
+ * than branches because `AwsDeploymentTarget.branches` is mutable — the
14546
+ * branch union is read at `preSynthesize`, once every component has attached.
14547
+ */
14548
+ private readonly attachedTargets;
14549
+ constructor(project: Project, github: GitHub, options: ApplyWorkflowOptions);
14550
+ /**
14551
+ * Attach another component's apply jobs to this workflow.
14552
+ *
14553
+ * Every setting the shared `validate-plan` job bakes in must match what the
14554
+ * workflow was created with — there is one validation job for the whole file,
14555
+ * so a disagreement cannot be honoured and is rejected rather than resolved
14556
+ * in favour of whichever component happened to be constructed first.
14557
+ */
14558
+ attach: (options: ApplyWorkflowAttachOptions) => void;
14559
+ preSynthesize(): void;
14560
+ /**
14561
+ * Reject a boolean `planApply` setting that differs from the one this
14562
+ * workflow was created with.
14563
+ */
14564
+ private requireAgreement;
14565
+ /**
14566
+ * Render the validation job every apply job depends on.
14567
+ *
14568
+ * `allowedBranches` is the union of every attached target's branches, deduped
14569
+ * and left in attach order. The apply run's own `github.ref` says nothing
14570
+ * about what was planned, so the list is checked against the *plan run's*
14571
+ * `head_branch` rather than against a workflow-level branch filter.
14572
+ */
14573
+ private renderValidateJob;
14574
+ }
14575
+
14437
14576
  /** Name of the gate job appended to build workflows (ADR 0004). */
14438
14577
  declare const COMPLETE_JOB_ID = "complete";
14439
14578
  /**
@@ -14447,6 +14586,182 @@ declare const COMPLETE_JOB_ID = "complete";
14447
14586
  */
14448
14587
  declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
14449
14588
 
14589
+ /**
14590
+ * Job id of the report job that merges every target's captured diff into one
14591
+ * reviewable summary and artifact.
14592
+ */
14593
+ declare const DIFF_REPORT_JOB_ID = "diff-report";
14594
+ /**
14595
+ * Directory each target's diff is captured to, and the directory the report job
14596
+ * merges every downloaded part into.
14597
+ */
14598
+ declare const DIFF_OUTPUT_DIRECTORY = "cdk-diff";
14599
+ /**
14600
+ * Artifact-name prefix for a single target's captured diff.
14601
+ *
14602
+ * These are intermediates: the diff jobs run in parallel and
14603
+ * `actions/upload-artifact` v4+ treats artifact names as immutable, so each
14604
+ * target must upload under its own name. The report job merges them into
14605
+ * {@link DIFF_ARTIFACT_NAME}, which is the one meant to be read.
14606
+ */
14607
+ declare const DIFF_PART_ARTIFACT_PREFIX = "cdk-diff-part";
14608
+ /**
14609
+ * Name of the single merged artifact carrying every target's diff.
14610
+ */
14611
+ declare const DIFF_ARTIFACT_NAME = "cdk-diff";
14612
+ /**
14613
+ * One target's contribution to the diff report.
14614
+ */
14615
+ interface DiffReportTarget {
14616
+ /**
14617
+ * Human-readable target label, used as the summary heading.
14618
+ */
14619
+ readonly label: string;
14620
+ /**
14621
+ * Job id of the target's own diff job. Becomes a `needs` entry on the report.
14622
+ */
14623
+ readonly jobName: string;
14624
+ /**
14625
+ * File the target's diff lands at once the parts are merged.
14626
+ */
14627
+ readonly outputFile: string;
14628
+ /**
14629
+ * Branch filter this target deploys under, if any.
14630
+ */
14631
+ readonly branchCondition?: string;
14632
+ }
14633
+ /**
14634
+ * Inputs to {@link DiffReportJob.attach}.
14635
+ */
14636
+ interface DiffReportJobAttachOptions {
14637
+ /**
14638
+ * Plan workflow the report belongs to. One report job per build workflow.
14639
+ */
14640
+ readonly buildWorkflow: BuildWorkflow;
14641
+ /**
14642
+ * Rendered repository-guard expression, if the workflow is pinned.
14643
+ */
14644
+ readonly homeRepositoryCondition?: string;
14645
+ /**
14646
+ * Render the merged diffs into the job summary.
14647
+ */
14648
+ readonly summary: boolean;
14649
+ /**
14650
+ * Upload the merged diffs as a single run artifact.
14651
+ */
14652
+ readonly artifact: boolean;
14653
+ /**
14654
+ * Targets the attaching component contributes.
14655
+ */
14656
+ readonly targets: Array<DiffReportTarget>;
14657
+ }
14658
+ /**
14659
+ * The job that turns a plan workflow's per-target `cdk diff` jobs into one
14660
+ * reviewable summary and one artifact.
14661
+ *
14662
+ * The diffs themselves stay in their own jobs, in parallel — a diff is a
14663
+ * read-only comparison and there is no reason to serialize them, and each needs
14664
+ * its own account's credentials anyway. What does not scale is the *review*:
14665
+ * under the `plan-apply` gate the diff is the only review surface, so a
14666
+ * seven-service repo would otherwise mean seven job summaries to open and
14667
+ * reconcile by hand. This job downloads every target's part, renders them under
14668
+ * one heading each, and uploads the merged directory as a single artifact.
14669
+ *
14670
+ * Every deploy component sharing the build workflow contributes here, so the
14671
+ * report spans services rather than stopping at one.
14672
+ *
14673
+ * @see `docs/packages/@codedrifters/configulator/workflows/aws-deploy-workflow.md`
14674
+ */
14675
+ declare class DiffReportJob extends Component {
14676
+ static of(project: Project, buildWorkflow: BuildWorkflow): DiffReportJob | undefined;
14677
+ /**
14678
+ * Add a component's targets to the plan workflow's diff report, creating the
14679
+ * report job the first time it is called for that workflow.
14680
+ */
14681
+ static attach(project: Project, options: DiffReportJobAttachOptions): DiffReportJob;
14682
+ /**
14683
+ * Plan workflow this report belongs to.
14684
+ */
14685
+ readonly buildWorkflow: BuildWorkflow;
14686
+ private readonly homeRepositoryCondition?;
14687
+ /**
14688
+ * Every contributed target, in attach order.
14689
+ */
14690
+ private readonly targets;
14691
+ /**
14692
+ * Publish settings are OR-ed rather than first-wins: one report means one
14693
+ * answer, and a component that asked for a summary should get one even when
14694
+ * a sibling did not.
14695
+ */
14696
+ private summary;
14697
+ private artifact;
14698
+ constructor(project: Project, options: DiffReportJobAttachOptions);
14699
+ preSynthesize(): void;
14700
+ /**
14701
+ * Fold one component's contribution in.
14702
+ */
14703
+ private record;
14704
+ /**
14705
+ * Compose the report's own condition.
14706
+ *
14707
+ * `!cancelled()` leads, and it is load-bearing: a job whose `needs` failed or
14708
+ * were skipped is skipped by default, so without a status function the report
14709
+ * would vanish in exactly the cases it is most wanted — one target's diff
14710
+ * failing, or some targets not applying to this branch.
14711
+ */
14712
+ private renderJobCondition;
14713
+ /**
14714
+ * Pull every target's part into one directory.
14715
+ *
14716
+ * `continueOnError` because a run where every target's diff job was skipped
14717
+ * by its branch filter matches no parts at all, and a report with nothing to
14718
+ * report is not a failure.
14719
+ */
14720
+ private renderDownloadStep;
14721
+ /**
14722
+ * Render every target's diff into the job summary, one collapsed `<details>`
14723
+ * block per target.
14724
+ *
14725
+ * A target whose part is absent renders as "did not run", which is what
14726
+ * distinguishes a target that was skipped or whose diff failed before it
14727
+ * captured anything from one that simply had no changes — the latter has a
14728
+ * file, carrying the CDK CLI's own no-differences wording, rather than being
14729
+ * detected by matching on it.
14730
+ */
14731
+ private renderSummaryStep;
14732
+ /**
14733
+ * Fail the report when any target's diff failed.
14734
+ *
14735
+ * Runs last, so the summary and the artifact are published first — a reviewer
14736
+ * still gets the whole picture, including whatever the failing target managed
14737
+ * to capture. But the report must not end up green: everything gated behind
14738
+ * it `needs` it, and a job whose `needs` failed is skipped, which is what
14739
+ * keeps a failed diff from letting a gated deploy through to *Waiting for
14740
+ * approval*. Without this the report would always succeed and a diff failure
14741
+ * would only soft-block behind a human.
14742
+ *
14743
+ * Only `failure` counts. A target skipped by its branch filter reports
14744
+ * `skipped`, which is normal and must not fail the report.
14745
+ */
14746
+ private renderFailureStep;
14747
+ /**
14748
+ * Upload the merged directory as the one artifact meant to be read.
14749
+ */
14750
+ private renderUploadStep;
14751
+ }
14752
+ /**
14753
+ * Upload step for a single target's captured diff, run inside that target's own
14754
+ * diff job.
14755
+ *
14756
+ * Guarded on `!cancelled()` rather than success, so a `cdk diff` that exits
14757
+ * non-zero still hands whatever it captured to the report.
14758
+ */
14759
+ declare const renderDiffPartUploadStep: (options: {
14760
+ label: string;
14761
+ artifactName: string;
14762
+ outputFile: string;
14763
+ }) => JobStep;
14764
+
14450
14765
  /**
14451
14766
  * Render the GitHub Actions expression fragment that pins a job to one
14452
14767
  * repository, validating the slug at synth time.
@@ -14461,6 +14776,73 @@ declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
14461
14776
  * @returns The condition fragment, or `undefined` when the workflow is unpinned.
14462
14777
  */
14463
14778
  declare const renderHomeRepositoryCondition: (homeRepository: string | undefined, componentName: string) => string | undefined;
14779
+ /**
14780
+ * Inputs to {@link WorkflowHomeRepository.require}.
14781
+ */
14782
+ interface WorkflowHomeRepositoryOptions {
14783
+ /**
14784
+ * Workflow the pin applies to. Object identity is the key, so a projen
14785
+ * `BuildWorkflow` and a `GithubWorkflow` are both valid.
14786
+ */
14787
+ readonly workflow: Component;
14788
+ /**
14789
+ * Workflow file name, used in the thrown error message.
14790
+ */
14791
+ readonly workflowName: string;
14792
+ /**
14793
+ * `owner/repo` slug this component declared, or `undefined` for no pin.
14794
+ */
14795
+ readonly homeRepository?: string;
14796
+ /**
14797
+ * Component name used in the thrown error message.
14798
+ */
14799
+ readonly componentName: string;
14800
+ }
14801
+ /**
14802
+ * The `homeRepository` pin declared against one workflow file.
14803
+ *
14804
+ * The pin is a property of the workflow, not of whichever component declared
14805
+ * it: it guards every cloud-touching job in the file, and under the
14806
+ * `plan-apply` gate the shared `validate-plan` job carries it for every apply
14807
+ * job that needs it. A skipped `needs` job skips its dependents, so one
14808
+ * component's pin would otherwise silently govern services that never asked to
14809
+ * be pinned. This component records the first declaration and rejects any later
14810
+ * one that disagrees.
14811
+ *
14812
+ * @see `docs/packages/@codedrifters/configulator/workflows/aws-deploy-workflow.md`
14813
+ */
14814
+ declare class WorkflowHomeRepository extends Component {
14815
+ static of(project: Project, workflow: Component): WorkflowHomeRepository | undefined;
14816
+ /**
14817
+ * Record a pin against a workflow, throwing when it disagrees with what an
14818
+ * earlier component declared for the same one.
14819
+ *
14820
+ * @param project - Project the record is attached to. Use the root project,
14821
+ * so components on sibling sub-projects find each other.
14822
+ */
14823
+ static require(project: Project, options: WorkflowHomeRepositoryOptions): WorkflowHomeRepository;
14824
+ /**
14825
+ * Workflow this pin applies to.
14826
+ */
14827
+ readonly workflow: Component;
14828
+ /**
14829
+ * `owner/repo` slug every component sharing the workflow must declare, or
14830
+ * `undefined` when the workflow is unpinned.
14831
+ */
14832
+ readonly homeRepository?: string;
14833
+ constructor(project: Project, options: WorkflowHomeRepositoryOptions);
14834
+ }
14835
+
14836
+ /**
14837
+ * Steps that put Node on the runner.
14838
+ *
14839
+ * Occasionally fails on GitHub-internal issues, hence the short timeout.
14840
+ */
14841
+ declare const renderSetupNode: () => Array<JobStep>;
14842
+ /**
14843
+ * Steps that put pnpm on the runner, pinned to the project's version.
14844
+ */
14845
+ declare const renderSetupPnpm: (pnpmVersion: string) => Array<JobStep>;
14464
14846
 
14465
14847
  /**
14466
14848
  * Sets `with["include-hidden-files"] = true` on every build-artifact
@@ -14610,5 +14992,5 @@ declare function pinPnpmActionSetup(project: Project): void;
14610
14992
  */
14611
14993
  declare function pinSetupNodeVersion(project: Project): void;
14612
14994
 
14613
- export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, ApiExtractor, AstroConfig, AstroOutput, AstroProject, AuditCategory, AuditMode, AuditSeverity, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILD_ARTIFACT_NAME, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, 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, CdkCli, 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_GATE, DOCS_SYNC_AUDIT_SCHEMA_VERSION, GITHUB_ISSUE_TYPES, GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX, ISSUE_TEMPLATES_GENERATED_SUFFIX, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, Nvmrc, PERMISSION_BACKUP_FILE, PHASE_LABEL_TYPE_MAP, PLAN_RUN_ID_INPUT, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, RequirementIssueTemplate, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SET_ISSUE_TYPE_HELPER_PATH, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALIDATE_PLAN_JOB_ID, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, 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, 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, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStripToolArtifactTagsProcedure, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderTitlePrefixTypeBullets, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, 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 };
14614
- export type { ActionItemFilingConfig, ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffCheckOptions, ApiDiffFinding, ApiDiffResult, ApiExtractorOptions, ApiExtractorReportOptions, ApiSurfaceEntry, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitTemplate, CdkListOptions, CdkMetadataOptions, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployDiffOptions, DeployGate, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, GithubIssueType, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplateRecipeStub, IssueTemplatesConfig, IssueTypeAssignmentStepOptions, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoPnpmOptions, MonorepoProjectOptions, OrganizationMetadata, PhaseLabelTypeOutcome, PhaseLabelTypeResolution, PlanApplyOptions, PlanValidationScriptOptions, PnpmWorkspaceOptions, PrReviewAutoMergeConfig, PrReviewCiVerificationConfig, PrReviewPolicyConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, RequirementBlockFields, RequirementCategoryDirsConfig, RequirementIssueTemplateOptions, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedBaseConventions, ResolvedBuildPolicy, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedOrchestratorConventions, ResolvedPrReviewAutoMerge, ResolvedPrReviewPolicy, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRequirementCategoryDirs, ResolvedRuleConventions, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TurboRunContinue, TurboRunDryRun, TurboRunLogOrder, TurboRunLogPrefix, TurboRunOptions, TurboRunOutputLogs, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
14995
+ export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, ApiExtractor, ApplyWorkflow, AstroConfig, AstroOutput, AstroProject, AuditCategory, AuditMode, AuditSeverity, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILD_ARTIFACT_NAME, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, 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, CdkCli, 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_GATE, DIFF_ARTIFACT_NAME, DIFF_OUTPUT_DIRECTORY, DIFF_PART_ARTIFACT_PREFIX, DIFF_REPORT_JOB_ID, DOCS_SYNC_AUDIT_SCHEMA_VERSION, DiffReportJob, GITHUB_ISSUE_TYPES, GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX, ISSUE_TEMPLATES_GENERATED_SUFFIX, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, Nvmrc, PERMISSION_BACKUP_FILE, PHASE_LABEL_TYPE_MAP, PLAN_RUN_ID_INPUT, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, RequirementIssueTemplate, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SET_ISSUE_TYPE_HELPER_PATH, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALIDATE_PLAN_JOB_ID, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, WorkflowHomeRepository, 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, 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 };
14996
+ export type { ActionItemFilingConfig, ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffCheckOptions, ApiDiffFinding, ApiDiffResult, ApiExtractorOptions, ApiExtractorReportOptions, ApiSurfaceEntry, ApplyWorkflowAttachOptions, ApplyWorkflowContract, ApplyWorkflowOptions, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitTemplate, CdkListOptions, CdkMetadataOptions, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployDiffOptions, DeployGate, DeployWorkflowOptions, DeploymentMetadata, DiffReportJobAttachOptions, DiffReportTarget, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, GithubIssueType, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplateRecipeStub, IssueTemplatesConfig, IssueTypeAssignmentStepOptions, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoPnpmOptions, MonorepoProjectOptions, OrganizationMetadata, PhaseLabelTypeOutcome, PhaseLabelTypeResolution, PlanApplyOptions, PlanValidationScriptOptions, PnpmWorkspaceOptions, PrReviewAutoMergeConfig, PrReviewCiVerificationConfig, PrReviewPolicyConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, RequirementBlockFields, RequirementCategoryDirsConfig, RequirementIssueTemplateOptions, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedBaseConventions, ResolvedBuildPolicy, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedOrchestratorConventions, ResolvedPrReviewAutoMerge, ResolvedPrReviewPolicy, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRequirementCategoryDirs, ResolvedRuleConventions, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TurboRunContinue, TurboRunDryRun, TurboRunLogOrder, TurboRunLogPrefix, TurboRunOptions, TurboRunOutputLogs, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions, WorkflowHomeRepositoryOptions };