@codedrifters/configulator 0.0.288 → 0.0.289

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
@@ -1760,108 +1760,6 @@ interface RunRatioConfig {
1760
1760
  */
1761
1761
  readonly housekeepingModel?: string;
1762
1762
  }
1763
- /*******************************************************************************
1764
- *
1765
- * Pre-flight PR merge Config
1766
- *
1767
- ******************************************************************************/
1768
- /**
1769
- * Pre-flight PR merge configuration consumed by the `orchestrator`
1770
- * bundle.
1771
- *
1772
- * The pre-flight step (vortex `CLAUDE.md` step 0b) runs **before** the
1773
- * orchestrator's triage walk so eligible PRs land before the unblock
1774
- * and queue-scan phases read dependency state. Without it, an issue
1775
- * whose only remaining blocker is an approved-but-not-yet-merged PR
1776
- * shows up as blocked on every dispatch cycle — the pipeline thrashes
1777
- * on stale dependency state.
1778
- *
1779
- * The sweep is idempotent: `gh pr merge` on an already-merged PR is a
1780
- * no-op, so re-running pre-flight on every orchestrator invocation
1781
- * (dispatch **and** housekeeping) is safe and cheap. Eligibility is
1782
- * read by the `check-blocked.sh preflight` subcommand and returned as
1783
- * one line per candidate PR for the orchestrator to act on.
1784
- *
1785
- * Every field is optional. When the whole config is absent the
1786
- * orchestrator ships with vortex's published defaults baked in
1787
- * (pre-flight enabled, delegated to the `pr-reviewer` sub-agent so the
1788
- * merge workflow runs on a cheaper model, squash merges, linked-issue
1789
- * keyword required).
1790
- *
1791
- * Malformed configs — unknown `mergeMethod`, empty / whitespace-only
1792
- * `eligibleLabels` entries — fail the build at synth time via
1793
- * `validatePreflightPrConfig`.
1794
- *
1795
- * @see ./bundles/preflight-pr.ts#resolvePreflightPr
1796
- * @see ./bundles/preflight-pr.ts#validatePreflightPrConfig
1797
- * @see ./bundles/preflight-pr.ts#renderPreflightPrSection
1798
- */
1799
- interface PreflightPrConfig {
1800
- /**
1801
- * Master switch for the pre-flight sweep. When `false`, the
1802
- * orchestrator skips pre-flight entirely; PR merges land via the
1803
- * existing batch PR review step on housekeeping runs or via a
1804
- * human operator.
1805
- *
1806
- * Defaults to `true` — pre-flight is on by default. Repos that
1807
- * want to keep merges manual should set this to `false` explicitly.
1808
- */
1809
- readonly enabled?: boolean;
1810
- /**
1811
- * Whether the orchestrator delegates the pre-flight sweep to the
1812
- * `pr-reviewer` sub-agent. Mirrors vortex's step 0b contract:
1813
- * invoking the reviewer as a sub-agent lets the merge workflow run
1814
- * on its own (cheaper) model rather than on the orchestrator's
1815
- * more expensive model budget.
1816
- *
1817
- * Set to `false` to have the orchestrator merge eligible PRs inline
1818
- * without delegation (useful in pipelines that have not wired a
1819
- * `pr-reviewer` sub-agent).
1820
- *
1821
- * Defaults to `true`.
1822
- */
1823
- readonly delegateToPrReviewer?: boolean;
1824
- /**
1825
- * Merge method used when the orchestrator merges a PR inline
1826
- * (`delegateToPrReviewer = false`). Maps to the `gh pr merge`
1827
- * flags: `squash` → `--squash`, `merge` → `--merge`, `rebase`
1828
- * → `--rebase`.
1829
- *
1830
- * Defaults to `"squash"` — squash-and-merge matches every existing
1831
- * configulator consumer and keeps `main` free of
1832
- * branch-construction noise.
1833
- */
1834
- readonly mergeMethod?: "squash" | "merge" | "rebase";
1835
- /**
1836
- * Whether pre-flight skips PRs that lack a
1837
- * `Closes/Fixes/Resolves #<n>` keyword in the body. Most pipelines
1838
- * require a linked issue so the dependency graph stays intact, so
1839
- * the safe default is `true` — pre-flight only merges PRs that
1840
- * cleanly complete a known issue.
1841
- *
1842
- * Set to `false` in repos that accept human-authored PRs with no
1843
- * linked issue (docs-only changes, dependency bumps, etc.) and
1844
- * still want pre-flight to land them.
1845
- *
1846
- * Defaults to `true`.
1847
- */
1848
- readonly requireLinkedIssue?: boolean;
1849
- /**
1850
- * Optional allowlist of labels that, when present on a PR, gate
1851
- * eligibility. When the list is empty (the default) every open PR
1852
- * that otherwise satisfies the eligibility checks qualifies;
1853
- * supplying a non-empty list restricts pre-flight to PRs carrying
1854
- * at least one of the listed labels.
1855
- *
1856
- * Use this to opt specific pipelines in — for example,
1857
- * `['origin:issue-worker']` restricts pre-flight to bot-authored
1858
- * PRs, leaving human-authored PRs for the normal review path.
1859
- *
1860
- * Every entry must be a non-empty string; empty / whitespace-only
1861
- * entries fail the build via `validatePreflightPrConfig`.
1862
- */
1863
- readonly eligibleLabels?: ReadonlyArray<string>;
1864
- }
1865
1763
  /*******************************************************************************
1866
1764
  *
1867
1765
  * Unblock Dependents Config
@@ -2485,8 +2383,8 @@ interface ScheduledTaskEntry {
2485
2383
  * find-an-issue step. The registered-tasks table renders the
2486
2384
  * `type:*` filter normally.
2487
2385
  * - `"pipeline"` — the task runs an end-to-end pipeline (e.g. the
2488
- * orchestrator's full cycle: pre-flight PR merge, unblock,
2489
- * maintenance, queue scan, delegate, cleanup). The rendered
2386
+ * orchestrator's full cycle: triage / unblock, maintenance, queue
2387
+ * scan, delegate, cleanup). The rendered
2490
2388
  * SKILL.md skips the issue-worker contract and points the operator
2491
2389
  * at the target sub-agent for the full workflow. The
2492
2390
  * registered-tasks table renders `_(none — pipeline manager)_`
@@ -2850,33 +2748,6 @@ interface AgentConfigOptions {
2850
2748
  * @see ./bundles/run-ratio.ts#validateRunRatioConfig
2851
2749
  */
2852
2750
  readonly runRatio?: RunRatioConfig;
2853
- /**
2854
- * Pre-flight PR merge configuration consumed by the `orchestrator`
2855
- * bundle. Drives the pre-flight sweep (vortex step 0b) that merges
2856
- * eligible PRs before the triage walk reads dependency state,
2857
- * preventing stale-dependency thrashing on always-on pipelines.
2858
- *
2859
- * When the whole config is omitted, the orchestrator ships with
2860
- * vortex's published defaults (pre-flight enabled, delegated to
2861
- * the `pr-reviewer` sub-agent, squash merges, linked-issue
2862
- * keyword required).
2863
- *
2864
- * Supply `enabled: false` to disable pre-flight entirely,
2865
- * `delegateToPrReviewer: false` to merge inline without delegation,
2866
- * `mergeMethod` to switch to merge-commit or rebase strategies,
2867
- * `requireLinkedIssue: false` to include PRs without a
2868
- * `Closes/Fixes/Resolves` keyword, or `eligibleLabels` to gate
2869
- * pre-flight on consumer-declared opt-in labels.
2870
- *
2871
- * Malformed configs — unknown `mergeMethod`, empty /
2872
- * whitespace-only `eligibleLabels` entries — fail the build at
2873
- * synth time via `validatePreflightPrConfig`.
2874
- *
2875
- * @see PreflightPrConfig
2876
- * @see ./bundles/preflight-pr.ts#resolvePreflightPr
2877
- * @see ./bundles/preflight-pr.ts#validatePreflightPrConfig
2878
- */
2879
- readonly preflightPr?: PreflightPrConfig;
2880
2751
  /**
2881
2752
  * Scheduled-tasks configuration consumed by the `orchestrator`
2882
2753
  * bundle. Drives the per-agent worker layout at
@@ -3575,98 +3446,6 @@ declare const maintenanceAuditBundle: AgentRuleBundle;
3575
3446
  */
3576
3447
  declare const meetingAnalysisBundle: AgentRuleBundle;
3577
3448
 
3578
- /**
3579
- * Default for whether the orchestrator delegates the pre-flight merge
3580
- * sweep to the `pr-reviewer` sub-agent. Mirrors vortex's step 0b
3581
- * contract: invoking the reviewer as a sub-agent lets the merge
3582
- * workflow run on its own (cheaper) model rather than on the
3583
- * orchestrator's model. Set to `false` to have the orchestrator merge
3584
- * eligible PRs inline.
3585
- *
3586
- * @see PreflightPrConfig
3587
- */
3588
- declare const DEFAULT_DELEGATE_TO_PR_REVIEWER = true;
3589
- /**
3590
- * Default merge method used when the orchestrator merges a PR inline
3591
- * (`delegateToPrReviewer = false`). Squash-and-merge matches every
3592
- * existing configulator consumer and keeps `main` free of
3593
- * branch-construction noise.
3594
- *
3595
- * @see PreflightPrConfig
3596
- */
3597
- declare const DEFAULT_MERGE_METHOD: PreflightMergeMethod;
3598
- /**
3599
- * Default for whether pre-flight skips PRs lacking a
3600
- * `Closes/Fixes/Resolves #<n>` keyword in the body. Most pipelines
3601
- * require a linked issue, so the safe default is `true` — pre-flight
3602
- * only merges PRs that cleanly complete a known issue.
3603
- *
3604
- * @see PreflightPrConfig
3605
- */
3606
- declare const DEFAULT_REQUIRE_LINKED_ISSUE = true;
3607
- /**
3608
- * Merge-method values accepted on `PreflightPrConfig.mergeMethod`.
3609
- * Matches the `gh pr merge` flags: `--squash`, `--merge`, `--rebase`.
3610
- */
3611
- declare const PREFLIGHT_MERGE_METHOD_VALUES: readonly ["squash", "merge", "rebase"];
3612
- type PreflightMergeMethod = (typeof PREFLIGHT_MERGE_METHOD_VALUES)[number];
3613
- /**
3614
- * Fully-resolved pre-flight PR merge settings. Every field is defaulted
3615
- * so downstream renderers can reason about a single canonical shape.
3616
- */
3617
- interface ResolvedPreflightPr {
3618
- readonly enabled: boolean;
3619
- readonly delegateToPrReviewer: boolean;
3620
- readonly mergeMethod: PreflightMergeMethod;
3621
- readonly requireLinkedIssue: boolean;
3622
- readonly eligibleLabels: ReadonlyArray<string>;
3623
- }
3624
- /**
3625
- * Resolve a (possibly absent) `PreflightPrConfig` into a canonical
3626
- * `ResolvedPreflightPr` with every field filled in. Unset fields
3627
- * cascade from their documented defaults.
3628
- *
3629
- * Malformed configs (unknown `mergeMethod`, empty or whitespace-only
3630
- * `eligibleLabels` entry) throw a descriptive `Error` — callers should
3631
- * not need to guard against it at runtime.
3632
- */
3633
- declare function resolvePreflightPr(config?: PreflightPrConfig): ResolvedPreflightPr;
3634
- /**
3635
- * Synth-time validation hook. Throws a descriptive `Error` when the
3636
- * supplied `PreflightPrConfig` is malformed. Called by
3637
- * `AgentConfig.preSynthesize` before any rendering so a misconfigured
3638
- * pre-flight sweep fails the build instead of silently shipping a
3639
- * broken check-blocked.sh subcommand. Returns the resolved config
3640
- * unchanged so callers can write
3641
- * `const pf = validatePreflightPrConfig(config)` in one line.
3642
- *
3643
- * Malformed cases rejected here:
3644
- *
3645
- * - `mergeMethod` not one of `squash` / `merge` / `rebase`.
3646
- * - Any `eligibleLabels` entry that is empty or whitespace-only.
3647
- */
3648
- declare function validatePreflightPrConfig(config?: PreflightPrConfig): ResolvedPreflightPr;
3649
- /**
3650
- * Render the markdown subsection appended to the
3651
- * `orchestrator-conventions` rule. Always returns a non-empty string so
3652
- * the orchestrator rule documents the pre-flight contract even when the
3653
- * consumer relies on the defaults.
3654
- */
3655
- declare function renderPreflightPrSection(pf: ResolvedPreflightPr): string;
3656
- /**
3657
- * Render a shell-script snippet embedded in `check-blocked.sh`. The
3658
- * snippet declares a `cmd_preflight()` function that scans open PRs
3659
- * and echoes one eligibility line per PR in the canonical
3660
- * `PREFLIGHT_MERGE PR #<n> issue:#<m> branch:<b> — "<title>"` format
3661
- * (or `PREFLIGHT_SKIP PR #<n> — <reason> — "<title>"` on skip, or
3662
- * `NO_PREFLIGHT_PRS` when nothing is eligible).
3663
- *
3664
- * Returns the body of a shell function block (including the
3665
- * `cmd_preflight()` wrapper) so the surrounding script can splice it
3666
- * inline at the exact indent level it wants.
3667
- */
3668
- declare function renderPreflightPrShellHelpers(pf: ResolvedPreflightPr): string;
3669
-
3670
3449
  /**
3671
3450
  * Default dispatch-to-housekeeping ratio — openhi's `DISPATCHER.md`
3672
3451
  * ships a 4:1 ratio: four consecutive dispatch runs, then one
@@ -4298,23 +4077,19 @@ declare function renderUnblockDependentsScript(ud: ResolvedUnblockDependents): s
4298
4077
 
4299
4078
  /**
4300
4079
  * Build the check-blocked.sh procedure definition for a given resolved
4301
- * tier table, scope gate, run-ratio, and pre-flight config.
4302
- * `AgentConfig.preSynthesize` calls this with the consumer's resolved
4303
- * configs so the emitted script's `tier_of()` lookup, `scope_of()`
4304
- * thresholds, `run_counter_tick()` cycle length, and `cmd_preflight()`
4305
- * eligibility filter match whatever the rendered
4080
+ * tier table, scope gate, and run-ratio config. `AgentConfig.preSynthesize`
4081
+ * calls this with the consumer's resolved configs so the emitted
4082
+ * script's `tier_of()` lookup, `scope_of()` thresholds, and
4083
+ * `run_counter_tick()` cycle length match whatever the rendered
4306
4084
  * orchestrator-conventions rule documents.
4307
4085
  *
4308
4086
  * Scope-gate settings default to the bundle's built-in defaults
4309
4087
  * (small: ≤3 AC + ≤2 sources; medium: ≤6 AC + ≤5 sources;
4310
4088
  * auto-file off) when the caller omits them. Run-ratio settings
4311
4089
  * default to the openhi 4:1 cadence with the counter persisted at
4312
- * `.state/orchestrator-runs.json`. Pre-flight settings default
4313
- * to vortex's step 0b contract (enabled, delegated to the
4314
- * `pr-reviewer` sub-agent, squash merges, linked-issue keyword
4315
- * required).
4090
+ * `.state/orchestrator-runs.json`.
4316
4091
  */
4317
- declare function buildCheckBlockedProcedure(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio, preflight?: ResolvedPreflightPr): AgentProcedure;
4092
+ declare function buildCheckBlockedProcedure(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio): AgentProcedure;
4318
4093
  /*******************************************************************************
4319
4094
  *
4320
4095
  * unblock-dependents.sh — Targeted post-close dependency sweep.
@@ -4333,7 +4108,7 @@ declare function buildCheckBlockedProcedure(tiers: ReadonlyArray<ResolvedAgentTi
4333
4108
  declare function buildUnblockDependentsProcedure(unblockDependents?: ResolvedUnblockDependents): AgentProcedure;
4334
4109
  /**
4335
4110
  * Build the orchestrator-conventions rule content for a given resolved
4336
- * tier table, scope gate, run-ratio, pre-flight, scheduled-tasks, and
4111
+ * tier table, scope gate, run-ratio, scheduled-tasks, and
4337
4112
  * unblock-dependents config. The preamble is constant; each section
4338
4113
  * below it is rendered from the supplied values so consumer overrides
4339
4114
  * propagate into the generated rule.
@@ -4341,24 +4116,22 @@ declare function buildUnblockDependentsProcedure(unblockDependents?: ResolvedUnb
4341
4116
  * Every optional parameter defaults to the bundle's built-in default
4342
4117
  * when the caller omits it.
4343
4118
  */
4344
- declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio, preflight?: ResolvedPreflightPr, scheduledTasks?: ResolvedScheduledTasks, unblockDependents?: ResolvedUnblockDependents): string;
4119
+ declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio, scheduledTasks?: ResolvedScheduledTasks, unblockDependents?: ResolvedUnblockDependents): string;
4345
4120
  /**
4346
4121
  * Resolve the orchestrator-conventions rule content and the
4347
4122
  * check-blocked.sh procedure content for a given (possibly absent)
4348
4123
  * consumer-supplied tier config, scope-gate config, run-ratio config,
4349
- * pre-flight config, and scheduled-tasks config. Called by
4350
- * `AgentConfig.preSynthesize`.
4124
+ * and scheduled-tasks config. Called by `AgentConfig.preSynthesize`.
4351
4125
  *
4352
- * Returns the resolved tier table, scope gate, run ratio, pre-flight,
4353
- * and scheduled-tasks config alongside both rendered artifacts so
4354
- * callers can splice them into their rule map and procedure map in a
4355
- * single pass.
4126
+ * Returns the resolved tier table, scope gate, run ratio, and
4127
+ * scheduled-tasks config alongside both rendered artifacts so callers
4128
+ * can splice them into their rule map and procedure map in a single
4129
+ * pass.
4356
4130
  */
4357
- declare function resolveOrchestratorAssets(tierConfig?: AgentTierConfig, scopeGateConfig?: ScopeGateConfig, runRatioConfig?: RunRatioConfig, preflightPrConfig?: PreflightPrConfig, scheduledTasksConfig?: ScheduledTasksConfig, unblockDependentsConfig?: UnblockDependentsConfig): {
4131
+ declare function resolveOrchestratorAssets(tierConfig?: AgentTierConfig, scopeGateConfig?: ScopeGateConfig, runRatioConfig?: RunRatioConfig, scheduledTasksConfig?: ScheduledTasksConfig, unblockDependentsConfig?: UnblockDependentsConfig): {
4358
4132
  readonly tiers: ReadonlyArray<ResolvedAgentTier>;
4359
4133
  readonly scopeGate: ResolvedScopeGate;
4360
4134
  readonly runRatio: ResolvedRunRatio;
4361
- readonly preflight: ResolvedPreflightPr;
4362
4135
  readonly scheduledTasks: ResolvedScheduledTasks;
4363
4136
  readonly unblockDependents: ResolvedUnblockDependents;
4364
4137
  readonly conventionsContent: string;
@@ -9382,4 +9155,4 @@ declare const COMPLETE_JOB_ID = "complete";
9382
9155
  */
9383
9156
  declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
9384
9157
 
9385
- 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_DELEGATE_TO_PR_REVIEWER, 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_MERGE_METHOD, 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_LINKED_ISSUE, 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, PREFLIGHT_MERGE_METHOD_VALUES, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PreflightMergeMethod, type PreflightPrConfig, 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 ResolvedPreflightPr, 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, renderPreflightPrSection, renderPreflightPrShellHelpers, 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, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
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 };