@codedrifters/configulator 0.0.429 → 0.0.431
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 +256 -10
- package/lib/index.d.ts +257 -11
- package/lib/index.js +439 -139
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +411 -119
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -12573,6 +12573,35 @@ interface DeployWorkflowOptions {
|
|
|
12573
12573
|
* @default discovers all targets using stageType
|
|
12574
12574
|
*/
|
|
12575
12575
|
readonly awsDeploymentTargets?: Array<AwsDeploymentTarget>;
|
|
12576
|
+
/**
|
|
12577
|
+
* Key each deploy job's concurrency group on the branch as well as the
|
|
12578
|
+
* deployment target.
|
|
12579
|
+
*
|
|
12580
|
+
* A deploy job's group is otherwise the target coordinates alone
|
|
12581
|
+
* (`<stage>-<role>-deploy-<project>-<account>-<region>`), and GitHub scopes
|
|
12582
|
+
* concurrency groups to the *repository* — so one group serializes every run
|
|
12583
|
+
* of every workflow carrying that job, on every branch. That is what you want
|
|
12584
|
+
* when each branch deploys the same stacks.
|
|
12585
|
+
*
|
|
12586
|
+
* It is not what you want when the CDK app derives its stack names from the
|
|
12587
|
+
* branch: two branches then update entirely separate stacks while queueing
|
|
12588
|
+
* behind one lock. Setting this appends the branch, so branches deploy in
|
|
12589
|
+
* parallel and same-branch runs still serialize.
|
|
12590
|
+
*
|
|
12591
|
+
* Enabling this lets per-branch deploys run concurrently into the *same* AWS
|
|
12592
|
+
* account, so anything they share outside their own stacks — a parent hosted
|
|
12593
|
+
* zone, an account-level singleton — has to tolerate concurrent mutation.
|
|
12594
|
+
*
|
|
12595
|
+
* Applies to the deploy job only. The `plan-apply` gate's apply job keeps the
|
|
12596
|
+
* unsuffixed group: an apply is dispatched from whatever ref the operator
|
|
12597
|
+
* happens to be on, which says nothing about the branch that was planned, so
|
|
12598
|
+
* a branch key there would weaken the mutual exclusion rather than sharpen
|
|
12599
|
+
* it.
|
|
12600
|
+
*
|
|
12601
|
+
* @see `docs/packages/@codedrifters/configulator/workflows/aws-deploy-workflow.md`
|
|
12602
|
+
* @default false - the group is the deployment target alone
|
|
12603
|
+
*/
|
|
12604
|
+
readonly branchScopedConcurrency?: boolean;
|
|
12576
12605
|
/**
|
|
12577
12606
|
* Existing workflow, useful if we're tacking deployments onto an existing
|
|
12578
12607
|
* build workflow
|
|
@@ -12700,6 +12729,10 @@ declare class AwsDeployWorkflow extends Component {
|
|
|
12700
12729
|
* never have to re-apply the defaults.
|
|
12701
12730
|
*/
|
|
12702
12731
|
readonly diffOptions: Required<DeployDiffOptions>;
|
|
12732
|
+
/**
|
|
12733
|
+
* Whether each deploy job's concurrency group carries the branch.
|
|
12734
|
+
*/
|
|
12735
|
+
readonly branchScopedConcurrency: boolean;
|
|
12703
12736
|
/**
|
|
12704
12737
|
* Repository this workflow's cloud-touching jobs are pinned to, if any.
|
|
12705
12738
|
*/
|
|
@@ -12738,6 +12771,25 @@ declare class AwsDeployWorkflow extends Component {
|
|
|
12738
12771
|
* header so dev/stage/prod comments don't collide on the same PR.
|
|
12739
12772
|
*/
|
|
12740
12773
|
private buildJobName;
|
|
12774
|
+
/**
|
|
12775
|
+
* Build a deploy job's `concurrency` setting from its job name.
|
|
12776
|
+
*
|
|
12777
|
+
* Two shapes, deliberately:
|
|
12778
|
+
*
|
|
12779
|
+
* - Unscoped (the default) stays the bare string the job has always carried,
|
|
12780
|
+
* so an existing consumer's workflow is byte-identical.
|
|
12781
|
+
* - Branch-scoped spells out `cancel-in-progress: false` rather than leaning
|
|
12782
|
+
* on GitHub's default, the same way the apply job does. A group keyed on
|
|
12783
|
+
* the branch reads like a "cancel superseded pushes" group, and that is the
|
|
12784
|
+
* one thing it must not be — cancelling a half-finished `cdk deploy`
|
|
12785
|
+
* strands a CloudFormation stack mid-update.
|
|
12786
|
+
*/
|
|
12787
|
+
private buildDeployConcurrency;
|
|
12788
|
+
/**
|
|
12789
|
+
* Build the deterministic GitHub Actions job name for a target's apply job.
|
|
12790
|
+
* Mirrors {@link buildJobName} with an `apply` verb.
|
|
12791
|
+
*/
|
|
12792
|
+
private buildApplyJobName;
|
|
12741
12793
|
/**
|
|
12742
12794
|
* Build the deterministic GitHub Actions job name for a target's `cdk diff`
|
|
12743
12795
|
* job. Mirrors {@link buildJobName} with a `diff` verb so the diff and deploy
|
|
@@ -12745,19 +12797,26 @@ declare class AwsDeployWorkflow extends Component {
|
|
|
12745
12797
|
*/
|
|
12746
12798
|
private buildDiffJobName;
|
|
12747
12799
|
/**
|
|
12748
|
-
* Build the
|
|
12749
|
-
*
|
|
12800
|
+
* Build the slug that makes a target unique among every target in the plan
|
|
12801
|
+
* workflow, across every deploy component feeding it.
|
|
12802
|
+
*
|
|
12803
|
+
* Includes `deploymentTargetRole`, which two otherwise-identical targets can
|
|
12804
|
+
* differ on.
|
|
12750
12805
|
*/
|
|
12751
|
-
private
|
|
12806
|
+
private buildDiffSlug;
|
|
12752
12807
|
/**
|
|
12753
|
-
* Build the
|
|
12808
|
+
* Build the file a target's captured diff is written to, both in its own diff
|
|
12809
|
+
* job's workspace and in the merged directory the report job assembles.
|
|
12810
|
+
*/
|
|
12811
|
+
private buildDiffOutputFile;
|
|
12812
|
+
/**
|
|
12813
|
+
* Build the intermediate artifact name carrying one target's captured diff.
|
|
12754
12814
|
*
|
|
12755
|
-
*
|
|
12756
|
-
*
|
|
12757
|
-
*
|
|
12758
|
-
* a duplicate name within a run, so parallel diff jobs cannot share one.
|
|
12815
|
+
* The diff jobs run in parallel and `actions/upload-artifact` v4+ rejects a
|
|
12816
|
+
* duplicate name within a run, so each target needs its own. The report job
|
|
12817
|
+
* merges them into a single artifact, which is the one meant to be read.
|
|
12759
12818
|
*/
|
|
12760
|
-
private
|
|
12819
|
+
private buildDiffPartArtifactName;
|
|
12761
12820
|
/**
|
|
12762
12821
|
* Join an apply workflow another `AwsDeployWorkflow` already created, so this
|
|
12763
12822
|
* component's apply jobs land in that file rather than a second one.
|
|
@@ -14525,6 +14584,182 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
14525
14584
|
*/
|
|
14526
14585
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
14527
14586
|
|
|
14587
|
+
/**
|
|
14588
|
+
* Job id of the report job that merges every target's captured diff into one
|
|
14589
|
+
* reviewable summary and artifact.
|
|
14590
|
+
*/
|
|
14591
|
+
declare const DIFF_REPORT_JOB_ID = "diff-report";
|
|
14592
|
+
/**
|
|
14593
|
+
* Directory each target's diff is captured to, and the directory the report job
|
|
14594
|
+
* merges every downloaded part into.
|
|
14595
|
+
*/
|
|
14596
|
+
declare const DIFF_OUTPUT_DIRECTORY = "cdk-diff";
|
|
14597
|
+
/**
|
|
14598
|
+
* Artifact-name prefix for a single target's captured diff.
|
|
14599
|
+
*
|
|
14600
|
+
* These are intermediates: the diff jobs run in parallel and
|
|
14601
|
+
* `actions/upload-artifact` v4+ treats artifact names as immutable, so each
|
|
14602
|
+
* target must upload under its own name. The report job merges them into
|
|
14603
|
+
* {@link DIFF_ARTIFACT_NAME}, which is the one meant to be read.
|
|
14604
|
+
*/
|
|
14605
|
+
declare const DIFF_PART_ARTIFACT_PREFIX = "cdk-diff-part";
|
|
14606
|
+
/**
|
|
14607
|
+
* Name of the single merged artifact carrying every target's diff.
|
|
14608
|
+
*/
|
|
14609
|
+
declare const DIFF_ARTIFACT_NAME = "cdk-diff";
|
|
14610
|
+
/**
|
|
14611
|
+
* One target's contribution to the diff report.
|
|
14612
|
+
*/
|
|
14613
|
+
interface DiffReportTarget {
|
|
14614
|
+
/**
|
|
14615
|
+
* Human-readable target label, used as the summary heading.
|
|
14616
|
+
*/
|
|
14617
|
+
readonly label: string;
|
|
14618
|
+
/**
|
|
14619
|
+
* Job id of the target's own diff job. Becomes a `needs` entry on the report.
|
|
14620
|
+
*/
|
|
14621
|
+
readonly jobName: string;
|
|
14622
|
+
/**
|
|
14623
|
+
* File the target's diff lands at once the parts are merged.
|
|
14624
|
+
*/
|
|
14625
|
+
readonly outputFile: string;
|
|
14626
|
+
/**
|
|
14627
|
+
* Branch filter this target deploys under, if any.
|
|
14628
|
+
*/
|
|
14629
|
+
readonly branchCondition?: string;
|
|
14630
|
+
}
|
|
14631
|
+
/**
|
|
14632
|
+
* Inputs to {@link DiffReportJob.attach}.
|
|
14633
|
+
*/
|
|
14634
|
+
interface DiffReportJobAttachOptions {
|
|
14635
|
+
/**
|
|
14636
|
+
* Plan workflow the report belongs to. One report job per build workflow.
|
|
14637
|
+
*/
|
|
14638
|
+
readonly buildWorkflow: BuildWorkflow;
|
|
14639
|
+
/**
|
|
14640
|
+
* Rendered repository-guard expression, if the workflow is pinned.
|
|
14641
|
+
*/
|
|
14642
|
+
readonly homeRepositoryCondition?: string;
|
|
14643
|
+
/**
|
|
14644
|
+
* Render the merged diffs into the job summary.
|
|
14645
|
+
*/
|
|
14646
|
+
readonly summary: boolean;
|
|
14647
|
+
/**
|
|
14648
|
+
* Upload the merged diffs as a single run artifact.
|
|
14649
|
+
*/
|
|
14650
|
+
readonly artifact: boolean;
|
|
14651
|
+
/**
|
|
14652
|
+
* Targets the attaching component contributes.
|
|
14653
|
+
*/
|
|
14654
|
+
readonly targets: Array<DiffReportTarget>;
|
|
14655
|
+
}
|
|
14656
|
+
/**
|
|
14657
|
+
* The job that turns a plan workflow's per-target `cdk diff` jobs into one
|
|
14658
|
+
* reviewable summary and one artifact.
|
|
14659
|
+
*
|
|
14660
|
+
* The diffs themselves stay in their own jobs, in parallel — a diff is a
|
|
14661
|
+
* read-only comparison and there is no reason to serialize them, and each needs
|
|
14662
|
+
* its own account's credentials anyway. What does not scale is the *review*:
|
|
14663
|
+
* under the `plan-apply` gate the diff is the only review surface, so a
|
|
14664
|
+
* seven-service repo would otherwise mean seven job summaries to open and
|
|
14665
|
+
* reconcile by hand. This job downloads every target's part, renders them under
|
|
14666
|
+
* one heading each, and uploads the merged directory as a single artifact.
|
|
14667
|
+
*
|
|
14668
|
+
* Every deploy component sharing the build workflow contributes here, so the
|
|
14669
|
+
* report spans services rather than stopping at one.
|
|
14670
|
+
*
|
|
14671
|
+
* @see `docs/packages/@codedrifters/configulator/workflows/aws-deploy-workflow.md`
|
|
14672
|
+
*/
|
|
14673
|
+
declare class DiffReportJob extends Component {
|
|
14674
|
+
static of(project: Project$1, buildWorkflow: BuildWorkflow): DiffReportJob | undefined;
|
|
14675
|
+
/**
|
|
14676
|
+
* Add a component's targets to the plan workflow's diff report, creating the
|
|
14677
|
+
* report job the first time it is called for that workflow.
|
|
14678
|
+
*/
|
|
14679
|
+
static attach(project: Project$1, options: DiffReportJobAttachOptions): DiffReportJob;
|
|
14680
|
+
/**
|
|
14681
|
+
* Plan workflow this report belongs to.
|
|
14682
|
+
*/
|
|
14683
|
+
readonly buildWorkflow: BuildWorkflow;
|
|
14684
|
+
private readonly homeRepositoryCondition?;
|
|
14685
|
+
/**
|
|
14686
|
+
* Every contributed target, in attach order.
|
|
14687
|
+
*/
|
|
14688
|
+
private readonly targets;
|
|
14689
|
+
/**
|
|
14690
|
+
* Publish settings are OR-ed rather than first-wins: one report means one
|
|
14691
|
+
* answer, and a component that asked for a summary should get one even when
|
|
14692
|
+
* a sibling did not.
|
|
14693
|
+
*/
|
|
14694
|
+
private summary;
|
|
14695
|
+
private artifact;
|
|
14696
|
+
constructor(project: Project$1, options: DiffReportJobAttachOptions);
|
|
14697
|
+
preSynthesize(): void;
|
|
14698
|
+
/**
|
|
14699
|
+
* Fold one component's contribution in.
|
|
14700
|
+
*/
|
|
14701
|
+
private record;
|
|
14702
|
+
/**
|
|
14703
|
+
* Compose the report's own condition.
|
|
14704
|
+
*
|
|
14705
|
+
* `!cancelled()` leads, and it is load-bearing: a job whose `needs` failed or
|
|
14706
|
+
* were skipped is skipped by default, so without a status function the report
|
|
14707
|
+
* would vanish in exactly the cases it is most wanted — one target's diff
|
|
14708
|
+
* failing, or some targets not applying to this branch.
|
|
14709
|
+
*/
|
|
14710
|
+
private renderJobCondition;
|
|
14711
|
+
/**
|
|
14712
|
+
* Pull every target's part into one directory.
|
|
14713
|
+
*
|
|
14714
|
+
* `continueOnError` because a run where every target's diff job was skipped
|
|
14715
|
+
* by its branch filter matches no parts at all, and a report with nothing to
|
|
14716
|
+
* report is not a failure.
|
|
14717
|
+
*/
|
|
14718
|
+
private renderDownloadStep;
|
|
14719
|
+
/**
|
|
14720
|
+
* Render every target's diff into the job summary, one collapsed `<details>`
|
|
14721
|
+
* block per target.
|
|
14722
|
+
*
|
|
14723
|
+
* A target whose part is absent renders as "did not run", which is what
|
|
14724
|
+
* distinguishes a target that was skipped or whose diff failed before it
|
|
14725
|
+
* captured anything from one that simply had no changes — the latter has a
|
|
14726
|
+
* file, carrying the CDK CLI's own no-differences wording, rather than being
|
|
14727
|
+
* detected by matching on it.
|
|
14728
|
+
*/
|
|
14729
|
+
private renderSummaryStep;
|
|
14730
|
+
/**
|
|
14731
|
+
* Fail the report when any target's diff failed.
|
|
14732
|
+
*
|
|
14733
|
+
* Runs last, so the summary and the artifact are published first — a reviewer
|
|
14734
|
+
* still gets the whole picture, including whatever the failing target managed
|
|
14735
|
+
* to capture. But the report must not end up green: everything gated behind
|
|
14736
|
+
* it `needs` it, and a job whose `needs` failed is skipped, which is what
|
|
14737
|
+
* keeps a failed diff from letting a gated deploy through to *Waiting for
|
|
14738
|
+
* approval*. Without this the report would always succeed and a diff failure
|
|
14739
|
+
* would only soft-block behind a human.
|
|
14740
|
+
*
|
|
14741
|
+
* Only `failure` counts. A target skipped by its branch filter reports
|
|
14742
|
+
* `skipped`, which is normal and must not fail the report.
|
|
14743
|
+
*/
|
|
14744
|
+
private renderFailureStep;
|
|
14745
|
+
/**
|
|
14746
|
+
* Upload the merged directory as the one artifact meant to be read.
|
|
14747
|
+
*/
|
|
14748
|
+
private renderUploadStep;
|
|
14749
|
+
}
|
|
14750
|
+
/**
|
|
14751
|
+
* Upload step for a single target's captured diff, run inside that target's own
|
|
14752
|
+
* diff job.
|
|
14753
|
+
*
|
|
14754
|
+
* Guarded on `!cancelled()` rather than success, so a `cdk diff` that exits
|
|
14755
|
+
* non-zero still hands whatever it captured to the report.
|
|
14756
|
+
*/
|
|
14757
|
+
declare const renderDiffPartUploadStep: (options: {
|
|
14758
|
+
label: string;
|
|
14759
|
+
artifactName: string;
|
|
14760
|
+
outputFile: string;
|
|
14761
|
+
}) => JobStep;
|
|
14762
|
+
|
|
14528
14763
|
/**
|
|
14529
14764
|
* Render the GitHub Actions expression fragment that pins a job to one
|
|
14530
14765
|
* repository, validating the slug at synth time.
|
|
@@ -14596,6 +14831,17 @@ declare class WorkflowHomeRepository extends Component {
|
|
|
14596
14831
|
constructor(project: Project$1, options: WorkflowHomeRepositoryOptions);
|
|
14597
14832
|
}
|
|
14598
14833
|
|
|
14834
|
+
/**
|
|
14835
|
+
* Steps that put Node on the runner.
|
|
14836
|
+
*
|
|
14837
|
+
* Occasionally fails on GitHub-internal issues, hence the short timeout.
|
|
14838
|
+
*/
|
|
14839
|
+
declare const renderSetupNode: () => Array<JobStep>;
|
|
14840
|
+
/**
|
|
14841
|
+
* Steps that put pnpm on the runner, pinned to the project's version.
|
|
14842
|
+
*/
|
|
14843
|
+
declare const renderSetupPnpm: (pnpmVersion: string) => Array<JobStep>;
|
|
14844
|
+
|
|
14599
14845
|
/**
|
|
14600
14846
|
* Sets `with["include-hidden-files"] = true` on every build-artifact
|
|
14601
14847
|
* `Upload artifact` step generated by projen's
|
|
@@ -14744,4 +14990,4 @@ declare function pinPnpmActionSetup(project: Project$1): void;
|
|
|
14744
14990
|
*/
|
|
14745
14991
|
declare function pinSetupNodeVersion(project: Project$1): void;
|
|
14746
14992
|
|
|
14747
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, 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_GATE, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployDiffOptions, type DeployGate, type DeployWorkflowOptions, type DeploymentMetadata, 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, 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 };
|
|
14993
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, 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_GATE, DIFF_ARTIFACT_NAME, DIFF_OUTPUT_DIRECTORY, DIFF_PART_ARTIFACT_PREFIX, DIFF_REPORT_JOB_ID, DOCS_SYNC_AUDIT_SCHEMA_VERSION, 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, 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 };
|