@codedrifters/configulator 0.0.287 → 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.ts CHANGED
@@ -413,11 +413,6 @@ interface AgentSubAgent {
413
413
  * Rendered to the platform-specific sub-agent config.
414
414
  */
415
415
  readonly mcpServers?: Readonly<Record<string, McpServerConfig>>;
416
- /**
417
- * Sub-agents this agent can invoke/delegate to.
418
- * @example ['test-writer', 'code-reviewer']
419
- */
420
- readonly canDelegateToAgents?: ReadonlyArray<string>;
421
416
  /** Optional per-platform overrides for this sub-agent. */
422
417
  readonly platforms?: AgentSubAgentPlatformOverrides;
423
418
  }
@@ -1814,108 +1809,6 @@ interface RunRatioConfig {
1814
1809
  */
1815
1810
  readonly housekeepingModel?: string;
1816
1811
  }
1817
- /*******************************************************************************
1818
- *
1819
- * Pre-flight PR merge Config
1820
- *
1821
- ******************************************************************************/
1822
- /**
1823
- * Pre-flight PR merge configuration consumed by the `orchestrator`
1824
- * bundle.
1825
- *
1826
- * The pre-flight step (vortex `CLAUDE.md` step 0b) runs **before** the
1827
- * orchestrator's triage walk so eligible PRs land before the unblock
1828
- * and queue-scan phases read dependency state. Without it, an issue
1829
- * whose only remaining blocker is an approved-but-not-yet-merged PR
1830
- * shows up as blocked on every dispatch cycle — the pipeline thrashes
1831
- * on stale dependency state.
1832
- *
1833
- * The sweep is idempotent: `gh pr merge` on an already-merged PR is a
1834
- * no-op, so re-running pre-flight on every orchestrator invocation
1835
- * (dispatch **and** housekeeping) is safe and cheap. Eligibility is
1836
- * read by the `check-blocked.sh preflight` subcommand and returned as
1837
- * one line per candidate PR for the orchestrator to act on.
1838
- *
1839
- * Every field is optional. When the whole config is absent the
1840
- * orchestrator ships with vortex's published defaults baked in
1841
- * (pre-flight enabled, delegated to the `pr-reviewer` sub-agent so the
1842
- * merge workflow runs on a cheaper model, squash merges, linked-issue
1843
- * keyword required).
1844
- *
1845
- * Malformed configs — unknown `mergeMethod`, empty / whitespace-only
1846
- * `eligibleLabels` entries — fail the build at synth time via
1847
- * `validatePreflightPrConfig`.
1848
- *
1849
- * @see ./bundles/preflight-pr.ts#resolvePreflightPr
1850
- * @see ./bundles/preflight-pr.ts#validatePreflightPrConfig
1851
- * @see ./bundles/preflight-pr.ts#renderPreflightPrSection
1852
- */
1853
- interface PreflightPrConfig {
1854
- /**
1855
- * Master switch for the pre-flight sweep. When `false`, the
1856
- * orchestrator skips pre-flight entirely; PR merges land via the
1857
- * existing batch PR review step on housekeeping runs or via a
1858
- * human operator.
1859
- *
1860
- * Defaults to `true` — pre-flight is on by default. Repos that
1861
- * want to keep merges manual should set this to `false` explicitly.
1862
- */
1863
- readonly enabled?: boolean;
1864
- /**
1865
- * Whether the orchestrator delegates the pre-flight sweep to the
1866
- * `pr-reviewer` sub-agent. Mirrors vortex's step 0b contract:
1867
- * invoking the reviewer as a sub-agent lets the merge workflow run
1868
- * on its own (cheaper) model rather than on the orchestrator's
1869
- * more expensive model budget.
1870
- *
1871
- * Set to `false` to have the orchestrator merge eligible PRs inline
1872
- * without delegation (useful in pipelines that have not wired a
1873
- * `pr-reviewer` sub-agent).
1874
- *
1875
- * Defaults to `true`.
1876
- */
1877
- readonly delegateToPrReviewer?: boolean;
1878
- /**
1879
- * Merge method used when the orchestrator merges a PR inline
1880
- * (`delegateToPrReviewer = false`). Maps to the `gh pr merge`
1881
- * flags: `squash` → `--squash`, `merge` → `--merge`, `rebase`
1882
- * → `--rebase`.
1883
- *
1884
- * Defaults to `"squash"` — squash-and-merge matches every existing
1885
- * configulator consumer and keeps `main` free of
1886
- * branch-construction noise.
1887
- */
1888
- readonly mergeMethod?: "squash" | "merge" | "rebase";
1889
- /**
1890
- * Whether pre-flight skips PRs that lack a
1891
- * `Closes/Fixes/Resolves #<n>` keyword in the body. Most pipelines
1892
- * require a linked issue so the dependency graph stays intact, so
1893
- * the safe default is `true` — pre-flight only merges PRs that
1894
- * cleanly complete a known issue.
1895
- *
1896
- * Set to `false` in repos that accept human-authored PRs with no
1897
- * linked issue (docs-only changes, dependency bumps, etc.) and
1898
- * still want pre-flight to land them.
1899
- *
1900
- * Defaults to `true`.
1901
- */
1902
- readonly requireLinkedIssue?: boolean;
1903
- /**
1904
- * Optional allowlist of labels that, when present on a PR, gate
1905
- * eligibility. When the list is empty (the default) every open PR
1906
- * that otherwise satisfies the eligibility checks qualifies;
1907
- * supplying a non-empty list restricts pre-flight to PRs carrying
1908
- * at least one of the listed labels.
1909
- *
1910
- * Use this to opt specific pipelines in — for example,
1911
- * `['origin:issue-worker']` restricts pre-flight to bot-authored
1912
- * PRs, leaving human-authored PRs for the normal review path.
1913
- *
1914
- * Every entry must be a non-empty string; empty / whitespace-only
1915
- * entries fail the build via `validatePreflightPrConfig`.
1916
- */
1917
- readonly eligibleLabels?: ReadonlyArray<string>;
1918
- }
1919
1812
  /*******************************************************************************
1920
1813
  *
1921
1814
  * Unblock Dependents Config
@@ -2539,8 +2432,8 @@ interface ScheduledTaskEntry {
2539
2432
  * find-an-issue step. The registered-tasks table renders the
2540
2433
  * `type:*` filter normally.
2541
2434
  * - `"pipeline"` — the task runs an end-to-end pipeline (e.g. the
2542
- * orchestrator's full cycle: pre-flight PR merge, unblock,
2543
- * maintenance, queue scan, delegate, cleanup). The rendered
2435
+ * orchestrator's full cycle: triage / unblock, maintenance, queue
2436
+ * scan, delegate, cleanup). The rendered
2544
2437
  * SKILL.md skips the issue-worker contract and points the operator
2545
2438
  * at the target sub-agent for the full workflow. The
2546
2439
  * registered-tasks table renders `_(none — pipeline manager)_`
@@ -2904,33 +2797,6 @@ interface AgentConfigOptions {
2904
2797
  * @see ./bundles/run-ratio.ts#validateRunRatioConfig
2905
2798
  */
2906
2799
  readonly runRatio?: RunRatioConfig;
2907
- /**
2908
- * Pre-flight PR merge configuration consumed by the `orchestrator`
2909
- * bundle. Drives the pre-flight sweep (vortex step 0b) that merges
2910
- * eligible PRs before the triage walk reads dependency state,
2911
- * preventing stale-dependency thrashing on always-on pipelines.
2912
- *
2913
- * When the whole config is omitted, the orchestrator ships with
2914
- * vortex's published defaults (pre-flight enabled, delegated to
2915
- * the `pr-reviewer` sub-agent, squash merges, linked-issue
2916
- * keyword required).
2917
- *
2918
- * Supply `enabled: false` to disable pre-flight entirely,
2919
- * `delegateToPrReviewer: false` to merge inline without delegation,
2920
- * `mergeMethod` to switch to merge-commit or rebase strategies,
2921
- * `requireLinkedIssue: false` to include PRs without a
2922
- * `Closes/Fixes/Resolves` keyword, or `eligibleLabels` to gate
2923
- * pre-flight on consumer-declared opt-in labels.
2924
- *
2925
- * Malformed configs — unknown `mergeMethod`, empty /
2926
- * whitespace-only `eligibleLabels` entries — fail the build at
2927
- * synth time via `validatePreflightPrConfig`.
2928
- *
2929
- * @see PreflightPrConfig
2930
- * @see ./bundles/preflight-pr.ts#resolvePreflightPr
2931
- * @see ./bundles/preflight-pr.ts#validatePreflightPrConfig
2932
- */
2933
- readonly preflightPr?: PreflightPrConfig;
2934
2800
  /**
2935
2801
  * Scheduled-tasks configuration consumed by the `orchestrator`
2936
2802
  * bundle. Drives the per-agent worker layout at
@@ -3629,98 +3495,6 @@ declare const maintenanceAuditBundle: AgentRuleBundle;
3629
3495
  */
3630
3496
  declare const meetingAnalysisBundle: AgentRuleBundle;
3631
3497
 
3632
- /**
3633
- * Default for whether the orchestrator delegates the pre-flight merge
3634
- * sweep to the `pr-reviewer` sub-agent. Mirrors vortex's step 0b
3635
- * contract: invoking the reviewer as a sub-agent lets the merge
3636
- * workflow run on its own (cheaper) model rather than on the
3637
- * orchestrator's model. Set to `false` to have the orchestrator merge
3638
- * eligible PRs inline.
3639
- *
3640
- * @see PreflightPrConfig
3641
- */
3642
- declare const DEFAULT_DELEGATE_TO_PR_REVIEWER = true;
3643
- /**
3644
- * Default merge method used when the orchestrator merges a PR inline
3645
- * (`delegateToPrReviewer = false`). Squash-and-merge matches every
3646
- * existing configulator consumer and keeps `main` free of
3647
- * branch-construction noise.
3648
- *
3649
- * @see PreflightPrConfig
3650
- */
3651
- declare const DEFAULT_MERGE_METHOD: PreflightMergeMethod;
3652
- /**
3653
- * Default for whether pre-flight skips PRs lacking a
3654
- * `Closes/Fixes/Resolves #<n>` keyword in the body. Most pipelines
3655
- * require a linked issue, so the safe default is `true` — pre-flight
3656
- * only merges PRs that cleanly complete a known issue.
3657
- *
3658
- * @see PreflightPrConfig
3659
- */
3660
- declare const DEFAULT_REQUIRE_LINKED_ISSUE = true;
3661
- /**
3662
- * Merge-method values accepted on `PreflightPrConfig.mergeMethod`.
3663
- * Matches the `gh pr merge` flags: `--squash`, `--merge`, `--rebase`.
3664
- */
3665
- declare const PREFLIGHT_MERGE_METHOD_VALUES: readonly ["squash", "merge", "rebase"];
3666
- type PreflightMergeMethod = (typeof PREFLIGHT_MERGE_METHOD_VALUES)[number];
3667
- /**
3668
- * Fully-resolved pre-flight PR merge settings. Every field is defaulted
3669
- * so downstream renderers can reason about a single canonical shape.
3670
- */
3671
- interface ResolvedPreflightPr {
3672
- readonly enabled: boolean;
3673
- readonly delegateToPrReviewer: boolean;
3674
- readonly mergeMethod: PreflightMergeMethod;
3675
- readonly requireLinkedIssue: boolean;
3676
- readonly eligibleLabels: ReadonlyArray<string>;
3677
- }
3678
- /**
3679
- * Resolve a (possibly absent) `PreflightPrConfig` into a canonical
3680
- * `ResolvedPreflightPr` with every field filled in. Unset fields
3681
- * cascade from their documented defaults.
3682
- *
3683
- * Malformed configs (unknown `mergeMethod`, empty or whitespace-only
3684
- * `eligibleLabels` entry) throw a descriptive `Error` — callers should
3685
- * not need to guard against it at runtime.
3686
- */
3687
- declare function resolvePreflightPr(config?: PreflightPrConfig): ResolvedPreflightPr;
3688
- /**
3689
- * Synth-time validation hook. Throws a descriptive `Error` when the
3690
- * supplied `PreflightPrConfig` is malformed. Called by
3691
- * `AgentConfig.preSynthesize` before any rendering so a misconfigured
3692
- * pre-flight sweep fails the build instead of silently shipping a
3693
- * broken check-blocked.sh subcommand. Returns the resolved config
3694
- * unchanged so callers can write
3695
- * `const pf = validatePreflightPrConfig(config)` in one line.
3696
- *
3697
- * Malformed cases rejected here:
3698
- *
3699
- * - `mergeMethod` not one of `squash` / `merge` / `rebase`.
3700
- * - Any `eligibleLabels` entry that is empty or whitespace-only.
3701
- */
3702
- declare function validatePreflightPrConfig(config?: PreflightPrConfig): ResolvedPreflightPr;
3703
- /**
3704
- * Render the markdown subsection appended to the
3705
- * `orchestrator-conventions` rule. Always returns a non-empty string so
3706
- * the orchestrator rule documents the pre-flight contract even when the
3707
- * consumer relies on the defaults.
3708
- */
3709
- declare function renderPreflightPrSection(pf: ResolvedPreflightPr): string;
3710
- /**
3711
- * Render a shell-script snippet embedded in `check-blocked.sh`. The
3712
- * snippet declares a `cmd_preflight()` function that scans open PRs
3713
- * and echoes one eligibility line per PR in the canonical
3714
- * `PREFLIGHT_MERGE PR #<n> issue:#<m> branch:<b> — "<title>"` format
3715
- * (or `PREFLIGHT_SKIP PR #<n> — <reason> — "<title>"` on skip, or
3716
- * `NO_PREFLIGHT_PRS` when nothing is eligible).
3717
- *
3718
- * Returns the body of a shell function block (including the
3719
- * `cmd_preflight()` wrapper) so the surrounding script can splice it
3720
- * inline at the exact indent level it wants.
3721
- */
3722
- declare function renderPreflightPrShellHelpers(pf: ResolvedPreflightPr): string;
3723
-
3724
3498
  /**
3725
3499
  * Default dispatch-to-housekeeping ratio — openhi's `DISPATCHER.md`
3726
3500
  * ships a 4:1 ratio: four consecutive dispatch runs, then one
@@ -4352,23 +4126,19 @@ declare function renderUnblockDependentsScript(ud: ResolvedUnblockDependents): s
4352
4126
 
4353
4127
  /**
4354
4128
  * Build the check-blocked.sh procedure definition for a given resolved
4355
- * tier table, scope gate, run-ratio, and pre-flight config.
4356
- * `AgentConfig.preSynthesize` calls this with the consumer's resolved
4357
- * configs so the emitted script's `tier_of()` lookup, `scope_of()`
4358
- * thresholds, `run_counter_tick()` cycle length, and `cmd_preflight()`
4359
- * eligibility filter match whatever the rendered
4129
+ * tier table, scope gate, and run-ratio config. `AgentConfig.preSynthesize`
4130
+ * calls this with the consumer's resolved configs so the emitted
4131
+ * script's `tier_of()` lookup, `scope_of()` thresholds, and
4132
+ * `run_counter_tick()` cycle length match whatever the rendered
4360
4133
  * orchestrator-conventions rule documents.
4361
4134
  *
4362
4135
  * Scope-gate settings default to the bundle's built-in defaults
4363
4136
  * (small: ≤3 AC + ≤2 sources; medium: ≤6 AC + ≤5 sources;
4364
4137
  * auto-file off) when the caller omits them. Run-ratio settings
4365
4138
  * default to the openhi 4:1 cadence with the counter persisted at
4366
- * `.state/orchestrator-runs.json`. Pre-flight settings default
4367
- * to vortex's step 0b contract (enabled, delegated to the
4368
- * `pr-reviewer` sub-agent, squash merges, linked-issue keyword
4369
- * required).
4139
+ * `.state/orchestrator-runs.json`.
4370
4140
  */
4371
- declare function buildCheckBlockedProcedure(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio, preflight?: ResolvedPreflightPr): AgentProcedure;
4141
+ declare function buildCheckBlockedProcedure(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio): AgentProcedure;
4372
4142
  /*******************************************************************************
4373
4143
  *
4374
4144
  * unblock-dependents.sh — Targeted post-close dependency sweep.
@@ -4387,7 +4157,7 @@ declare function buildCheckBlockedProcedure(tiers: ReadonlyArray<ResolvedAgentTi
4387
4157
  declare function buildUnblockDependentsProcedure(unblockDependents?: ResolvedUnblockDependents): AgentProcedure;
4388
4158
  /**
4389
4159
  * Build the orchestrator-conventions rule content for a given resolved
4390
- * tier table, scope gate, run-ratio, pre-flight, scheduled-tasks, and
4160
+ * tier table, scope gate, run-ratio, scheduled-tasks, and
4391
4161
  * unblock-dependents config. The preamble is constant; each section
4392
4162
  * below it is rendered from the supplied values so consumer overrides
4393
4163
  * propagate into the generated rule.
@@ -4395,24 +4165,22 @@ declare function buildUnblockDependentsProcedure(unblockDependents?: ResolvedUnb
4395
4165
  * Every optional parameter defaults to the bundle's built-in default
4396
4166
  * when the caller omits it.
4397
4167
  */
4398
- declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio, preflight?: ResolvedPreflightPr, scheduledTasks?: ResolvedScheduledTasks, unblockDependents?: ResolvedUnblockDependents): string;
4168
+ declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio, scheduledTasks?: ResolvedScheduledTasks, unblockDependents?: ResolvedUnblockDependents): string;
4399
4169
  /**
4400
4170
  * Resolve the orchestrator-conventions rule content and the
4401
4171
  * check-blocked.sh procedure content for a given (possibly absent)
4402
4172
  * consumer-supplied tier config, scope-gate config, run-ratio config,
4403
- * pre-flight config, and scheduled-tasks config. Called by
4404
- * `AgentConfig.preSynthesize`.
4173
+ * and scheduled-tasks config. Called by `AgentConfig.preSynthesize`.
4405
4174
  *
4406
- * Returns the resolved tier table, scope gate, run ratio, pre-flight,
4407
- * and scheduled-tasks config alongside both rendered artifacts so
4408
- * callers can splice them into their rule map and procedure map in a
4409
- * single pass.
4175
+ * Returns the resolved tier table, scope gate, run ratio, and
4176
+ * scheduled-tasks config alongside both rendered artifacts so callers
4177
+ * can splice them into their rule map and procedure map in a single
4178
+ * pass.
4410
4179
  */
4411
- declare function resolveOrchestratorAssets(tierConfig?: AgentTierConfig, scopeGateConfig?: ScopeGateConfig, runRatioConfig?: RunRatioConfig, preflightPrConfig?: PreflightPrConfig, scheduledTasksConfig?: ScheduledTasksConfig, unblockDependentsConfig?: UnblockDependentsConfig): {
4180
+ declare function resolveOrchestratorAssets(tierConfig?: AgentTierConfig, scopeGateConfig?: ScopeGateConfig, runRatioConfig?: RunRatioConfig, scheduledTasksConfig?: ScheduledTasksConfig, unblockDependentsConfig?: UnblockDependentsConfig): {
4412
4181
  readonly tiers: ReadonlyArray<ResolvedAgentTier>;
4413
4182
  readonly scopeGate: ResolvedScopeGate;
4414
4183
  readonly runRatio: ResolvedRunRatio;
4415
- readonly preflight: ResolvedPreflightPr;
4416
4184
  readonly scheduledTasks: ResolvedScheduledTasks;
4417
4185
  readonly unblockDependents: ResolvedUnblockDependents;
4418
4186
  readonly conventionsContent: string;
@@ -9436,5 +9204,5 @@ declare const COMPLETE_JOB_ID = "complete";
9436
9204
  */
9437
9205
  declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
9438
9206
 
9439
- 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_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, 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, PREFLIGHT_MERGE_METHOD_VALUES, 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, 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 };
9440
- 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, PreflightMergeMethod, PreflightPrConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueTemplates, ResolvedPreflightPr, 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 };
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 };