@codedrifters/configulator 0.0.403 → 0.0.405
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 +230 -4
- package/lib/index.d.ts +231 -5
- package/lib/index.js +1370 -804
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1370 -814
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -3877,6 +3877,13 @@ declare class AgentConfig extends Component {
|
|
|
3877
3877
|
* their rendered rule content reflects any consumer override.
|
|
3878
3878
|
* Bundles that do not read agent paths are passed through as-is
|
|
3879
3879
|
* from their default const exports.
|
|
3880
|
+
*
|
|
3881
|
+
* The build policy is auto-detected from the project's `TurboRepo`
|
|
3882
|
+
* component here rather than configured, so build guidance in the
|
|
3883
|
+
* `github-workflow` and `turborepo` rules only claims an AWS
|
|
3884
|
+
* credential requirement when a remote cache actually exists. The
|
|
3885
|
+
* getter is lazy by design — `TurboRepo` must already be attached
|
|
3886
|
+
* to the project when the bundles are first read.
|
|
3880
3887
|
*/
|
|
3881
3888
|
private get pathAwareBundles();
|
|
3882
3889
|
/**
|
|
@@ -3943,6 +3950,72 @@ declare class AgentConfig extends Component {
|
|
|
3943
3950
|
private resolveBundlePermissions;
|
|
3944
3951
|
}
|
|
3945
3952
|
|
|
3953
|
+
/**
|
|
3954
|
+
* Fully-resolved build policy for the consuming project.
|
|
3955
|
+
*
|
|
3956
|
+
* The generated agent guidance around `pnpm build:all` used to assert
|
|
3957
|
+
* unconditionally that the command "requires the user to be
|
|
3958
|
+
* authenticated to AWS on the prod account used for Turborepo remote
|
|
3959
|
+
* caching (`readonlyaccess-prod-525259625215-us-east-1` profile)".
|
|
3960
|
+
* Both halves of that sentence were wrong for most consumers:
|
|
3961
|
+
*
|
|
3962
|
+
* 1. The AWS-auth requirement only exists when a Turborepo **remote
|
|
3963
|
+
* cache** is configured. Consumers running a local cache only
|
|
3964
|
+
* (`turbo.json` with just a `cacheDir`) need no credentials at
|
|
3965
|
+
* all, and agents that believed otherwise aborted mid-flow —
|
|
3966
|
+
* three lost-work incidents in `codedrifters/openhi-planning`.
|
|
3967
|
+
* 2. The profile name was this repository's own profile, baked
|
|
3968
|
+
* verbatim into every consumer's generated text.
|
|
3969
|
+
*
|
|
3970
|
+
* This struct carries the two facts the rule renderers need, derived
|
|
3971
|
+
* from the project's actual {@link TurboRepo} configuration, so the
|
|
3972
|
+
* guidance is true for whichever consumer it renders into.
|
|
3973
|
+
*
|
|
3974
|
+
* @see resolveBuildPolicy
|
|
3975
|
+
*/
|
|
3976
|
+
interface ResolvedBuildPolicy {
|
|
3977
|
+
/**
|
|
3978
|
+
* Whether a Turborepo **remote** cache is configured on the project.
|
|
3979
|
+
*
|
|
3980
|
+
* `false` means either there is no {@link TurboRepo} component at
|
|
3981
|
+
* all, or it was constructed without `remoteCacheOptions` — in both
|
|
3982
|
+
* cases `pnpm build:all` needs no AWS credentials and the generated
|
|
3983
|
+
* guidance must not claim otherwise.
|
|
3984
|
+
*/
|
|
3985
|
+
readonly remoteCacheEnabled: boolean;
|
|
3986
|
+
/**
|
|
3987
|
+
* Local AWS profile name used to fetch the remote-cache endpoint and
|
|
3988
|
+
* token, taken from `remoteCacheOptions.profileName`.
|
|
3989
|
+
*
|
|
3990
|
+
* `undefined` whenever {@link remoteCacheEnabled} is `false`. Never
|
|
3991
|
+
* hard-code a profile name in rule content — read it from here so
|
|
3992
|
+
* each consumer's generated text names its own profile.
|
|
3993
|
+
*/
|
|
3994
|
+
readonly awsProfileName?: string;
|
|
3995
|
+
}
|
|
3996
|
+
/**
|
|
3997
|
+
* Build policy for a project with no Turborepo remote cache — the
|
|
3998
|
+
* zero-config default. Rule renderers that receive this omit the
|
|
3999
|
+
* AWS-authentication guidance entirely rather than asserting a
|
|
4000
|
+
* credential requirement that does not exist.
|
|
4001
|
+
*/
|
|
4002
|
+
declare const DEFAULT_BUILD_POLICY: ResolvedBuildPolicy;
|
|
4003
|
+
/**
|
|
4004
|
+
* Derives the {@link ResolvedBuildPolicy} for a project by inspecting
|
|
4005
|
+
* its {@link TurboRepo} component.
|
|
4006
|
+
*
|
|
4007
|
+
* Auto-detection, not opt-in: `remoteCacheOptions` being `undefined`
|
|
4008
|
+
* *is* the "remote cache disabled" signal — `TurboRepo.renderRunArgs`
|
|
4009
|
+
* already branches on exactly the same condition when it decides
|
|
4010
|
+
* whether to emit `--api` / `--token` / `--team` flags. Consumers get
|
|
4011
|
+
* accurate guidance with no extra configuration.
|
|
4012
|
+
*
|
|
4013
|
+
* Call this lazily (at synthesis time), not from a constructor: the
|
|
4014
|
+
* `TurboRepo` component must already be attached to the project for
|
|
4015
|
+
* detection to succeed.
|
|
4016
|
+
*/
|
|
4017
|
+
declare function resolveBuildPolicy(project: Project): ResolvedBuildPolicy;
|
|
4018
|
+
|
|
3946
4019
|
/**
|
|
3947
4020
|
* Valid `status:*` values that may appear in an
|
|
3948
4021
|
* `IssueDefaultsOverride.status`. The list mirrors the canonical
|
|
@@ -4372,6 +4445,126 @@ interface BundleOwnership {
|
|
|
4372
4445
|
* cross-bundle surface appear here.
|
|
4373
4446
|
*/
|
|
4374
4447
|
declare const BUNDLE_OWNERSHIP: Readonly<Record<string, BundleOwnership>>;
|
|
4448
|
+
/**
|
|
4449
|
+
* GitHub `type:*` labels (WITH the `type:` prefix) that come from the
|
|
4450
|
+
* **conventional-commit** vocabulary rather than the bundle/routing
|
|
4451
|
+
* vocabulary. These are derived from an issue's title prefix by the
|
|
4452
|
+
* generic create-issue workflow (`feat:` → `type:feat`, `docs:` →
|
|
4453
|
+
* `type:docs`, …) and are the only `type:*` labels the phase-label
|
|
4454
|
+
* invariant is allowed to remove when it corrects a mislabeled issue.
|
|
4455
|
+
*
|
|
4456
|
+
* A bundle `type:*` label (e.g. `type:research`, `type:bcm-document`)
|
|
4457
|
+
* is deliberately **not** in this set: an issue carrying a phase label
|
|
4458
|
+
* from one bundle plus a `type:*` label owned by a *different* bundle
|
|
4459
|
+
* is genuinely ambiguous and gets flagged for a human rather than
|
|
4460
|
+
* silently rewritten.
|
|
4461
|
+
*/
|
|
4462
|
+
declare const CONVENTIONAL_COMMIT_TYPE_LABELS: ReadonlyArray<string>;
|
|
4463
|
+
/**
|
|
4464
|
+
* Canonical phase-label matcher → `type:<bundle>` label map, derived
|
|
4465
|
+
* from {@link BUNDLE_OWNERSHIP}. This is the **single source of truth**
|
|
4466
|
+
* for the phase-label → type-label invariant: label registry
|
|
4467
|
+
* generation, the orchestrator's triage sweep, and the consumer-facing
|
|
4468
|
+
* label audit all read this map rather than re-deriving the pairing.
|
|
4469
|
+
*
|
|
4470
|
+
* Keys are matchers in the same notation `BundleOwnership.phaseLabelPrefixes`
|
|
4471
|
+
* uses — an entry ending in a colon (`"company:"`) is a prefix match,
|
|
4472
|
+
* an entry without one (`"req:write"`) is an exact match. Values carry
|
|
4473
|
+
* the `type:` prefix.
|
|
4474
|
+
*
|
|
4475
|
+
* Co-ownership is fine as long as the co-owners agree on the type
|
|
4476
|
+
* label: all three requirements bundles declare `type:requirement`, so
|
|
4477
|
+
* `req:`, `req:write`, `req:review`, and `req:deprecate` all resolve to
|
|
4478
|
+
* the same value. A matcher that resolved to two *different* type
|
|
4479
|
+
* labels would be a registry bug and throws at module load.
|
|
4480
|
+
*/
|
|
4481
|
+
declare const PHASE_LABEL_TYPE_MAP: Readonly<Record<string, string>>;
|
|
4482
|
+
/**
|
|
4483
|
+
* Outcome of resolving a set of issue labels against
|
|
4484
|
+
* {@link PHASE_LABEL_TYPE_MAP}.
|
|
4485
|
+
*
|
|
4486
|
+
* - `"none"` — the labels carry no **recognised** phase label, so the
|
|
4487
|
+
* invariant does not apply. Unrecognised `foo:bar` labels are
|
|
4488
|
+
* consumer-specific and deliberately not policed.
|
|
4489
|
+
* - `"match"` — the recognised phase labels all imply one and the same
|
|
4490
|
+
* `type:<bundle>` label, carried in `typeLabel`.
|
|
4491
|
+
* - `"ambiguous"` — the recognised phase labels imply two or more
|
|
4492
|
+
* different `type:<bundle>` labels. Never auto-corrected; the caller
|
|
4493
|
+
* flags the issue for human triage instead.
|
|
4494
|
+
*/
|
|
4495
|
+
type PhaseLabelTypeOutcome = "none" | "match" | "ambiguous";
|
|
4496
|
+
/** Result of {@link resolveTypeLabelForLabels}. */
|
|
4497
|
+
interface PhaseLabelTypeResolution {
|
|
4498
|
+
/** Which of the three outcomes applies. */
|
|
4499
|
+
readonly outcome: PhaseLabelTypeOutcome;
|
|
4500
|
+
/**
|
|
4501
|
+
* The single implied `type:<bundle>` label (with the `type:` prefix)
|
|
4502
|
+
* when `outcome` is `"match"`; `undefined` otherwise.
|
|
4503
|
+
*/
|
|
4504
|
+
readonly typeLabel?: string;
|
|
4505
|
+
/**
|
|
4506
|
+
* Every distinct implied `type:<bundle>` label, sorted. Empty on
|
|
4507
|
+
* `"none"`, one entry on `"match"`, two or more on `"ambiguous"`.
|
|
4508
|
+
*/
|
|
4509
|
+
readonly candidateTypeLabels: ReadonlyArray<string>;
|
|
4510
|
+
/**
|
|
4511
|
+
* The subset of the input labels that matched a phase-label matcher,
|
|
4512
|
+
* in input order. Empty on `"none"`.
|
|
4513
|
+
*/
|
|
4514
|
+
readonly phaseLabels: ReadonlyArray<string>;
|
|
4515
|
+
}
|
|
4516
|
+
/**
|
|
4517
|
+
* Resolve a single phase label to the `type:<bundle>` label its owning
|
|
4518
|
+
* bundle declares, or `undefined` when no bundle owns it.
|
|
4519
|
+
*
|
|
4520
|
+
* Exact-match entries beat prefix entries: `req:write` is owned by
|
|
4521
|
+
* `requirements-writer` while the `req:` prefix is owned by
|
|
4522
|
+
* `requirements-analyst`. (Both currently declare `type:requirement`,
|
|
4523
|
+
* but the precedence is load-bearing for any future divergence.)
|
|
4524
|
+
*/
|
|
4525
|
+
declare function typeLabelForPhaseLabel(phaseLabel: string): string | undefined;
|
|
4526
|
+
/**
|
|
4527
|
+
* Resolve every label on an issue to the `type:<bundle>` label the
|
|
4528
|
+
* phase-label invariant requires it to carry.
|
|
4529
|
+
*
|
|
4530
|
+
* The input is the issue's **full** label list — the resolver picks out
|
|
4531
|
+
* the recognised phase labels itself and ignores everything else
|
|
4532
|
+
* (`status:*`, `priority:*`, existing `type:*`, and any consumer label
|
|
4533
|
+
* that matches no bundle).
|
|
4534
|
+
*/
|
|
4535
|
+
declare function resolveTypeLabelForLabels(labels: ReadonlyArray<string>): PhaseLabelTypeResolution;
|
|
4536
|
+
/**
|
|
4537
|
+
* Render the **Phase-label → `type:<bundle>` invariant** section of the
|
|
4538
|
+
* `orchestrator-conventions` rule. The matcher table is generated from
|
|
4539
|
+
* {@link PHASE_LABEL_TYPE_MAP}, so the documented pairing can never
|
|
4540
|
+
* drift from the pairing the sweep enforces.
|
|
4541
|
+
*
|
|
4542
|
+
* Rows whose owning bundle appears in `excludeBundles` are dropped,
|
|
4543
|
+
* matching every other cross-bundle renderer.
|
|
4544
|
+
*/
|
|
4545
|
+
declare function renderPhaseTypeInvariantSection(excludeBundles?: ReadonlyArray<string>): string;
|
|
4546
|
+
/**
|
|
4547
|
+
* Render the POSIX-shell half of the phase-label → `type:<bundle>`
|
|
4548
|
+
* invariant, derived from the same {@link PHASE_LABEL_TYPE_MAP} the
|
|
4549
|
+
* TypeScript accessors read. Emitted into `check-blocked.sh` so the
|
|
4550
|
+
* orchestrator's triage sweep and the consumer-runnable label audit
|
|
4551
|
+
* never carry a hand-copied second map.
|
|
4552
|
+
*
|
|
4553
|
+
* Three functions are rendered:
|
|
4554
|
+
*
|
|
4555
|
+
* - `phase_label_type_of <label>` — echoes the `type:<bundle>` label a
|
|
4556
|
+
* single phase label implies, or nothing. Exact-match branches are
|
|
4557
|
+
* emitted before prefix branches so `case` ordering reproduces the
|
|
4558
|
+
* exact-beats-prefix precedence.
|
|
4559
|
+
* - `phase_type_of` — reads an issue's labels (one per line) on stdin
|
|
4560
|
+
* and emits `KEY=VALUE` assignments: `OUTCOME=none|match|ambiguous`,
|
|
4561
|
+
* `TYPE_LABEL=` (match only), `CANDIDATE_TYPE_LABELS=` (ambiguous
|
|
4562
|
+
* only), and `PHASE_LABELS=`.
|
|
4563
|
+
* - `is_conventional_type_label <label>` — returns 0 for a
|
|
4564
|
+
* conventional-commit `type:*` label, i.e. the only labels the
|
|
4565
|
+
* auto-correction is allowed to remove.
|
|
4566
|
+
*/
|
|
4567
|
+
declare function renderPhaseTypeInvariantShellHelpers(): string;
|
|
4375
4568
|
/**
|
|
4376
4569
|
* Return `true` when `typeLabel` (without the leading `type:` prefix)
|
|
4377
4570
|
* is owned by any bundle in `excludedBundles`. Used by tier-table and
|
|
@@ -4679,7 +4872,22 @@ declare function buildDocsSyncBundle(paths?: ResolvedAgentPaths): AgentRuleBundl
|
|
|
4679
4872
|
declare const docsSyncBundle: AgentRuleBundle;
|
|
4680
4873
|
|
|
4681
4874
|
/**
|
|
4682
|
-
* GitHub workflow bundle — auto-detected when the project
|
|
4875
|
+
* Builds the GitHub workflow bundle — auto-detected when the project
|
|
4876
|
+
* has a GitHub component.
|
|
4877
|
+
*
|
|
4878
|
+
* The `build` policy conditions the PR-workflow build guidance on the
|
|
4879
|
+
* consuming project's Turborepo remote-cache configuration. When
|
|
4880
|
+
* omitted, the bundle ships the zero-remote-cache defaults
|
|
4881
|
+
* ({@link DEFAULT_BUILD_POLICY}), which emit no AWS-authentication
|
|
4882
|
+
* guidance at all.
|
|
4883
|
+
*/
|
|
4884
|
+
declare function buildGithubWorkflowBundle(buildPolicy?: ResolvedBuildPolicy): AgentRuleBundle;
|
|
4885
|
+
/**
|
|
4886
|
+
* `github-workflow` bundle built with the default (no remote cache)
|
|
4887
|
+
* build policy. Preserved for backward compatibility with tests and
|
|
4888
|
+
* consumers that import the const directly. Prefer
|
|
4889
|
+
* `buildGithubWorkflowBundle(buildPolicy)` when the consuming
|
|
4890
|
+
* project's Turborepo configuration is in scope.
|
|
4683
4891
|
*/
|
|
4684
4892
|
declare const githubWorkflowBundle: AgentRuleBundle;
|
|
4685
4893
|
|
|
@@ -6885,7 +7093,19 @@ declare function buildStandardsResearchBundle(paths?: ResolvedAgentPaths, issueD
|
|
|
6885
7093
|
declare const standardsResearchBundle: AgentRuleBundle;
|
|
6886
7094
|
|
|
6887
7095
|
/**
|
|
6888
|
-
* Turborepo bundle — auto-detected when the TurboRepo
|
|
7096
|
+
* Builds the Turborepo bundle — auto-detected when the TurboRepo
|
|
7097
|
+
* component is present.
|
|
7098
|
+
*
|
|
7099
|
+
* When `buildPolicy` is omitted the bundle ships the zero-remote-cache
|
|
7100
|
+
* defaults ({@link DEFAULT_BUILD_POLICY}).
|
|
7101
|
+
*/
|
|
7102
|
+
declare function buildTurborepoBundle(buildPolicy?: ResolvedBuildPolicy): AgentRuleBundle;
|
|
7103
|
+
/**
|
|
7104
|
+
* Turborepo bundle built with the default (no remote cache) build
|
|
7105
|
+
* policy. Preserved for backward compatibility with tests and
|
|
7106
|
+
* consumers that import the const directly. Prefer
|
|
7107
|
+
* `buildTurborepoBundle(buildPolicy)` when the consuming project's
|
|
7108
|
+
* Turborepo configuration is in scope.
|
|
6889
7109
|
*/
|
|
6890
7110
|
declare const turborepoBundle: AgentRuleBundle;
|
|
6891
7111
|
|
|
@@ -6945,6 +7165,12 @@ declare const vitestBundle: AgentRuleBundle;
|
|
|
6945
7165
|
* When the consumer supplies no override, the bundle defaults
|
|
6946
7166
|
* (`status:ready` + `priority:medium`) ship unchanged.
|
|
6947
7167
|
*
|
|
7168
|
+
* Bundles that describe the build (`turborepo`, `github-workflow`)
|
|
7169
|
+
* accept a `ResolvedBuildPolicy` so the rendered guidance matches the
|
|
7170
|
+
* consumer's Turborepo configuration — most importantly, the
|
|
7171
|
+
* AWS-authentication note is emitted only when a remote cache is
|
|
7172
|
+
* actually configured, and names that consumer's own profile.
|
|
7173
|
+
*
|
|
6948
7174
|
* Order matters: base is first so its rules can be overridden by
|
|
6949
7175
|
* more specific bundles. The base bundle's `appliesWhen` always
|
|
6950
7176
|
* returns true; it is filtered by the `includeBaseRules` option
|
|
@@ -6953,7 +7179,7 @@ declare const vitestBundle: AgentRuleBundle;
|
|
|
6953
7179
|
* Bundles that do not read any agent path (typescript, jest,
|
|
6954
7180
|
* pnpm, etc.) stay as const exports and are referenced unchanged.
|
|
6955
7181
|
*/
|
|
6956
|
-
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel>, prReviewPolicy?: ResolvedPrReviewPolicy): ReadonlyArray<AgentRuleBundle>;
|
|
7182
|
+
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel>, prReviewPolicy?: ResolvedPrReviewPolicy, buildPolicy?: ResolvedBuildPolicy): ReadonlyArray<AgentRuleBundle>;
|
|
6957
7183
|
/**
|
|
6958
7184
|
* Built-in rule bundles assembled with the default agent paths.
|
|
6959
7185
|
* Preserved for backward compatibility with tests and consumers
|
|
@@ -13505,4 +13731,4 @@ declare function pinPnpmActionSetup(project: Project$1): void;
|
|
|
13505
13731
|
*/
|
|
13506
13732
|
declare function pinSetupNodeVersion(project: Project$1): void;
|
|
13507
13733
|
|
|
13508
|
-
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, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, 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, 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_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_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_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, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, type MonorepoPnpmOptions, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, 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 ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedPrReviewAutoMerge, type ResolvedPrReviewPolicy, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRequirementCategoryDirs, 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, 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, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildPrReviewBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, includeHiddenFilesInBuildArtifact, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, 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, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderNextRequirementIdProcedure, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRequirementBlock, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStripToolArtifactTagsProcedure, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolvePrReviewPolicy, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, stripToolArtifactTagsProcedure, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|
|
13734
|
+
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, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, 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_BUILD_POLICY, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_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_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, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, type MonorepoPnpmOptions, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PHASE_LABEL_TYPE_MAP, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, type PhaseLabelTypeOutcome, type PhaseLabelTypeResolution, 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 ResolvedBuildPolicy, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedPrReviewAutoMerge, type ResolvedPrReviewPolicy, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRequirementCategoryDirs, 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, 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, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildGithubWorkflowBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildPrReviewBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildTurborepoBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, includeHiddenFilesInBuildArtifact, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, 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, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderNextRequirementIdProcedure, renderPhaseTypeInvariantSection, renderPhaseTypeInvariantShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRequirementBlock, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStripToolArtifactTagsProcedure, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveBuildPolicy, 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 };
|