@codedrifters/configulator 0.0.289 → 0.0.291

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.mts CHANGED
@@ -1674,6 +1674,74 @@ interface ScopeGateConfig {
1674
1674
  * runtime — configulator emits the template verbatim.
1675
1675
  */
1676
1676
  readonly decompositionTemplate?: string;
1677
+ /**
1678
+ * Per-phase-label threshold overrides. Issues whose `type:*` /
1679
+ * phase label matches one of the keys in this map are classified
1680
+ * against the override's thresholds instead of the global
1681
+ * `acceptanceCriteria` / `sources` defaults. This lets
1682
+ * **content-spec workflows** — issues whose AC list is the
1683
+ * per-section content checklist for one cohesive document, not a
1684
+ * phase-completion checklist that can be decomposed — clear the
1685
+ * gate even when their AC count is well above the global cap.
1686
+ *
1687
+ * Configulator ships two opt-in defaults out of the box:
1688
+ *
1689
+ * - `req:write` — formal requirement documents (ADR / TR / OPS /
1690
+ * SEC / NFR / UX / MT) routinely carry 12–20 ACs covering
1691
+ * per-section content invariants. Default override:
1692
+ * `{ acceptanceCriteria: { mediumMax: 20 } }` (sources unchanged).
1693
+ * - `bcm:scaffold` — multi-section BCM documents compress sub-
1694
+ * addendum requirements into coarse ACs but still land above
1695
+ * the global cap. Default override:
1696
+ * `{ acceptanceCriteria: { mediumMax: 12 } }` (sources unchanged).
1697
+ *
1698
+ * Consumer overrides **deep-merge** with the shipped defaults
1699
+ * with **consumer-wins-per-key**:
1700
+ *
1701
+ * - Setting an entry in the map (e.g. `'req:write': {...}`)
1702
+ * replaces the shipped default for that key.
1703
+ * - Setting an entry to `undefined` (e.g. `'req:write': undefined`)
1704
+ * opts out of the shipped default — that label receives no
1705
+ * override and the issue is classified against the global
1706
+ * thresholds.
1707
+ * - Adding a new entry (e.g. `'standards:scope': {...}`) extends
1708
+ * the override map without touching the shipped defaults.
1709
+ *
1710
+ * Within a single override entry, `acceptanceCriteria` and
1711
+ * `sources` are independent — a consumer can override one axis
1712
+ * and leave the other on the global default. The unspecified
1713
+ * axis falls through to the resolved global thresholds at
1714
+ * classification time.
1715
+ *
1716
+ * **Tie-breaking.** When an issue carries multiple labels that
1717
+ * match keys in the override map, the orchestrator selects the
1718
+ * **first match** in alphabetical order on the label name. This
1719
+ * is deterministic and easy to reason about; consumers that need
1720
+ * a specific label to win should rename or remove the colliding
1721
+ * label.
1722
+ *
1723
+ * Malformed override thresholds (negative, non-integer, or
1724
+ * inverted) fail the build at synth time exactly like the
1725
+ * top-level `acceptanceCriteria` / `sources` thresholds.
1726
+ */
1727
+ readonly bundleOverrides?: {
1728
+ readonly [phaseLabel: string]: ScopeGateBundleOverride | undefined;
1729
+ };
1730
+ }
1731
+ /**
1732
+ * Per-phase-label threshold override for the scope gate. Each axis
1733
+ * is independent — a consumer can override one and leave the other
1734
+ * on the global default. Both fields are optional; an empty object
1735
+ * is a no-op override (use it sparingly — `undefined` in the
1736
+ * `bundleOverrides` map opts out more clearly).
1737
+ *
1738
+ * @see ScopeGateConfig
1739
+ * @see ScopeGateThresholds
1740
+ * @see ./bundles/scope-gate.ts#resolveOverrideForLabels
1741
+ */
1742
+ interface ScopeGateBundleOverride {
1743
+ readonly acceptanceCriteria?: ScopeGateThresholds;
1744
+ readonly sources?: ScopeGateThresholds;
1677
1745
  }
1678
1746
  /*******************************************************************************
1679
1747
  *
@@ -3767,6 +3835,47 @@ declare const DEFAULT_AC_THRESHOLDS: ScopeGateThresholds;
3767
3835
  * `medium`; more than 5 is `large`.
3768
3836
  */
3769
3837
  declare const DEFAULT_SOURCES_THRESHOLDS: ScopeGateThresholds;
3838
+ /**
3839
+ * Bundle overrides shipped out of the box for content-spec workflows
3840
+ * — issues whose AC list is the per-section content checklist for
3841
+ * one cohesive deliverable (not a phase-completion checklist that
3842
+ * can be decomposed). The global default cap (`mediumMax: 6`) is
3843
+ * calibrated for phased-bundle issues and systematically over-flags
3844
+ * single-document writes.
3845
+ *
3846
+ * The two shipped overrides:
3847
+ *
3848
+ * - `req:write` — formal requirement documents (ADR / TR / OPS /
3849
+ * SEC / NFR / UX / MT) routinely carry 12–20 ACs covering
3850
+ * per-section content invariants (definition, alternatives,
3851
+ * risks, traceability, revision history, open items). Cap:
3852
+ * `mediumMax: 20` on the AC axis; sources unchanged.
3853
+ * - `bcm:scaffold` — multi-section BCM documents compress sub-
3854
+ * addendum requirements into coarse ACs but still land above
3855
+ * the global cap. Cap: `mediumMax: 12` on the AC axis; sources
3856
+ * unchanged.
3857
+ *
3858
+ * Consumer overrides deep-merge with these defaults with
3859
+ * consumer-wins-per-key (see `resolveScopeGate` for the merge
3860
+ * semantics).
3861
+ */
3862
+ declare const DEFAULT_BUNDLE_OVERRIDES: {
3863
+ readonly [phaseLabel: string]: ResolvedScopeGateBundleOverride;
3864
+ };
3865
+ /**
3866
+ * Resolved per-phase-label override. At least one of the two axis
3867
+ * fields is populated — empty resolved overrides are dropped
3868
+ * rather than retained, so callers can assume any entry in the
3869
+ * resolved override map carries actionable thresholds.
3870
+ *
3871
+ * Each axis here is **fully resolved** (`smallMax` + `mediumMax`).
3872
+ * The override resolver fills in the missing axis from the global
3873
+ * resolved thresholds at the time `resolveScopeGate` runs.
3874
+ */
3875
+ interface ResolvedScopeGateBundleOverride {
3876
+ readonly acceptanceCriteria?: ScopeGateThresholds;
3877
+ readonly sources?: ScopeGateThresholds;
3878
+ }
3770
3879
  /**
3771
3880
  * Default decomposition-proposal comment body. The orchestrator
3772
3881
  * substitutes the following angle-bracketed uppercase-snake
@@ -3790,6 +3899,14 @@ declare const DEFAULT_DECOMPOSITION_TEMPLATE: string;
3790
3899
  /**
3791
3900
  * Fully-resolved scope-gate settings. Every field is defaulted so
3792
3901
  * downstream renderers can reason about a single canonical shape.
3902
+ *
3903
+ * `bundleOverrides` is the deep-merged result of the shipped
3904
+ * `DEFAULT_BUNDLE_OVERRIDES` and any consumer-supplied
3905
+ * `ScopeGateConfig.bundleOverrides`. Consumer entries replace
3906
+ * shipped defaults per-key; entries set to `undefined` opt out of
3907
+ * the shipped default for that key. The resolved map only contains
3908
+ * entries whose merged value carries at least one axis — empty
3909
+ * overrides are dropped.
3793
3910
  */
3794
3911
  interface ResolvedScopeGate {
3795
3912
  readonly enabled: boolean;
@@ -3797,6 +3914,9 @@ interface ResolvedScopeGate {
3797
3914
  readonly sources: ScopeGateThresholds;
3798
3915
  readonly autoFile: boolean;
3799
3916
  readonly decompositionTemplate: string;
3917
+ readonly bundleOverrides: {
3918
+ readonly [phaseLabel: string]: ResolvedScopeGateBundleOverride;
3919
+ };
3800
3920
  }
3801
3921
  /**
3802
3922
  * Resolve a (possibly absent) `ScopeGateConfig` into a canonical
@@ -3808,6 +3928,29 @@ interface ResolvedScopeGate {
3808
3928
  * guard against it at runtime.
3809
3929
  */
3810
3930
  declare function resolveScopeGate(config?: ScopeGateConfig): ResolvedScopeGate;
3931
+ /**
3932
+ * Effective thresholds applied to a single issue. Produced by
3933
+ * `resolveOverrideForLabels` so the classifier (and the shell helper)
3934
+ * can use a single shape regardless of whether an override matched.
3935
+ */
3936
+ interface EffectiveScopeThresholds {
3937
+ readonly acceptanceCriteria: ScopeGateThresholds;
3938
+ readonly sources: ScopeGateThresholds;
3939
+ readonly matchedLabel?: string;
3940
+ }
3941
+ /**
3942
+ * Pick the effective thresholds for an issue carrying `labels`.
3943
+ * Walks the resolved bundle-override map, finds every label whose
3944
+ * exact name appears as a key, and selects the **first match in
3945
+ * alphabetical order on the label name**. The override's
3946
+ * `acceptanceCriteria` and `sources` axes are independent — the
3947
+ * unspecified axis falls through to the global resolved
3948
+ * thresholds.
3949
+ *
3950
+ * When no label matches, returns the global thresholds with no
3951
+ * `matchedLabel`.
3952
+ */
3953
+ declare function resolveOverrideForLabels(gate: ResolvedScopeGate, labels: ReadonlyArray<string>): EffectiveScopeThresholds;
3811
3954
  /**
3812
3955
  * Synth-time validation hook. Throws a descriptive `Error` when the
3813
3956
  * supplied `ScopeGateConfig` is malformed. Called by
@@ -3845,10 +3988,11 @@ declare function validateScopeGateConfig(config?: ScopeGateConfig): ResolvedScop
3845
3988
  * body that's pure prose with no recognizable sections classifies
3846
3989
  * `small` — the gate never rejects an issue it can't read.
3847
3990
  */
3848
- declare function classifyIssueScope(body: string, gate: ResolvedScopeGate): {
3991
+ declare function classifyIssueScope(body: string, gate: ResolvedScopeGate, labels?: ReadonlyArray<string>): {
3849
3992
  readonly scope: ScopeClass;
3850
3993
  readonly acCount: number;
3851
3994
  readonly sourcesCount: number;
3995
+ readonly matchedLabel?: string;
3852
3996
  };
3853
3997
  /**
3854
3998
  * Render the markdown subsection appended to the
@@ -4932,6 +5076,24 @@ declare function renderSkillEvalsBundleHook(se: ResolvedSkillEvals, skillLabel:
4932
5076
  */
4933
5077
  declare function renderSkillEvalsRunnerScript(se: ResolvedSkillEvals): string;
4934
5078
 
5079
+ /**
5080
+ * Render the body for the `stub-index-convention` rule shipped by the
5081
+ * `base` bundle.
5082
+ *
5083
+ * The rule documents the contract every agent follows when creating or
5084
+ * updating an `index.md` (or `README.md`) section page under a Starlight
5085
+ * docs root: a contextual summary plus a grouped, linked listing of the
5086
+ * directory's children, and **no** body `# Heading` (Starlight already
5087
+ * renders the frontmatter `title:` as the page H1 — see the no-body-H1
5088
+ * contract documented for skill templates and inline agent templates).
5089
+ *
5090
+ * The convention has no configurable surface — the contract is fixed
5091
+ * and the same for every consuming project. The path globs the rule
5092
+ * applies to are quoted directly from the `shared-editing-safety` rule
5093
+ * so the two contracts never drift.
5094
+ */
5095
+ declare function renderStubIndexConventionRuleContent(): string;
5096
+
4935
5097
  /**
4936
5098
  * Build the requirements-analyst bundle with the supplied resolved
4937
5099
  * paths.
@@ -9029,9 +9191,11 @@ type StarlightSidebarItem = {
9029
9191
  };
9030
9192
  } | {
9031
9193
  readonly label: string;
9194
+ readonly collapsed?: boolean;
9032
9195
  readonly items: ReadonlyArray<StarlightSidebarItem>;
9033
9196
  } | {
9034
9197
  readonly label: string;
9198
+ readonly collapsed?: boolean;
9035
9199
  readonly autogenerate: {
9036
9200
  readonly directory: string;
9037
9201
  readonly collapsed?: boolean;
@@ -9155,4 +9319,4 @@ declare const COMPLETE_JOB_ID = "complete";
9155
9319
  */
9156
9320
  declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
9157
9321
 
9158
- export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, 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, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, 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_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, 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_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_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 ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, 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, 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, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueTemplates, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, 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, type TemplateResolveResult, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, 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, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
9322
+ export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, 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, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, 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_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_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_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 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, 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, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueTemplates, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, 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, type TemplateResolveResult, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, 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, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
package/lib/index.d.ts CHANGED
@@ -1723,6 +1723,74 @@ interface ScopeGateConfig {
1723
1723
  * runtime — configulator emits the template verbatim.
1724
1724
  */
1725
1725
  readonly decompositionTemplate?: string;
1726
+ /**
1727
+ * Per-phase-label threshold overrides. Issues whose `type:*` /
1728
+ * phase label matches one of the keys in this map are classified
1729
+ * against the override's thresholds instead of the global
1730
+ * `acceptanceCriteria` / `sources` defaults. This lets
1731
+ * **content-spec workflows** — issues whose AC list is the
1732
+ * per-section content checklist for one cohesive document, not a
1733
+ * phase-completion checklist that can be decomposed — clear the
1734
+ * gate even when their AC count is well above the global cap.
1735
+ *
1736
+ * Configulator ships two opt-in defaults out of the box:
1737
+ *
1738
+ * - `req:write` — formal requirement documents (ADR / TR / OPS /
1739
+ * SEC / NFR / UX / MT) routinely carry 12–20 ACs covering
1740
+ * per-section content invariants. Default override:
1741
+ * `{ acceptanceCriteria: { mediumMax: 20 } }` (sources unchanged).
1742
+ * - `bcm:scaffold` — multi-section BCM documents compress sub-
1743
+ * addendum requirements into coarse ACs but still land above
1744
+ * the global cap. Default override:
1745
+ * `{ acceptanceCriteria: { mediumMax: 12 } }` (sources unchanged).
1746
+ *
1747
+ * Consumer overrides **deep-merge** with the shipped defaults
1748
+ * with **consumer-wins-per-key**:
1749
+ *
1750
+ * - Setting an entry in the map (e.g. `'req:write': {...}`)
1751
+ * replaces the shipped default for that key.
1752
+ * - Setting an entry to `undefined` (e.g. `'req:write': undefined`)
1753
+ * opts out of the shipped default — that label receives no
1754
+ * override and the issue is classified against the global
1755
+ * thresholds.
1756
+ * - Adding a new entry (e.g. `'standards:scope': {...}`) extends
1757
+ * the override map without touching the shipped defaults.
1758
+ *
1759
+ * Within a single override entry, `acceptanceCriteria` and
1760
+ * `sources` are independent — a consumer can override one axis
1761
+ * and leave the other on the global default. The unspecified
1762
+ * axis falls through to the resolved global thresholds at
1763
+ * classification time.
1764
+ *
1765
+ * **Tie-breaking.** When an issue carries multiple labels that
1766
+ * match keys in the override map, the orchestrator selects the
1767
+ * **first match** in alphabetical order on the label name. This
1768
+ * is deterministic and easy to reason about; consumers that need
1769
+ * a specific label to win should rename or remove the colliding
1770
+ * label.
1771
+ *
1772
+ * Malformed override thresholds (negative, non-integer, or
1773
+ * inverted) fail the build at synth time exactly like the
1774
+ * top-level `acceptanceCriteria` / `sources` thresholds.
1775
+ */
1776
+ readonly bundleOverrides?: {
1777
+ readonly [phaseLabel: string]: ScopeGateBundleOverride | undefined;
1778
+ };
1779
+ }
1780
+ /**
1781
+ * Per-phase-label threshold override for the scope gate. Each axis
1782
+ * is independent — a consumer can override one and leave the other
1783
+ * on the global default. Both fields are optional; an empty object
1784
+ * is a no-op override (use it sparingly — `undefined` in the
1785
+ * `bundleOverrides` map opts out more clearly).
1786
+ *
1787
+ * @see ScopeGateConfig
1788
+ * @see ScopeGateThresholds
1789
+ * @see ./bundles/scope-gate.ts#resolveOverrideForLabels
1790
+ */
1791
+ interface ScopeGateBundleOverride {
1792
+ readonly acceptanceCriteria?: ScopeGateThresholds;
1793
+ readonly sources?: ScopeGateThresholds;
1726
1794
  }
1727
1795
  /*******************************************************************************
1728
1796
  *
@@ -3816,6 +3884,47 @@ declare const DEFAULT_AC_THRESHOLDS: ScopeGateThresholds;
3816
3884
  * `medium`; more than 5 is `large`.
3817
3885
  */
3818
3886
  declare const DEFAULT_SOURCES_THRESHOLDS: ScopeGateThresholds;
3887
+ /**
3888
+ * Bundle overrides shipped out of the box for content-spec workflows
3889
+ * — issues whose AC list is the per-section content checklist for
3890
+ * one cohesive deliverable (not a phase-completion checklist that
3891
+ * can be decomposed). The global default cap (`mediumMax: 6`) is
3892
+ * calibrated for phased-bundle issues and systematically over-flags
3893
+ * single-document writes.
3894
+ *
3895
+ * The two shipped overrides:
3896
+ *
3897
+ * - `req:write` — formal requirement documents (ADR / TR / OPS /
3898
+ * SEC / NFR / UX / MT) routinely carry 12–20 ACs covering
3899
+ * per-section content invariants (definition, alternatives,
3900
+ * risks, traceability, revision history, open items). Cap:
3901
+ * `mediumMax: 20` on the AC axis; sources unchanged.
3902
+ * - `bcm:scaffold` — multi-section BCM documents compress sub-
3903
+ * addendum requirements into coarse ACs but still land above
3904
+ * the global cap. Cap: `mediumMax: 12` on the AC axis; sources
3905
+ * unchanged.
3906
+ *
3907
+ * Consumer overrides deep-merge with these defaults with
3908
+ * consumer-wins-per-key (see `resolveScopeGate` for the merge
3909
+ * semantics).
3910
+ */
3911
+ declare const DEFAULT_BUNDLE_OVERRIDES: {
3912
+ readonly [phaseLabel: string]: ResolvedScopeGateBundleOverride;
3913
+ };
3914
+ /**
3915
+ * Resolved per-phase-label override. At least one of the two axis
3916
+ * fields is populated — empty resolved overrides are dropped
3917
+ * rather than retained, so callers can assume any entry in the
3918
+ * resolved override map carries actionable thresholds.
3919
+ *
3920
+ * Each axis here is **fully resolved** (`smallMax` + `mediumMax`).
3921
+ * The override resolver fills in the missing axis from the global
3922
+ * resolved thresholds at the time `resolveScopeGate` runs.
3923
+ */
3924
+ interface ResolvedScopeGateBundleOverride {
3925
+ readonly acceptanceCriteria?: ScopeGateThresholds;
3926
+ readonly sources?: ScopeGateThresholds;
3927
+ }
3819
3928
  /**
3820
3929
  * Default decomposition-proposal comment body. The orchestrator
3821
3930
  * substitutes the following angle-bracketed uppercase-snake
@@ -3839,6 +3948,14 @@ declare const DEFAULT_DECOMPOSITION_TEMPLATE: string;
3839
3948
  /**
3840
3949
  * Fully-resolved scope-gate settings. Every field is defaulted so
3841
3950
  * downstream renderers can reason about a single canonical shape.
3951
+ *
3952
+ * `bundleOverrides` is the deep-merged result of the shipped
3953
+ * `DEFAULT_BUNDLE_OVERRIDES` and any consumer-supplied
3954
+ * `ScopeGateConfig.bundleOverrides`. Consumer entries replace
3955
+ * shipped defaults per-key; entries set to `undefined` opt out of
3956
+ * the shipped default for that key. The resolved map only contains
3957
+ * entries whose merged value carries at least one axis — empty
3958
+ * overrides are dropped.
3842
3959
  */
3843
3960
  interface ResolvedScopeGate {
3844
3961
  readonly enabled: boolean;
@@ -3846,6 +3963,9 @@ interface ResolvedScopeGate {
3846
3963
  readonly sources: ScopeGateThresholds;
3847
3964
  readonly autoFile: boolean;
3848
3965
  readonly decompositionTemplate: string;
3966
+ readonly bundleOverrides: {
3967
+ readonly [phaseLabel: string]: ResolvedScopeGateBundleOverride;
3968
+ };
3849
3969
  }
3850
3970
  /**
3851
3971
  * Resolve a (possibly absent) `ScopeGateConfig` into a canonical
@@ -3857,6 +3977,29 @@ interface ResolvedScopeGate {
3857
3977
  * guard against it at runtime.
3858
3978
  */
3859
3979
  declare function resolveScopeGate(config?: ScopeGateConfig): ResolvedScopeGate;
3980
+ /**
3981
+ * Effective thresholds applied to a single issue. Produced by
3982
+ * `resolveOverrideForLabels` so the classifier (and the shell helper)
3983
+ * can use a single shape regardless of whether an override matched.
3984
+ */
3985
+ interface EffectiveScopeThresholds {
3986
+ readonly acceptanceCriteria: ScopeGateThresholds;
3987
+ readonly sources: ScopeGateThresholds;
3988
+ readonly matchedLabel?: string;
3989
+ }
3990
+ /**
3991
+ * Pick the effective thresholds for an issue carrying `labels`.
3992
+ * Walks the resolved bundle-override map, finds every label whose
3993
+ * exact name appears as a key, and selects the **first match in
3994
+ * alphabetical order on the label name**. The override's
3995
+ * `acceptanceCriteria` and `sources` axes are independent — the
3996
+ * unspecified axis falls through to the global resolved
3997
+ * thresholds.
3998
+ *
3999
+ * When no label matches, returns the global thresholds with no
4000
+ * `matchedLabel`.
4001
+ */
4002
+ declare function resolveOverrideForLabels(gate: ResolvedScopeGate, labels: ReadonlyArray<string>): EffectiveScopeThresholds;
3860
4003
  /**
3861
4004
  * Synth-time validation hook. Throws a descriptive `Error` when the
3862
4005
  * supplied `ScopeGateConfig` is malformed. Called by
@@ -3894,10 +4037,11 @@ declare function validateScopeGateConfig(config?: ScopeGateConfig): ResolvedScop
3894
4037
  * body that's pure prose with no recognizable sections classifies
3895
4038
  * `small` — the gate never rejects an issue it can't read.
3896
4039
  */
3897
- declare function classifyIssueScope(body: string, gate: ResolvedScopeGate): {
4040
+ declare function classifyIssueScope(body: string, gate: ResolvedScopeGate, labels?: ReadonlyArray<string>): {
3898
4041
  readonly scope: ScopeClass;
3899
4042
  readonly acCount: number;
3900
4043
  readonly sourcesCount: number;
4044
+ readonly matchedLabel?: string;
3901
4045
  };
3902
4046
  /**
3903
4047
  * Render the markdown subsection appended to the
@@ -4981,6 +5125,24 @@ declare function renderSkillEvalsBundleHook(se: ResolvedSkillEvals, skillLabel:
4981
5125
  */
4982
5126
  declare function renderSkillEvalsRunnerScript(se: ResolvedSkillEvals): string;
4983
5127
 
5128
+ /**
5129
+ * Render the body for the `stub-index-convention` rule shipped by the
5130
+ * `base` bundle.
5131
+ *
5132
+ * The rule documents the contract every agent follows when creating or
5133
+ * updating an `index.md` (or `README.md`) section page under a Starlight
5134
+ * docs root: a contextual summary plus a grouped, linked listing of the
5135
+ * directory's children, and **no** body `# Heading` (Starlight already
5136
+ * renders the frontmatter `title:` as the page H1 — see the no-body-H1
5137
+ * contract documented for skill templates and inline agent templates).
5138
+ *
5139
+ * The convention has no configurable surface — the contract is fixed
5140
+ * and the same for every consuming project. The path globs the rule
5141
+ * applies to are quoted directly from the `shared-editing-safety` rule
5142
+ * so the two contracts never drift.
5143
+ */
5144
+ declare function renderStubIndexConventionRuleContent(): string;
5145
+
4984
5146
  /**
4985
5147
  * Build the requirements-analyst bundle with the supplied resolved
4986
5148
  * paths.
@@ -9078,9 +9240,11 @@ type StarlightSidebarItem = {
9078
9240
  };
9079
9241
  } | {
9080
9242
  readonly label: string;
9243
+ readonly collapsed?: boolean;
9081
9244
  readonly items: ReadonlyArray<StarlightSidebarItem>;
9082
9245
  } | {
9083
9246
  readonly label: string;
9247
+ readonly collapsed?: boolean;
9084
9248
  readonly autogenerate: {
9085
9249
  readonly directory: string;
9086
9250
  readonly collapsed?: boolean;
@@ -9204,5 +9368,5 @@ declare const COMPLETE_JOB_ID = "complete";
9204
9368
  */
9205
9369
  declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
9206
9370
 
9207
- export { AGENT_MODEL, AGENT_PLATFORM, 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, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, 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_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, 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_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_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, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SampleLang, StarlightProject, TestRunner, TsDocCoverageKind, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, 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, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
9208
- export type { AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, 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, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueTemplates, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TsDocCoverageRecord, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
9371
+ export { AGENT_MODEL, AGENT_PLATFORM, 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, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, 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_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_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_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, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SampleLang, StarlightProject, TestRunner, TsDocCoverageKind, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, 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, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
9372
+ export type { AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, 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, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, 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, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueTemplates, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, 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, TsDocCoverageRecord, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };