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