@codedrifters/configulator 0.0.328 → 0.0.329
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 +204 -2
- package/lib/index.d.ts +205 -3
- package/lib/index.js +1521 -636
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1517 -636
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -1858,6 +1858,97 @@ interface ScopeGateBundleOverride {
|
|
|
1858
1858
|
readonly acceptanceCriteria?: ScopeGateThresholds;
|
|
1859
1859
|
readonly sources?: ScopeGateThresholds;
|
|
1860
1860
|
}
|
|
1861
|
+
/*******************************************************************************
|
|
1862
|
+
*
|
|
1863
|
+
* PR Review Policy Config
|
|
1864
|
+
*
|
|
1865
|
+
******************************************************************************/
|
|
1866
|
+
/**
|
|
1867
|
+
* `auto-merge` half of the PR review policy. Today the only
|
|
1868
|
+
* configurable knob is `pathsExemptFromSize` — a list of path globs
|
|
1869
|
+
* that exempt a PR from the `human-required.size` rule (rule #6 in
|
|
1870
|
+
* the precedence walk).
|
|
1871
|
+
*
|
|
1872
|
+
* The reviewer walks every changed path in the PR and skips rule #6
|
|
1873
|
+
* when **every** path matches at least one glob in this list.
|
|
1874
|
+
* Doc-only PRs routinely exceed the 500-insertion threshold (large
|
|
1875
|
+
* migrations, bulk additions, refresh passes) but carry no production
|
|
1876
|
+
* risk that warrants forcing a human reviewer, so the default
|
|
1877
|
+
* carve-out exempts `docs/**` out of the box.
|
|
1878
|
+
*
|
|
1879
|
+
* @see PrReviewPolicyConfig
|
|
1880
|
+
* @see ./bundles/pr-review-policy.ts#DEFAULT_PATHS_EXEMPT_FROM_SIZE
|
|
1881
|
+
*/
|
|
1882
|
+
interface PrReviewAutoMergeConfig {
|
|
1883
|
+
/**
|
|
1884
|
+
* Path globs that exempt a PR from the `human-required.size` rule.
|
|
1885
|
+
* When **every** changed path in the PR matches at least one glob
|
|
1886
|
+
* in this list, the reviewer skips rule #6 (size threshold) and
|
|
1887
|
+
* continues with the rest of the precedence walk.
|
|
1888
|
+
*
|
|
1889
|
+
* Defaults to `["docs/**"]` — the entire Starlight docs tree every
|
|
1890
|
+
* configulator consumer ships. Override with a custom list to
|
|
1891
|
+
* exempt additional doc-only roots (e.g. `docs/research/**` for
|
|
1892
|
+
* research notes that live outside the Starlight tree):
|
|
1893
|
+
*
|
|
1894
|
+
* ```typescript
|
|
1895
|
+
* agentConfig: {
|
|
1896
|
+
* prReviewPolicy: {
|
|
1897
|
+
* autoMerge: {
|
|
1898
|
+
* pathsExemptFromSize: ["docs/**", "docs/research/**"],
|
|
1899
|
+
* },
|
|
1900
|
+
* },
|
|
1901
|
+
* }
|
|
1902
|
+
* ```
|
|
1903
|
+
*
|
|
1904
|
+
* Pass `[]` to disable the carve-out entirely and apply the size
|
|
1905
|
+
* rule to every PR regardless of path. Pass non-empty entries only
|
|
1906
|
+
* — empty / whitespace-only strings fail synth.
|
|
1907
|
+
*
|
|
1908
|
+
* @default ["docs/**"]
|
|
1909
|
+
*/
|
|
1910
|
+
readonly pathsExemptFromSize?: ReadonlyArray<string>;
|
|
1911
|
+
}
|
|
1912
|
+
/**
|
|
1913
|
+
* PR review policy configuration consumed by the `pr-review` bundle.
|
|
1914
|
+
*
|
|
1915
|
+
* The bundle ships a declarative policy in the rendered CLAUDE.md
|
|
1916
|
+
* (under `## PR Review Policy`) that tells the `pr-reviewer`
|
|
1917
|
+
* sub-agent which PRs may auto-merge and which must wait for a
|
|
1918
|
+
* human reviewer. Most of the policy is fixed — the path globs that
|
|
1919
|
+
* force human review (`human-required.paths`), the issue types
|
|
1920
|
+
* (`release`, `hotfix`), the size thresholds (10 files / 500
|
|
1921
|
+
* insertions), and the force-auto / force-human label sets — and
|
|
1922
|
+
* does not require per-consumer tuning.
|
|
1923
|
+
*
|
|
1924
|
+
* The one knob exposed today is the **doc-only carve-out** against
|
|
1925
|
+
* the size rule. When the consumer sets
|
|
1926
|
+
* `autoMerge.pathsExemptFromSize`, the rendered policy YAML carries
|
|
1927
|
+
* the override and the precedence walk documents the carve-out so
|
|
1928
|
+
* the reviewer applies it consistently.
|
|
1929
|
+
*
|
|
1930
|
+
* When the whole config is omitted, the bundle ships with the
|
|
1931
|
+
* carve-out enabled and `pathsExemptFromSize: ["docs/**"]` — a
|
|
1932
|
+
* doc-only PR that trips the size threshold is auto-mergeable; any
|
|
1933
|
+
* PR mixing docs and code still falls into `human-required` because
|
|
1934
|
+
* the non-docs path fails the carve-out check.
|
|
1935
|
+
*
|
|
1936
|
+
* Malformed configs — empty / whitespace-only entries in
|
|
1937
|
+
* `pathsExemptFromSize` — fail the build at synth time via
|
|
1938
|
+
* `validatePrReviewPolicyConfig`.
|
|
1939
|
+
*
|
|
1940
|
+
* @see PrReviewAutoMergeConfig
|
|
1941
|
+
* @see ./bundles/pr-review-policy.ts#resolvePrReviewPolicy
|
|
1942
|
+
* @see ./bundles/pr-review-policy.ts#validatePrReviewPolicyConfig
|
|
1943
|
+
*/
|
|
1944
|
+
interface PrReviewPolicyConfig {
|
|
1945
|
+
/**
|
|
1946
|
+
* `auto-merge` half of the policy. Currently exposes a single knob
|
|
1947
|
+
* (`pathsExemptFromSize`) that carves doc-only PRs out of the
|
|
1948
|
+
* size rule.
|
|
1949
|
+
*/
|
|
1950
|
+
readonly autoMerge?: PrReviewAutoMergeConfig;
|
|
1951
|
+
}
|
|
1861
1952
|
/*******************************************************************************
|
|
1862
1953
|
*
|
|
1863
1954
|
* Run Ratio Config
|
|
@@ -3106,6 +3197,30 @@ interface AgentConfigOptions {
|
|
|
3106
3197
|
* @see ./bundles/scope-gate.ts#validateScopeGateConfig
|
|
3107
3198
|
*/
|
|
3108
3199
|
readonly scopeGate?: ScopeGateConfig;
|
|
3200
|
+
/**
|
|
3201
|
+
* PR review policy configuration consumed by the `pr-review`
|
|
3202
|
+
* bundle. Currently exposes a single doc-only carve-out against
|
|
3203
|
+
* the `human-required.size` rule (rule #6 in the precedence
|
|
3204
|
+
* walk) — see `PrReviewAutoMergeConfig.pathsExemptFromSize` for
|
|
3205
|
+
* the full contract.
|
|
3206
|
+
*
|
|
3207
|
+
* When the whole config is omitted, the bundle ships the carve-out
|
|
3208
|
+
* enabled with `pathsExemptFromSize: ["docs/**"]` so a doc-only
|
|
3209
|
+
* PR that exceeds the 500-insertion threshold remains
|
|
3210
|
+
* auto-mergeable. Override the list to exempt additional doc-only
|
|
3211
|
+
* roots (e.g. `docs/research/**`) or pass `[]` to disable the
|
|
3212
|
+
* carve-out entirely.
|
|
3213
|
+
*
|
|
3214
|
+
* Malformed configs — empty / whitespace-only entries in
|
|
3215
|
+
* `pathsExemptFromSize` — fail the build at synth time via
|
|
3216
|
+
* `validatePrReviewPolicyConfig`.
|
|
3217
|
+
*
|
|
3218
|
+
* @see PrReviewPolicyConfig
|
|
3219
|
+
* @see PrReviewAutoMergeConfig
|
|
3220
|
+
* @see ./bundles/pr-review-policy.ts#resolvePrReviewPolicy
|
|
3221
|
+
* @see ./bundles/pr-review-policy.ts#validatePrReviewPolicyConfig
|
|
3222
|
+
*/
|
|
3223
|
+
readonly prReviewPolicy?: PrReviewPolicyConfig;
|
|
3109
3224
|
/**
|
|
3110
3225
|
* Run-ratio configuration consumed by the `orchestrator` bundle.
|
|
3111
3226
|
* Drives the dispatch-to-housekeeping cadence — every `(ratio + 1)`th
|
|
@@ -3710,6 +3825,71 @@ declare const DEFAULT_AGENT_PATHS: ResolvedAgentPaths;
|
|
|
3710
3825
|
*/
|
|
3711
3826
|
declare function resolveAgentPaths(paths?: AgentPathsConfig): ResolvedAgentPaths;
|
|
3712
3827
|
|
|
3828
|
+
/**
|
|
3829
|
+
* Default path globs that exempt a PR from the `human-required.size`
|
|
3830
|
+
* rule. The policy walks every changed path in the PR and skips
|
|
3831
|
+
* rule #6 (size threshold) when **every** path matches at least one
|
|
3832
|
+
* glob in this list. Doc-only PRs routinely exceed the 500-insertion
|
|
3833
|
+
* threshold (large migrations, bulk additions, refresh passes) but
|
|
3834
|
+
* carry no production risk that warrants forcing a human reviewer.
|
|
3835
|
+
*
|
|
3836
|
+
* The default exempts the entire `docs/**` tree — every consumer of
|
|
3837
|
+
* configulator places its Starlight docs site there. Consumers can
|
|
3838
|
+
* extend this list (e.g. add `docs/research/**` if doc-style research
|
|
3839
|
+
* notes live outside the Starlight tree) by passing
|
|
3840
|
+
* `prReviewPolicy.autoMerge.pathsExemptFromSize`.
|
|
3841
|
+
*
|
|
3842
|
+
* @see PrReviewPolicyConfig
|
|
3843
|
+
* @see PrReviewAutoMergeConfig.pathsExemptFromSize
|
|
3844
|
+
*/
|
|
3845
|
+
declare const DEFAULT_PATHS_EXEMPT_FROM_SIZE: ReadonlyArray<string>;
|
|
3846
|
+
/**
|
|
3847
|
+
* Fully-resolved PR review policy. Every field is defaulted so
|
|
3848
|
+
* downstream renderers can reason about a single canonical shape.
|
|
3849
|
+
*
|
|
3850
|
+
* Today the only configurable sub-rule is the doc-only carve-out
|
|
3851
|
+
* against the size threshold (`autoMerge.pathsExemptFromSize`).
|
|
3852
|
+
* Additional knobs for other rules in the policy may be added in
|
|
3853
|
+
* future versions of `PrReviewPolicyConfig`.
|
|
3854
|
+
*/
|
|
3855
|
+
interface ResolvedPrReviewPolicy {
|
|
3856
|
+
readonly autoMerge: ResolvedPrReviewAutoMerge;
|
|
3857
|
+
}
|
|
3858
|
+
/**
|
|
3859
|
+
* Fully-resolved `auto-merge` half of the policy.
|
|
3860
|
+
*
|
|
3861
|
+
* `pathsExemptFromSize` is always populated — the default
|
|
3862
|
+
* (`["docs/**"]`) ships when the consumer omits the option.
|
|
3863
|
+
*/
|
|
3864
|
+
interface ResolvedPrReviewAutoMerge {
|
|
3865
|
+
readonly pathsExemptFromSize: ReadonlyArray<string>;
|
|
3866
|
+
}
|
|
3867
|
+
/**
|
|
3868
|
+
* Resolve a (possibly absent) `PrReviewPolicyConfig` into a canonical
|
|
3869
|
+
* `ResolvedPrReviewPolicy` with every field filled in. Unset fields
|
|
3870
|
+
* cascade from their documented defaults.
|
|
3871
|
+
*
|
|
3872
|
+
* Malformed configs (empty / whitespace-only path entries) throw a
|
|
3873
|
+
* descriptive `Error` — callers should not need to guard against it
|
|
3874
|
+
* at runtime.
|
|
3875
|
+
*/
|
|
3876
|
+
declare function resolvePrReviewPolicy(config?: PrReviewPolicyConfig): ResolvedPrReviewPolicy;
|
|
3877
|
+
/**
|
|
3878
|
+
* Synth-time validation hook. Throws a descriptive `Error` when the
|
|
3879
|
+
* supplied `PrReviewPolicyConfig` is malformed. Called by
|
|
3880
|
+
* `AgentConfig.preSynthesize` before any rendering so a misconfigured
|
|
3881
|
+
* policy fails the build instead of silently shipping broken carve-out
|
|
3882
|
+
* globs. Returns the resolved policy unchanged so callers can write
|
|
3883
|
+
* `const policy = validatePrReviewPolicyConfig(config)` in one line.
|
|
3884
|
+
*
|
|
3885
|
+
* Malformed cases rejected here:
|
|
3886
|
+
*
|
|
3887
|
+
* - `pathsExemptFromSize` entries that are empty or whitespace-only —
|
|
3888
|
+
* such an entry would either silently match nothing or match every
|
|
3889
|
+
* path, both of which are almost certainly a typo.
|
|
3890
|
+
*/
|
|
3891
|
+
declare function validatePrReviewPolicyConfig(config?: PrReviewPolicyConfig): ResolvedPrReviewPolicy;
|
|
3892
|
+
|
|
3713
3893
|
/**
|
|
3714
3894
|
* One row in the rendered agent registry table. Each phased-agent
|
|
3715
3895
|
* bundle that previously shipped its own `<bundle>-workflow` rule
|
|
@@ -5443,6 +5623,28 @@ declare function renderProgressFilesBundleHook(pf: ResolvedProgressFiles, bundle
|
|
|
5443
5623
|
* domain-specific content.
|
|
5444
5624
|
*
|
|
5445
5625
|
******************************************************************************/
|
|
5626
|
+
/**
|
|
5627
|
+
* Build the `pr-review` bundle with the supplied (possibly absent)
|
|
5628
|
+
* PR review policy override.
|
|
5629
|
+
*
|
|
5630
|
+
* The bundle is mostly static — the agent prompt, the feedback-
|
|
5631
|
+
* protocol prose, the skills, the sub-agent, and the labels are all
|
|
5632
|
+
* fixed across consumers. The one dynamic surface is the rendered
|
|
5633
|
+
* `pr-review-policy` rule's YAML block and precedence walk, which
|
|
5634
|
+
* reflect the resolved `pathsExemptFromSize` carve-out so consumers
|
|
5635
|
+
* tuning the doc-only carve-out see their override land in the
|
|
5636
|
+
* rendered CLAUDE.md.
|
|
5637
|
+
*
|
|
5638
|
+
* When `policy` is omitted, the bundle ships with the documented
|
|
5639
|
+
* defaults baked in (`pathsExemptFromSize: ["docs/**"]`).
|
|
5640
|
+
*/
|
|
5641
|
+
declare function buildPrReviewBundle(policy?: ResolvedPrReviewPolicy): AgentRuleBundle;
|
|
5642
|
+
/**
|
|
5643
|
+
* `pr-review` bundle built with the default policy. Preserved for
|
|
5644
|
+
* backward compatibility with tests and consumers that import the
|
|
5645
|
+
* const directly. Prefer `buildPrReviewBundle(policy)` when consumer
|
|
5646
|
+
* overrides are in scope.
|
|
5647
|
+
*/
|
|
5446
5648
|
declare const prReviewBundle: AgentRuleBundle;
|
|
5447
5649
|
|
|
5448
5650
|
/**
|
|
@@ -6279,7 +6481,7 @@ declare const vitestBundle: AgentRuleBundle;
|
|
|
6279
6481
|
* Bundles that do not read any agent path (typescript, jest,
|
|
6280
6482
|
* pnpm, etc.) stay as const exports and are referenced unchanged.
|
|
6281
6483
|
*/
|
|
6282
|
-
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel
|
|
6484
|
+
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel>, prReviewPolicy?: ResolvedPrReviewPolicy): ReadonlyArray<AgentRuleBundle>;
|
|
6283
6485
|
/**
|
|
6284
6486
|
* Built-in rule bundles assembled with the default agent paths.
|
|
6285
6487
|
* Preserved for backward compatibility with tests and consumers
|
|
@@ -12528,4 +12730,4 @@ declare function pinPnpmActionSetup(project: Project$1): void;
|
|
|
12528
12730
|
*/
|
|
12529
12731
|
declare function pinSetupNodeVersion(project: Project$1): void;
|
|
12530
12732
|
|
|
12531
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, 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_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_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, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, 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, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedProgressFiles, type ResolvedProjectMetadata, 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, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, 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, 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, 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, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStubIndexConventionRuleContent, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|
|
12733
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, 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_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, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PrReviewAutoMergeConfig, 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, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedPrReviewAutoMerge, type ResolvedPrReviewPolicy, type ResolvedProgressFiles, type ResolvedProjectMetadata, 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, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, 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, 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, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStubIndexConventionRuleContent, 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, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|
package/lib/index.d.ts
CHANGED
|
@@ -1907,6 +1907,97 @@ interface ScopeGateBundleOverride {
|
|
|
1907
1907
|
readonly acceptanceCriteria?: ScopeGateThresholds;
|
|
1908
1908
|
readonly sources?: ScopeGateThresholds;
|
|
1909
1909
|
}
|
|
1910
|
+
/*******************************************************************************
|
|
1911
|
+
*
|
|
1912
|
+
* PR Review Policy Config
|
|
1913
|
+
*
|
|
1914
|
+
******************************************************************************/
|
|
1915
|
+
/**
|
|
1916
|
+
* `auto-merge` half of the PR review policy. Today the only
|
|
1917
|
+
* configurable knob is `pathsExemptFromSize` — a list of path globs
|
|
1918
|
+
* that exempt a PR from the `human-required.size` rule (rule #6 in
|
|
1919
|
+
* the precedence walk).
|
|
1920
|
+
*
|
|
1921
|
+
* The reviewer walks every changed path in the PR and skips rule #6
|
|
1922
|
+
* when **every** path matches at least one glob in this list.
|
|
1923
|
+
* Doc-only PRs routinely exceed the 500-insertion threshold (large
|
|
1924
|
+
* migrations, bulk additions, refresh passes) but carry no production
|
|
1925
|
+
* risk that warrants forcing a human reviewer, so the default
|
|
1926
|
+
* carve-out exempts `docs/**` out of the box.
|
|
1927
|
+
*
|
|
1928
|
+
* @see PrReviewPolicyConfig
|
|
1929
|
+
* @see ./bundles/pr-review-policy.ts#DEFAULT_PATHS_EXEMPT_FROM_SIZE
|
|
1930
|
+
*/
|
|
1931
|
+
interface PrReviewAutoMergeConfig {
|
|
1932
|
+
/**
|
|
1933
|
+
* Path globs that exempt a PR from the `human-required.size` rule.
|
|
1934
|
+
* When **every** changed path in the PR matches at least one glob
|
|
1935
|
+
* in this list, the reviewer skips rule #6 (size threshold) and
|
|
1936
|
+
* continues with the rest of the precedence walk.
|
|
1937
|
+
*
|
|
1938
|
+
* Defaults to `["docs/**"]` — the entire Starlight docs tree every
|
|
1939
|
+
* configulator consumer ships. Override with a custom list to
|
|
1940
|
+
* exempt additional doc-only roots (e.g. `docs/research/**` for
|
|
1941
|
+
* research notes that live outside the Starlight tree):
|
|
1942
|
+
*
|
|
1943
|
+
* ```typescript
|
|
1944
|
+
* agentConfig: {
|
|
1945
|
+
* prReviewPolicy: {
|
|
1946
|
+
* autoMerge: {
|
|
1947
|
+
* pathsExemptFromSize: ["docs/**", "docs/research/**"],
|
|
1948
|
+
* },
|
|
1949
|
+
* },
|
|
1950
|
+
* }
|
|
1951
|
+
* ```
|
|
1952
|
+
*
|
|
1953
|
+
* Pass `[]` to disable the carve-out entirely and apply the size
|
|
1954
|
+
* rule to every PR regardless of path. Pass non-empty entries only
|
|
1955
|
+
* — empty / whitespace-only strings fail synth.
|
|
1956
|
+
*
|
|
1957
|
+
* @default ["docs/**"]
|
|
1958
|
+
*/
|
|
1959
|
+
readonly pathsExemptFromSize?: ReadonlyArray<string>;
|
|
1960
|
+
}
|
|
1961
|
+
/**
|
|
1962
|
+
* PR review policy configuration consumed by the `pr-review` bundle.
|
|
1963
|
+
*
|
|
1964
|
+
* The bundle ships a declarative policy in the rendered CLAUDE.md
|
|
1965
|
+
* (under `## PR Review Policy`) that tells the `pr-reviewer`
|
|
1966
|
+
* sub-agent which PRs may auto-merge and which must wait for a
|
|
1967
|
+
* human reviewer. Most of the policy is fixed — the path globs that
|
|
1968
|
+
* force human review (`human-required.paths`), the issue types
|
|
1969
|
+
* (`release`, `hotfix`), the size thresholds (10 files / 500
|
|
1970
|
+
* insertions), and the force-auto / force-human label sets — and
|
|
1971
|
+
* does not require per-consumer tuning.
|
|
1972
|
+
*
|
|
1973
|
+
* The one knob exposed today is the **doc-only carve-out** against
|
|
1974
|
+
* the size rule. When the consumer sets
|
|
1975
|
+
* `autoMerge.pathsExemptFromSize`, the rendered policy YAML carries
|
|
1976
|
+
* the override and the precedence walk documents the carve-out so
|
|
1977
|
+
* the reviewer applies it consistently.
|
|
1978
|
+
*
|
|
1979
|
+
* When the whole config is omitted, the bundle ships with the
|
|
1980
|
+
* carve-out enabled and `pathsExemptFromSize: ["docs/**"]` — a
|
|
1981
|
+
* doc-only PR that trips the size threshold is auto-mergeable; any
|
|
1982
|
+
* PR mixing docs and code still falls into `human-required` because
|
|
1983
|
+
* the non-docs path fails the carve-out check.
|
|
1984
|
+
*
|
|
1985
|
+
* Malformed configs — empty / whitespace-only entries in
|
|
1986
|
+
* `pathsExemptFromSize` — fail the build at synth time via
|
|
1987
|
+
* `validatePrReviewPolicyConfig`.
|
|
1988
|
+
*
|
|
1989
|
+
* @see PrReviewAutoMergeConfig
|
|
1990
|
+
* @see ./bundles/pr-review-policy.ts#resolvePrReviewPolicy
|
|
1991
|
+
* @see ./bundles/pr-review-policy.ts#validatePrReviewPolicyConfig
|
|
1992
|
+
*/
|
|
1993
|
+
interface PrReviewPolicyConfig {
|
|
1994
|
+
/**
|
|
1995
|
+
* `auto-merge` half of the policy. Currently exposes a single knob
|
|
1996
|
+
* (`pathsExemptFromSize`) that carves doc-only PRs out of the
|
|
1997
|
+
* size rule.
|
|
1998
|
+
*/
|
|
1999
|
+
readonly autoMerge?: PrReviewAutoMergeConfig;
|
|
2000
|
+
}
|
|
1910
2001
|
/*******************************************************************************
|
|
1911
2002
|
*
|
|
1912
2003
|
* Run Ratio Config
|
|
@@ -3155,6 +3246,30 @@ interface AgentConfigOptions {
|
|
|
3155
3246
|
* @see ./bundles/scope-gate.ts#validateScopeGateConfig
|
|
3156
3247
|
*/
|
|
3157
3248
|
readonly scopeGate?: ScopeGateConfig;
|
|
3249
|
+
/**
|
|
3250
|
+
* PR review policy configuration consumed by the `pr-review`
|
|
3251
|
+
* bundle. Currently exposes a single doc-only carve-out against
|
|
3252
|
+
* the `human-required.size` rule (rule #6 in the precedence
|
|
3253
|
+
* walk) — see `PrReviewAutoMergeConfig.pathsExemptFromSize` for
|
|
3254
|
+
* the full contract.
|
|
3255
|
+
*
|
|
3256
|
+
* When the whole config is omitted, the bundle ships the carve-out
|
|
3257
|
+
* enabled with `pathsExemptFromSize: ["docs/**"]` so a doc-only
|
|
3258
|
+
* PR that exceeds the 500-insertion threshold remains
|
|
3259
|
+
* auto-mergeable. Override the list to exempt additional doc-only
|
|
3260
|
+
* roots (e.g. `docs/research/**`) or pass `[]` to disable the
|
|
3261
|
+
* carve-out entirely.
|
|
3262
|
+
*
|
|
3263
|
+
* Malformed configs — empty / whitespace-only entries in
|
|
3264
|
+
* `pathsExemptFromSize` — fail the build at synth time via
|
|
3265
|
+
* `validatePrReviewPolicyConfig`.
|
|
3266
|
+
*
|
|
3267
|
+
* @see PrReviewPolicyConfig
|
|
3268
|
+
* @see PrReviewAutoMergeConfig
|
|
3269
|
+
* @see ./bundles/pr-review-policy.ts#resolvePrReviewPolicy
|
|
3270
|
+
* @see ./bundles/pr-review-policy.ts#validatePrReviewPolicyConfig
|
|
3271
|
+
*/
|
|
3272
|
+
readonly prReviewPolicy?: PrReviewPolicyConfig;
|
|
3158
3273
|
/**
|
|
3159
3274
|
* Run-ratio configuration consumed by the `orchestrator` bundle.
|
|
3160
3275
|
* Drives the dispatch-to-housekeeping cadence — every `(ratio + 1)`th
|
|
@@ -3759,6 +3874,71 @@ declare const DEFAULT_AGENT_PATHS: ResolvedAgentPaths;
|
|
|
3759
3874
|
*/
|
|
3760
3875
|
declare function resolveAgentPaths(paths?: AgentPathsConfig): ResolvedAgentPaths;
|
|
3761
3876
|
|
|
3877
|
+
/**
|
|
3878
|
+
* Default path globs that exempt a PR from the `human-required.size`
|
|
3879
|
+
* rule. The policy walks every changed path in the PR and skips
|
|
3880
|
+
* rule #6 (size threshold) when **every** path matches at least one
|
|
3881
|
+
* glob in this list. Doc-only PRs routinely exceed the 500-insertion
|
|
3882
|
+
* threshold (large migrations, bulk additions, refresh passes) but
|
|
3883
|
+
* carry no production risk that warrants forcing a human reviewer.
|
|
3884
|
+
*
|
|
3885
|
+
* The default exempts the entire `docs/**` tree — every consumer of
|
|
3886
|
+
* configulator places its Starlight docs site there. Consumers can
|
|
3887
|
+
* extend this list (e.g. add `docs/research/**` if doc-style research
|
|
3888
|
+
* notes live outside the Starlight tree) by passing
|
|
3889
|
+
* `prReviewPolicy.autoMerge.pathsExemptFromSize`.
|
|
3890
|
+
*
|
|
3891
|
+
* @see PrReviewPolicyConfig
|
|
3892
|
+
* @see PrReviewAutoMergeConfig.pathsExemptFromSize
|
|
3893
|
+
*/
|
|
3894
|
+
declare const DEFAULT_PATHS_EXEMPT_FROM_SIZE: ReadonlyArray<string>;
|
|
3895
|
+
/**
|
|
3896
|
+
* Fully-resolved PR review policy. Every field is defaulted so
|
|
3897
|
+
* downstream renderers can reason about a single canonical shape.
|
|
3898
|
+
*
|
|
3899
|
+
* Today the only configurable sub-rule is the doc-only carve-out
|
|
3900
|
+
* against the size threshold (`autoMerge.pathsExemptFromSize`).
|
|
3901
|
+
* Additional knobs for other rules in the policy may be added in
|
|
3902
|
+
* future versions of `PrReviewPolicyConfig`.
|
|
3903
|
+
*/
|
|
3904
|
+
interface ResolvedPrReviewPolicy {
|
|
3905
|
+
readonly autoMerge: ResolvedPrReviewAutoMerge;
|
|
3906
|
+
}
|
|
3907
|
+
/**
|
|
3908
|
+
* Fully-resolved `auto-merge` half of the policy.
|
|
3909
|
+
*
|
|
3910
|
+
* `pathsExemptFromSize` is always populated — the default
|
|
3911
|
+
* (`["docs/**"]`) ships when the consumer omits the option.
|
|
3912
|
+
*/
|
|
3913
|
+
interface ResolvedPrReviewAutoMerge {
|
|
3914
|
+
readonly pathsExemptFromSize: ReadonlyArray<string>;
|
|
3915
|
+
}
|
|
3916
|
+
/**
|
|
3917
|
+
* Resolve a (possibly absent) `PrReviewPolicyConfig` into a canonical
|
|
3918
|
+
* `ResolvedPrReviewPolicy` with every field filled in. Unset fields
|
|
3919
|
+
* cascade from their documented defaults.
|
|
3920
|
+
*
|
|
3921
|
+
* Malformed configs (empty / whitespace-only path entries) throw a
|
|
3922
|
+
* descriptive `Error` — callers should not need to guard against it
|
|
3923
|
+
* at runtime.
|
|
3924
|
+
*/
|
|
3925
|
+
declare function resolvePrReviewPolicy(config?: PrReviewPolicyConfig): ResolvedPrReviewPolicy;
|
|
3926
|
+
/**
|
|
3927
|
+
* Synth-time validation hook. Throws a descriptive `Error` when the
|
|
3928
|
+
* supplied `PrReviewPolicyConfig` is malformed. Called by
|
|
3929
|
+
* `AgentConfig.preSynthesize` before any rendering so a misconfigured
|
|
3930
|
+
* policy fails the build instead of silently shipping broken carve-out
|
|
3931
|
+
* globs. Returns the resolved policy unchanged so callers can write
|
|
3932
|
+
* `const policy = validatePrReviewPolicyConfig(config)` in one line.
|
|
3933
|
+
*
|
|
3934
|
+
* Malformed cases rejected here:
|
|
3935
|
+
*
|
|
3936
|
+
* - `pathsExemptFromSize` entries that are empty or whitespace-only —
|
|
3937
|
+
* such an entry would either silently match nothing or match every
|
|
3938
|
+
* path, both of which are almost certainly a typo.
|
|
3939
|
+
*/
|
|
3940
|
+
declare function validatePrReviewPolicyConfig(config?: PrReviewPolicyConfig): ResolvedPrReviewPolicy;
|
|
3941
|
+
|
|
3762
3942
|
/**
|
|
3763
3943
|
* One row in the rendered agent registry table. Each phased-agent
|
|
3764
3944
|
* bundle that previously shipped its own `<bundle>-workflow` rule
|
|
@@ -5492,6 +5672,28 @@ declare function renderProgressFilesBundleHook(pf: ResolvedProgressFiles, bundle
|
|
|
5492
5672
|
* domain-specific content.
|
|
5493
5673
|
*
|
|
5494
5674
|
******************************************************************************/
|
|
5675
|
+
/**
|
|
5676
|
+
* Build the `pr-review` bundle with the supplied (possibly absent)
|
|
5677
|
+
* PR review policy override.
|
|
5678
|
+
*
|
|
5679
|
+
* The bundle is mostly static — the agent prompt, the feedback-
|
|
5680
|
+
* protocol prose, the skills, the sub-agent, and the labels are all
|
|
5681
|
+
* fixed across consumers. The one dynamic surface is the rendered
|
|
5682
|
+
* `pr-review-policy` rule's YAML block and precedence walk, which
|
|
5683
|
+
* reflect the resolved `pathsExemptFromSize` carve-out so consumers
|
|
5684
|
+
* tuning the doc-only carve-out see their override land in the
|
|
5685
|
+
* rendered CLAUDE.md.
|
|
5686
|
+
*
|
|
5687
|
+
* When `policy` is omitted, the bundle ships with the documented
|
|
5688
|
+
* defaults baked in (`pathsExemptFromSize: ["docs/**"]`).
|
|
5689
|
+
*/
|
|
5690
|
+
declare function buildPrReviewBundle(policy?: ResolvedPrReviewPolicy): AgentRuleBundle;
|
|
5691
|
+
/**
|
|
5692
|
+
* `pr-review` bundle built with the default policy. Preserved for
|
|
5693
|
+
* backward compatibility with tests and consumers that import the
|
|
5694
|
+
* const directly. Prefer `buildPrReviewBundle(policy)` when consumer
|
|
5695
|
+
* overrides are in scope.
|
|
5696
|
+
*/
|
|
5495
5697
|
declare const prReviewBundle: AgentRuleBundle;
|
|
5496
5698
|
|
|
5497
5699
|
/**
|
|
@@ -6328,7 +6530,7 @@ declare const vitestBundle: AgentRuleBundle;
|
|
|
6328
6530
|
* Bundles that do not read any agent path (typescript, jest,
|
|
6329
6531
|
* pnpm, etc.) stay as const exports and are referenced unchanged.
|
|
6330
6532
|
*/
|
|
6331
|
-
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel
|
|
6533
|
+
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel>, prReviewPolicy?: ResolvedPrReviewPolicy): ReadonlyArray<AgentRuleBundle>;
|
|
6332
6534
|
/**
|
|
6333
6535
|
* Built-in rule bundles assembled with the default agent paths.
|
|
6334
6536
|
* Preserved for backward compatibility with tests and consumers
|
|
@@ -12577,5 +12779,5 @@ declare function pinPnpmActionSetup(project: Project): void;
|
|
|
12577
12779
|
*/
|
|
12578
12780
|
declare function pinSetupNodeVersion(project: Project): void;
|
|
12579
12781
|
|
|
12580
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, ApiExtractor, AstroConfig, AstroOutput, AstroProject, AuditCategory, AuditMode, AuditSeverity, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, CDK_BOOTSTRAP_DEFAULTS_BY_STAGE, CDK_DEPLOY_DEFAULTS_BY_STAGE, CDK_DEPLOY_METHOD, CDK_DESTROY_DEFAULTS_BY_STAGE, CDK_DIFF_DEFAULTS_BY_STAGE, CDK_DIFF_METHOD, CDK_GC_ACTION, CDK_GC_TYPE, CDK_INIT_LANGUAGE, CDK_INIT_TEMPLATE, CDK_PROGRESS, CDK_REQUIRE_APPROVAL, CDK_SYNTH_DEFAULTS_BY_STAGE, CDK_WATCH_DEFAULTS_BY_STAGE, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, CdkCli, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_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_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_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, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, Nvmrc, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, 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, 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, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStubIndexConventionRuleContent, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|
|
12581
|
-
export type { ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffCheckOptions, ApiDiffFinding, ApiDiffResult, ApiExtractorOptions, ApiExtractorReportOptions, ApiSurfaceEntry, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitTemplate, CdkListOptions, CdkMetadataOptions, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
|
|
12782
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, ApiExtractor, AstroConfig, AstroOutput, AstroProject, AuditCategory, AuditMode, AuditSeverity, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, CDK_BOOTSTRAP_DEFAULTS_BY_STAGE, CDK_DEPLOY_DEFAULTS_BY_STAGE, CDK_DEPLOY_METHOD, CDK_DESTROY_DEFAULTS_BY_STAGE, CDK_DIFF_DEFAULTS_BY_STAGE, CDK_DIFF_METHOD, CDK_GC_ACTION, CDK_GC_TYPE, CDK_INIT_LANGUAGE, CDK_INIT_TEMPLATE, CDK_PROGRESS, CDK_REQUIRE_APPROVAL, CDK_SYNTH_DEFAULTS_BY_STAGE, CDK_WATCH_DEFAULTS_BY_STAGE, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, CdkCli, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_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_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, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, Nvmrc, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, 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, 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, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStubIndexConventionRuleContent, 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, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|
|
12783
|
+
export type { ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffCheckOptions, ApiDiffFinding, ApiDiffResult, ApiExtractorOptions, ApiExtractorReportOptions, ApiSurfaceEntry, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitTemplate, CdkListOptions, CdkMetadataOptions, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PrReviewAutoMergeConfig, PrReviewPolicyConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedPrReviewAutoMerge, ResolvedPrReviewPolicy, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
|