@codedrifters/configulator 0.0.328 → 0.0.330
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 +254 -44
- package/lib/index.d.ts +255 -45
- package/lib/index.js +1735 -734
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1731 -733
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -1858,6 +1858,97 @@ interface ScopeGateBundleOverride {
|
|
|
1858
1858
|
readonly acceptanceCriteria?: ScopeGateThresholds;
|
|
1859
1859
|
readonly sources?: ScopeGateThresholds;
|
|
1860
1860
|
}
|
|
1861
|
+
/*******************************************************************************
|
|
1862
|
+
*
|
|
1863
|
+
* PR Review Policy Config
|
|
1864
|
+
*
|
|
1865
|
+
******************************************************************************/
|
|
1866
|
+
/**
|
|
1867
|
+
* `auto-merge` half of the PR review policy. Today the only
|
|
1868
|
+
* configurable knob is `pathsExemptFromSize` — a list of path globs
|
|
1869
|
+
* that exempt a PR from the `human-required.size` rule (rule #6 in
|
|
1870
|
+
* the precedence walk).
|
|
1871
|
+
*
|
|
1872
|
+
* The reviewer walks every changed path in the PR and skips rule #6
|
|
1873
|
+
* when **every** path matches at least one glob in this list.
|
|
1874
|
+
* Doc-only PRs routinely exceed the 500-insertion threshold (large
|
|
1875
|
+
* migrations, bulk additions, refresh passes) but carry no production
|
|
1876
|
+
* risk that warrants forcing a human reviewer, so the default
|
|
1877
|
+
* carve-out exempts `docs/**` out of the box.
|
|
1878
|
+
*
|
|
1879
|
+
* @see PrReviewPolicyConfig
|
|
1880
|
+
* @see ./bundles/pr-review-policy.ts#DEFAULT_PATHS_EXEMPT_FROM_SIZE
|
|
1881
|
+
*/
|
|
1882
|
+
interface PrReviewAutoMergeConfig {
|
|
1883
|
+
/**
|
|
1884
|
+
* Path globs that exempt a PR from the `human-required.size` rule.
|
|
1885
|
+
* When **every** changed path in the PR matches at least one glob
|
|
1886
|
+
* in this list, the reviewer skips rule #6 (size threshold) and
|
|
1887
|
+
* continues with the rest of the precedence walk.
|
|
1888
|
+
*
|
|
1889
|
+
* Defaults to `["docs/**"]` — the entire Starlight docs tree every
|
|
1890
|
+
* configulator consumer ships. Override with a custom list to
|
|
1891
|
+
* exempt additional doc-only roots (e.g. `docs/research/**` for
|
|
1892
|
+
* research notes that live outside the Starlight tree):
|
|
1893
|
+
*
|
|
1894
|
+
* ```typescript
|
|
1895
|
+
* agentConfig: {
|
|
1896
|
+
* prReviewPolicy: {
|
|
1897
|
+
* autoMerge: {
|
|
1898
|
+
* pathsExemptFromSize: ["docs/**", "docs/research/**"],
|
|
1899
|
+
* },
|
|
1900
|
+
* },
|
|
1901
|
+
* }
|
|
1902
|
+
* ```
|
|
1903
|
+
*
|
|
1904
|
+
* Pass `[]` to disable the carve-out entirely and apply the size
|
|
1905
|
+
* rule to every PR regardless of path. Pass non-empty entries only
|
|
1906
|
+
* — empty / whitespace-only strings fail synth.
|
|
1907
|
+
*
|
|
1908
|
+
* @default ["docs/**"]
|
|
1909
|
+
*/
|
|
1910
|
+
readonly pathsExemptFromSize?: ReadonlyArray<string>;
|
|
1911
|
+
}
|
|
1912
|
+
/**
|
|
1913
|
+
* PR review policy configuration consumed by the `pr-review` bundle.
|
|
1914
|
+
*
|
|
1915
|
+
* The bundle ships a declarative policy in the rendered CLAUDE.md
|
|
1916
|
+
* (under `## PR Review Policy`) that tells the `pr-reviewer`
|
|
1917
|
+
* sub-agent which PRs may auto-merge and which must wait for a
|
|
1918
|
+
* human reviewer. Most of the policy is fixed — the path globs that
|
|
1919
|
+
* force human review (`human-required.paths`), the issue types
|
|
1920
|
+
* (`release`, `hotfix`), the size thresholds (10 files / 500
|
|
1921
|
+
* insertions), and the force-auto / force-human label sets — and
|
|
1922
|
+
* does not require per-consumer tuning.
|
|
1923
|
+
*
|
|
1924
|
+
* The one knob exposed today is the **doc-only carve-out** against
|
|
1925
|
+
* the size rule. When the consumer sets
|
|
1926
|
+
* `autoMerge.pathsExemptFromSize`, the rendered policy YAML carries
|
|
1927
|
+
* the override and the precedence walk documents the carve-out so
|
|
1928
|
+
* the reviewer applies it consistently.
|
|
1929
|
+
*
|
|
1930
|
+
* When the whole config is omitted, the bundle ships with the
|
|
1931
|
+
* carve-out enabled and `pathsExemptFromSize: ["docs/**"]` — a
|
|
1932
|
+
* doc-only PR that trips the size threshold is auto-mergeable; any
|
|
1933
|
+
* PR mixing docs and code still falls into `human-required` because
|
|
1934
|
+
* the non-docs path fails the carve-out check.
|
|
1935
|
+
*
|
|
1936
|
+
* Malformed configs — empty / whitespace-only entries in
|
|
1937
|
+
* `pathsExemptFromSize` — fail the build at synth time via
|
|
1938
|
+
* `validatePrReviewPolicyConfig`.
|
|
1939
|
+
*
|
|
1940
|
+
* @see PrReviewAutoMergeConfig
|
|
1941
|
+
* @see ./bundles/pr-review-policy.ts#resolvePrReviewPolicy
|
|
1942
|
+
* @see ./bundles/pr-review-policy.ts#validatePrReviewPolicyConfig
|
|
1943
|
+
*/
|
|
1944
|
+
interface PrReviewPolicyConfig {
|
|
1945
|
+
/**
|
|
1946
|
+
* `auto-merge` half of the policy. Currently exposes a single knob
|
|
1947
|
+
* (`pathsExemptFromSize`) that carves doc-only PRs out of the
|
|
1948
|
+
* size rule.
|
|
1949
|
+
*/
|
|
1950
|
+
readonly autoMerge?: PrReviewAutoMergeConfig;
|
|
1951
|
+
}
|
|
1861
1952
|
/*******************************************************************************
|
|
1862
1953
|
*
|
|
1863
1954
|
* Run Ratio Config
|
|
@@ -2950,6 +3041,47 @@ interface AgentConfigOptions {
|
|
|
2950
3041
|
* ```
|
|
2951
3042
|
*/
|
|
2952
3043
|
readonly skillExtensions?: Readonly<Record<string, string>>;
|
|
3044
|
+
/**
|
|
3045
|
+
* Append additional file-pattern globs to a rule's `filePatterns`
|
|
3046
|
+
* array. Keys are rule names, values are glob strings appended in
|
|
3047
|
+
* order. Mirrors `ruleExtensions` (which appends body content) but
|
|
3048
|
+
* targets the rule's load-trigger paths instead.
|
|
3049
|
+
*
|
|
3050
|
+
* Use this when the bundled defaults don't cover paths that are
|
|
3051
|
+
* meaningful only in **your** repo — for example, paths into
|
|
3052
|
+
* configulator's own bundle source, which only exist when
|
|
3053
|
+
* configulator is a workspace package (not a node_modules dep).
|
|
3054
|
+
*
|
|
3055
|
+
* Semantics:
|
|
3056
|
+
*
|
|
3057
|
+
* - Appends to `filePatterns` for `FILE_PATTERN`-scoped rules.
|
|
3058
|
+
* - **Silently ignored** for `ALWAYS`-scoped rules (those load
|
|
3059
|
+
* everywhere already; adding paths would have no effect and
|
|
3060
|
+
* silently flipping the scope to `FILE_PATTERN` would be
|
|
3061
|
+
* surprising). To re-scope an `ALWAYS` rule to path-loaded, drop
|
|
3062
|
+
* the bundle rule via `excludeRules` and re-add a custom rule
|
|
3063
|
+
* with the desired scope via `rules`.
|
|
3064
|
+
* - Unknown keys (no matching rule in the active bundle set) are
|
|
3065
|
+
* silently ignored, mirroring `ruleExtensions`.
|
|
3066
|
+
*
|
|
3067
|
+
* @example
|
|
3068
|
+
* ```ts
|
|
3069
|
+
* agentConfig: {
|
|
3070
|
+
* additionalRulePaths: {
|
|
3071
|
+
* // codedrifters/packages contains configulator as a workspace
|
|
3072
|
+
* // package, so it can usefully add paths into the bundle source.
|
|
3073
|
+
* 'orchestrator-conventions': [
|
|
3074
|
+
* 'packages/@codedrifters/configulator/src/agent/bundles/orchestrator.ts',
|
|
3075
|
+
* 'packages/@codedrifters/configulator/src/agent/bundles/scope-gate.ts',
|
|
3076
|
+
* ],
|
|
3077
|
+
* 'progress-file-convention': [
|
|
3078
|
+
* 'packages/@codedrifters/configulator/src/agent/bundles/progress-files.ts',
|
|
3079
|
+
* ],
|
|
3080
|
+
* },
|
|
3081
|
+
* }
|
|
3082
|
+
* ```
|
|
3083
|
+
*/
|
|
3084
|
+
readonly additionalRulePaths?: Readonly<Record<string, ReadonlyArray<string>>>;
|
|
2953
3085
|
/**
|
|
2954
3086
|
* Claude Code settings.json configuration.
|
|
2955
3087
|
* Generated to .claude/settings.json (committed, team-shared).
|
|
@@ -3106,6 +3238,30 @@ interface AgentConfigOptions {
|
|
|
3106
3238
|
* @see ./bundles/scope-gate.ts#validateScopeGateConfig
|
|
3107
3239
|
*/
|
|
3108
3240
|
readonly scopeGate?: ScopeGateConfig;
|
|
3241
|
+
/**
|
|
3242
|
+
* PR review policy configuration consumed by the `pr-review`
|
|
3243
|
+
* bundle. Currently exposes a single doc-only carve-out against
|
|
3244
|
+
* the `human-required.size` rule (rule #6 in the precedence
|
|
3245
|
+
* walk) — see `PrReviewAutoMergeConfig.pathsExemptFromSize` for
|
|
3246
|
+
* the full contract.
|
|
3247
|
+
*
|
|
3248
|
+
* When the whole config is omitted, the bundle ships the carve-out
|
|
3249
|
+
* enabled with `pathsExemptFromSize: ["docs/**"]` so a doc-only
|
|
3250
|
+
* PR that exceeds the 500-insertion threshold remains
|
|
3251
|
+
* auto-mergeable. Override the list to exempt additional doc-only
|
|
3252
|
+
* roots (e.g. `docs/research/**`) or pass `[]` to disable the
|
|
3253
|
+
* carve-out entirely.
|
|
3254
|
+
*
|
|
3255
|
+
* Malformed configs — empty / whitespace-only entries in
|
|
3256
|
+
* `pathsExemptFromSize` — fail the build at synth time via
|
|
3257
|
+
* `validatePrReviewPolicyConfig`.
|
|
3258
|
+
*
|
|
3259
|
+
* @see PrReviewPolicyConfig
|
|
3260
|
+
* @see PrReviewAutoMergeConfig
|
|
3261
|
+
* @see ./bundles/pr-review-policy.ts#resolvePrReviewPolicy
|
|
3262
|
+
* @see ./bundles/pr-review-policy.ts#validatePrReviewPolicyConfig
|
|
3263
|
+
*/
|
|
3264
|
+
readonly prReviewPolicy?: PrReviewPolicyConfig;
|
|
3109
3265
|
/**
|
|
3110
3266
|
* Run-ratio configuration consumed by the `orchestrator` bundle.
|
|
3111
3267
|
* Drives the dispatch-to-housekeeping cadence — every `(ratio + 1)`th
|
|
@@ -3710,6 +3866,71 @@ declare const DEFAULT_AGENT_PATHS: ResolvedAgentPaths;
|
|
|
3710
3866
|
*/
|
|
3711
3867
|
declare function resolveAgentPaths(paths?: AgentPathsConfig): ResolvedAgentPaths;
|
|
3712
3868
|
|
|
3869
|
+
/**
|
|
3870
|
+
* Default path globs that exempt a PR from the `human-required.size`
|
|
3871
|
+
* rule. The policy walks every changed path in the PR and skips
|
|
3872
|
+
* rule #6 (size threshold) when **every** path matches at least one
|
|
3873
|
+
* glob in this list. Doc-only PRs routinely exceed the 500-insertion
|
|
3874
|
+
* threshold (large migrations, bulk additions, refresh passes) but
|
|
3875
|
+
* carry no production risk that warrants forcing a human reviewer.
|
|
3876
|
+
*
|
|
3877
|
+
* The default exempts the entire `docs/**` tree — every consumer of
|
|
3878
|
+
* configulator places its Starlight docs site there. Consumers can
|
|
3879
|
+
* extend this list (e.g. add `docs/research/**` if doc-style research
|
|
3880
|
+
* notes live outside the Starlight tree) by passing
|
|
3881
|
+
* `prReviewPolicy.autoMerge.pathsExemptFromSize`.
|
|
3882
|
+
*
|
|
3883
|
+
* @see PrReviewPolicyConfig
|
|
3884
|
+
* @see PrReviewAutoMergeConfig.pathsExemptFromSize
|
|
3885
|
+
*/
|
|
3886
|
+
declare const DEFAULT_PATHS_EXEMPT_FROM_SIZE: ReadonlyArray<string>;
|
|
3887
|
+
/**
|
|
3888
|
+
* Fully-resolved PR review policy. Every field is defaulted so
|
|
3889
|
+
* downstream renderers can reason about a single canonical shape.
|
|
3890
|
+
*
|
|
3891
|
+
* Today the only configurable sub-rule is the doc-only carve-out
|
|
3892
|
+
* against the size threshold (`autoMerge.pathsExemptFromSize`).
|
|
3893
|
+
* Additional knobs for other rules in the policy may be added in
|
|
3894
|
+
* future versions of `PrReviewPolicyConfig`.
|
|
3895
|
+
*/
|
|
3896
|
+
interface ResolvedPrReviewPolicy {
|
|
3897
|
+
readonly autoMerge: ResolvedPrReviewAutoMerge;
|
|
3898
|
+
}
|
|
3899
|
+
/**
|
|
3900
|
+
* Fully-resolved `auto-merge` half of the policy.
|
|
3901
|
+
*
|
|
3902
|
+
* `pathsExemptFromSize` is always populated — the default
|
|
3903
|
+
* (`["docs/**"]`) ships when the consumer omits the option.
|
|
3904
|
+
*/
|
|
3905
|
+
interface ResolvedPrReviewAutoMerge {
|
|
3906
|
+
readonly pathsExemptFromSize: ReadonlyArray<string>;
|
|
3907
|
+
}
|
|
3908
|
+
/**
|
|
3909
|
+
* Resolve a (possibly absent) `PrReviewPolicyConfig` into a canonical
|
|
3910
|
+
* `ResolvedPrReviewPolicy` with every field filled in. Unset fields
|
|
3911
|
+
* cascade from their documented defaults.
|
|
3912
|
+
*
|
|
3913
|
+
* Malformed configs (empty / whitespace-only path entries) throw a
|
|
3914
|
+
* descriptive `Error` — callers should not need to guard against it
|
|
3915
|
+
* at runtime.
|
|
3916
|
+
*/
|
|
3917
|
+
declare function resolvePrReviewPolicy(config?: PrReviewPolicyConfig): ResolvedPrReviewPolicy;
|
|
3918
|
+
/**
|
|
3919
|
+
* Synth-time validation hook. Throws a descriptive `Error` when the
|
|
3920
|
+
* supplied `PrReviewPolicyConfig` is malformed. Called by
|
|
3921
|
+
* `AgentConfig.preSynthesize` before any rendering so a misconfigured
|
|
3922
|
+
* policy fails the build instead of silently shipping broken carve-out
|
|
3923
|
+
* globs. Returns the resolved policy unchanged so callers can write
|
|
3924
|
+
* `const policy = validatePrReviewPolicyConfig(config)` in one line.
|
|
3925
|
+
*
|
|
3926
|
+
* Malformed cases rejected here:
|
|
3927
|
+
*
|
|
3928
|
+
* - `pathsExemptFromSize` entries that are empty or whitespace-only —
|
|
3929
|
+
* such an entry would either silently match nothing or match every
|
|
3930
|
+
* path, both of which are almost certainly a typo.
|
|
3931
|
+
*/
|
|
3932
|
+
declare function validatePrReviewPolicyConfig(config?: PrReviewPolicyConfig): ResolvedPrReviewPolicy;
|
|
3933
|
+
|
|
3713
3934
|
/**
|
|
3714
3935
|
* One row in the rendered agent registry table. Each phased-agent
|
|
3715
3936
|
* bundle that previously shipped its own `<bundle>-workflow` rule
|
|
@@ -3778,26 +3999,6 @@ declare function isSuppressedWorkflowRule(name: string): boolean;
|
|
|
3778
3999
|
* any rule name that is not in the registry's suppression list.
|
|
3779
4000
|
*/
|
|
3780
4001
|
declare function bundleNameForWorkflowRule(ruleName: string): string | undefined;
|
|
3781
|
-
/**
|
|
3782
|
-
* Build the consolidated agent-registry rule for the supplied
|
|
3783
|
-
* resolved bundle list. The helper:
|
|
3784
|
-
*
|
|
3785
|
-
* 1. Filters `AGENT_REGISTRY_ENTRIES` to bundles that are actually
|
|
3786
|
-
* active in the consumer's resolved bundle set (so a consumer
|
|
3787
|
-
* that excludes `bcm-writer` doesn't see a row for it).
|
|
3788
|
-
* 2. Renders one alphabetically-sorted markdown table row per
|
|
3789
|
-
* surviving entry, with skill / agent / bundle / output-path /
|
|
3790
|
-
* purpose columns.
|
|
3791
|
-
* 3. Returns a single ALWAYS-scoped `agent-registry` rule whose
|
|
3792
|
-
* body opens with a 2-3 sentence preamble explaining the
|
|
3793
|
-
* routing model and pointing at `.claude/agents/<name>.md` for
|
|
3794
|
-
* full prompts and the cross-cutting convention rules at the
|
|
3795
|
-
* top of CLAUDE.md.
|
|
3796
|
-
*
|
|
3797
|
-
* Consumers with no phased-agent bundle active receive `undefined`
|
|
3798
|
-
* and the rule is dropped from the resolved set — there is no
|
|
3799
|
-
* routing to summarise.
|
|
3800
|
-
*/
|
|
3801
4002
|
declare function buildAgentRegistryRule(bundles: ReadonlyArray<AgentRuleBundle>, paths: ResolvedAgentPaths): AgentRule | undefined;
|
|
3802
4003
|
|
|
3803
4004
|
/**
|
|
@@ -5136,15 +5337,20 @@ declare const DEFAULT_ISSUE_TEMPLATES_PATH = "docs/src/content/docs/agents/issue
|
|
|
5136
5337
|
* These are the locations the optional lint walks when checking that
|
|
5137
5338
|
* `gh issue create` snippets are **referenced** rather than inlined.
|
|
5138
5339
|
*
|
|
5139
|
-
* The defaults cover the
|
|
5140
|
-
*
|
|
5340
|
+
* The defaults cover the locations bundle-like content lives in a
|
|
5341
|
+
* generic configulator-consuming repo:
|
|
5141
5342
|
*
|
|
5142
|
-
* - `packages/@codedrifters/configulator/src/agent/bundles/**.ts` —
|
|
5143
|
-
* the bundle authoring sites inside configulator itself.
|
|
5144
5343
|
* - `.claude/agents/**.md` / `.claude/skills/**` — agent and skill
|
|
5145
5344
|
* prompts in consuming repos that don't re-export configulator
|
|
5146
5345
|
* bundles.
|
|
5147
5346
|
*
|
|
5347
|
+
* Repos that **also** host configulator's own bundle source as a
|
|
5348
|
+
* workspace package (only `codedrifters/packages` itself) should
|
|
5349
|
+
* append `packages/@codedrifters/configulator/src/agent/bundles/**.ts`
|
|
5350
|
+
* via `IssueTemplatesConfig.bundlePathPatterns` to lint those bundle
|
|
5351
|
+
* sources too. The default omits that pattern because it is dead
|
|
5352
|
+
* weight (matches nothing) in any other consumer.
|
|
5353
|
+
*
|
|
5148
5354
|
* Consumers can replace the list outright via `bundlePathPatterns`
|
|
5149
5355
|
* when their agent sources live elsewhere.
|
|
5150
5356
|
*
|
|
@@ -5443,6 +5649,28 @@ declare function renderProgressFilesBundleHook(pf: ResolvedProgressFiles, bundle
|
|
|
5443
5649
|
* domain-specific content.
|
|
5444
5650
|
*
|
|
5445
5651
|
******************************************************************************/
|
|
5652
|
+
/**
|
|
5653
|
+
* Build the `pr-review` bundle with the supplied (possibly absent)
|
|
5654
|
+
* PR review policy override.
|
|
5655
|
+
*
|
|
5656
|
+
* The bundle is mostly static — the agent prompt, the feedback-
|
|
5657
|
+
* protocol prose, the skills, the sub-agent, and the labels are all
|
|
5658
|
+
* fixed across consumers. The one dynamic surface is the rendered
|
|
5659
|
+
* `pr-review-policy` rule's YAML block and precedence walk, which
|
|
5660
|
+
* reflect the resolved `pathsExemptFromSize` carve-out so consumers
|
|
5661
|
+
* tuning the doc-only carve-out see their override land in the
|
|
5662
|
+
* rendered CLAUDE.md.
|
|
5663
|
+
*
|
|
5664
|
+
* When `policy` is omitted, the bundle ships with the documented
|
|
5665
|
+
* defaults baked in (`pathsExemptFromSize: ["docs/**"]`).
|
|
5666
|
+
*/
|
|
5667
|
+
declare function buildPrReviewBundle(policy?: ResolvedPrReviewPolicy): AgentRuleBundle;
|
|
5668
|
+
/**
|
|
5669
|
+
* `pr-review` bundle built with the default policy. Preserved for
|
|
5670
|
+
* backward compatibility with tests and consumers that import the
|
|
5671
|
+
* const directly. Prefer `buildPrReviewBundle(policy)` when consumer
|
|
5672
|
+
* overrides are in scope.
|
|
5673
|
+
*/
|
|
5446
5674
|
declare const prReviewBundle: AgentRuleBundle;
|
|
5447
5675
|
|
|
5448
5676
|
/**
|
|
@@ -5865,24 +6093,6 @@ declare function renderSkillEvalsBundleHook(se: ResolvedSkillEvals, skillLabel:
|
|
|
5865
6093
|
*/
|
|
5866
6094
|
declare function renderSkillEvalsRunnerScript(se: ResolvedSkillEvals): string;
|
|
5867
6095
|
|
|
5868
|
-
/**
|
|
5869
|
-
* Render the body for the `stub-index-convention` rule shipped by the
|
|
5870
|
-
* `base` bundle.
|
|
5871
|
-
*
|
|
5872
|
-
* The rule documents the contract every agent follows when creating or
|
|
5873
|
-
* updating an `index.md` (or `README.md`) section page under a Starlight
|
|
5874
|
-
* docs root: a contextual summary plus a grouped, linked listing of the
|
|
5875
|
-
* directory's children, and **no** body `# Heading` (Starlight already
|
|
5876
|
-
* renders the frontmatter `title:` as the page H1 — see the no-body-H1
|
|
5877
|
-
* contract documented for skill templates and inline agent templates).
|
|
5878
|
-
*
|
|
5879
|
-
* The convention has no configurable surface — the contract is fixed
|
|
5880
|
-
* and the same for every consuming project. The path globs the rule
|
|
5881
|
-
* applies to are quoted directly from the `shared-editing-safety` rule
|
|
5882
|
-
* so the two contracts never drift.
|
|
5883
|
-
*/
|
|
5884
|
-
declare function renderStubIndexConventionRuleContent(): string;
|
|
5885
|
-
|
|
5886
6096
|
/**
|
|
5887
6097
|
* Default master switch for the temporal-framing convention. When no
|
|
5888
6098
|
* config is supplied the convention ships **enabled** so every
|
|
@@ -6279,7 +6489,7 @@ declare const vitestBundle: AgentRuleBundle;
|
|
|
6279
6489
|
* Bundles that do not read any agent path (typescript, jest,
|
|
6280
6490
|
* pnpm, etc.) stay as const exports and are referenced unchanged.
|
|
6281
6491
|
*/
|
|
6282
|
-
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel
|
|
6492
|
+
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel>, prReviewPolicy?: ResolvedPrReviewPolicy): ReadonlyArray<AgentRuleBundle>;
|
|
6283
6493
|
/**
|
|
6284
6494
|
* Built-in rule bundles assembled with the default agent paths.
|
|
6285
6495
|
* Preserved for backward compatibility with tests and consumers
|
|
@@ -12528,4 +12738,4 @@ declare function pinPnpmActionSetup(project: Project$1): void;
|
|
|
12528
12738
|
*/
|
|
12529
12739
|
declare function pinSetupNodeVersion(project: Project$1): void;
|
|
12530
12740
|
|
|
12531
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, type ActivateBranchNameEnvVarOptions, type AddStorybookOptions, type AgentCommand, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRegistryEntry, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffCheckOptions, type ApiDiffFinding, type ApiDiffResult, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApiSurfaceEntry, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, CDK_BOOTSTRAP_DEFAULTS_BY_STAGE, CDK_DEPLOY_DEFAULTS_BY_STAGE, CDK_DEPLOY_METHOD, CDK_DESTROY_DEFAULTS_BY_STAGE, CDK_DIFF_DEFAULTS_BY_STAGE, CDK_DIFF_METHOD, CDK_GC_ACTION, CDK_GC_TYPE, CDK_INIT_LANGUAGE, CDK_INIT_TEMPLATE, CDK_PROGRESS, CDK_REQUIRE_APPROVAL, CDK_SYNTH_DEFAULTS_BY_STAGE, CDK_WATCH_DEFAULTS_BY_STAGE, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CdkAcknowledgeOptions, type CdkBootstrapOptions, CdkCli, type CdkCliOptions, type CdkContextOptions, type CdkDeployMethod, type CdkDeployOptions, type CdkDestroyOptions, type CdkDiffMethod, type CdkDiffOptions, type CdkDocsOptions, type CdkDoctorOptions, type CdkDriftOptions, type CdkFlagsOptions, type CdkGcAction, type CdkGcOptions, type CdkGcType, type CdkGlobalOptions, type CdkImportOptions, type CdkInitLanguage, type CdkInitOptions, type CdkInitTemplate, type CdkListOptions, type CdkMetadataOptions, type CdkMigrateOptions, type CdkNoticesOptions, type CdkOrphanOptions, type CdkProgress, type CdkPublishAssetsOptions, type CdkRefactorOptions, type CdkRequireApproval, type CdkRollbackOptions, type CdkSynthOptions, type CdkTargetOverrides, type CdkWatchOptions, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudeMdConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CompileFencedSamplesOptions, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PRIORITY_LABELS, DEFAULT_PRODUCT_CONTEXT_PATH, DEFAULT_PROGRESS_FILES_ENABLED, DEFAULT_PROGRESS_FILES_FILENAME_PATTERN, DEFAULT_PROGRESS_FILES_FORMAT, DEFAULT_PROGRESS_FILES_STALE_AFTER_HOURS, DEFAULT_PROGRESS_FILES_STATE_DIR, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_SAMPLE_COMPILER_OPTIONS, DEFAULT_SCHEDULED_TASKS_ROOT, DEFAULT_SCHEDULED_TASK_ENTRIES, DEFAULT_SHARED_EDITING_CONFLICT_STRATEGY, DEFAULT_SHARED_EDITING_EMIT_HELPER, DEFAULT_SHARED_EDITING_ENABLED, DEFAULT_SHARED_EDITING_VERIFY_COMMIT, DEFAULT_SHARED_INDEX_PATHS, DEFAULT_SKILL_EVALS_EMIT_RUNNER, DEFAULT_SKILL_EVALS_ENABLED, DEFAULT_SKILL_EVALS_SKILLS_ROOT, DEFAULT_SOURCES_THRESHOLDS, DEFAULT_STATE_FILE_PATH, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TEMPORAL_FRAMING_CADENCES, DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER, DEFAULT_TEMPORAL_FRAMING_ENABLED, DEFAULT_TEMPORAL_FRAMING_PATHS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, type ReactViteSiteProjectOptions, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedTemporalFraming, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateBundleOverride, type ScopeGateConfig, type ScopeGateThresholds, type SharedEditingConfig, type SkillEvalsConfig, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, TEMPORAL_FRAMING_CATEGORY_VALUES, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, includeHiddenFilesInBuildArtifact, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, mergeCdkOptions, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCdkAcknowledge, renderCdkBootstrap, renderCdkContext, renderCdkDeploy, renderCdkDestroy, renderCdkDiff, renderCdkDocs, renderCdkDoctor, renderCdkDrift, renderCdkFlags, renderCdkGc, renderCdkImport, renderCdkInit, renderCdkList, renderCdkMetadata, renderCdkMigrate, renderCdkNotices, renderCdkOrphan, renderCdkPublishAssets, renderCdkRefactor, renderCdkRollback, renderCdkSynth, renderCdkWatch, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStubIndexConventionRuleContent, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|
|
12741
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, type ActivateBranchNameEnvVarOptions, type AddStorybookOptions, type AgentCommand, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRegistryEntry, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffCheckOptions, type ApiDiffFinding, type ApiDiffResult, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApiSurfaceEntry, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, CDK_BOOTSTRAP_DEFAULTS_BY_STAGE, CDK_DEPLOY_DEFAULTS_BY_STAGE, CDK_DEPLOY_METHOD, CDK_DESTROY_DEFAULTS_BY_STAGE, CDK_DIFF_DEFAULTS_BY_STAGE, CDK_DIFF_METHOD, CDK_GC_ACTION, CDK_GC_TYPE, CDK_INIT_LANGUAGE, CDK_INIT_TEMPLATE, CDK_PROGRESS, CDK_REQUIRE_APPROVAL, CDK_SYNTH_DEFAULTS_BY_STAGE, CDK_WATCH_DEFAULTS_BY_STAGE, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CdkAcknowledgeOptions, type CdkBootstrapOptions, CdkCli, type CdkCliOptions, type CdkContextOptions, type CdkDeployMethod, type CdkDeployOptions, type CdkDestroyOptions, type CdkDiffMethod, type CdkDiffOptions, type CdkDocsOptions, type CdkDoctorOptions, type CdkDriftOptions, type CdkFlagsOptions, type CdkGcAction, type CdkGcOptions, type CdkGcType, type CdkGlobalOptions, type CdkImportOptions, type CdkInitLanguage, type CdkInitOptions, type CdkInitTemplate, type CdkListOptions, type CdkMetadataOptions, type CdkMigrateOptions, type CdkNoticesOptions, type CdkOrphanOptions, type CdkProgress, type CdkPublishAssetsOptions, type CdkRefactorOptions, type CdkRequireApproval, type CdkRollbackOptions, type CdkSynthOptions, type CdkTargetOverrides, type CdkWatchOptions, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudeMdConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CompileFencedSamplesOptions, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PATHS_EXEMPT_FROM_SIZE, DEFAULT_PRIORITY_LABELS, DEFAULT_PRODUCT_CONTEXT_PATH, DEFAULT_PROGRESS_FILES_ENABLED, DEFAULT_PROGRESS_FILES_FILENAME_PATTERN, DEFAULT_PROGRESS_FILES_FORMAT, DEFAULT_PROGRESS_FILES_STALE_AFTER_HOURS, DEFAULT_PROGRESS_FILES_STATE_DIR, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_SAMPLE_COMPILER_OPTIONS, DEFAULT_SCHEDULED_TASKS_ROOT, DEFAULT_SCHEDULED_TASK_ENTRIES, DEFAULT_SHARED_EDITING_CONFLICT_STRATEGY, DEFAULT_SHARED_EDITING_EMIT_HELPER, DEFAULT_SHARED_EDITING_ENABLED, DEFAULT_SHARED_EDITING_VERIFY_COMMIT, DEFAULT_SHARED_INDEX_PATHS, DEFAULT_SKILL_EVALS_EMIT_RUNNER, DEFAULT_SKILL_EVALS_ENABLED, DEFAULT_SKILL_EVALS_SKILLS_ROOT, DEFAULT_SOURCES_THRESHOLDS, DEFAULT_STATE_FILE_PATH, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TEMPORAL_FRAMING_CADENCES, DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER, DEFAULT_TEMPORAL_FRAMING_ENABLED, DEFAULT_TEMPORAL_FRAMING_PATHS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PrReviewAutoMergeConfig, type PrReviewPolicyConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, type ReactViteSiteProjectOptions, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedPrReviewAutoMerge, type ResolvedPrReviewPolicy, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedTemporalFraming, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateBundleOverride, type ScopeGateConfig, type ScopeGateThresholds, type SharedEditingConfig, type SkillEvalsConfig, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, TEMPORAL_FRAMING_CATEGORY_VALUES, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildPrReviewBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, includeHiddenFilesInBuildArtifact, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, mergeCdkOptions, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCdkAcknowledge, renderCdkBootstrap, renderCdkContext, renderCdkDeploy, renderCdkDestroy, renderCdkDiff, renderCdkDocs, renderCdkDoctor, renderCdkDrift, renderCdkFlags, renderCdkGc, renderCdkImport, renderCdkInit, renderCdkList, renderCdkMetadata, renderCdkMigrate, renderCdkNotices, renderCdkOrphan, renderCdkPublishAssets, renderCdkRefactor, renderCdkRollback, renderCdkSynth, renderCdkWatch, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolvePrReviewPolicy, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|