@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.ts
CHANGED
|
@@ -1907,6 +1907,97 @@ interface ScopeGateBundleOverride {
|
|
|
1907
1907
|
readonly acceptanceCriteria?: ScopeGateThresholds;
|
|
1908
1908
|
readonly sources?: ScopeGateThresholds;
|
|
1909
1909
|
}
|
|
1910
|
+
/*******************************************************************************
|
|
1911
|
+
*
|
|
1912
|
+
* PR Review Policy Config
|
|
1913
|
+
*
|
|
1914
|
+
******************************************************************************/
|
|
1915
|
+
/**
|
|
1916
|
+
* `auto-merge` half of the PR review policy. Today the only
|
|
1917
|
+
* configurable knob is `pathsExemptFromSize` — a list of path globs
|
|
1918
|
+
* that exempt a PR from the `human-required.size` rule (rule #6 in
|
|
1919
|
+
* the precedence walk).
|
|
1920
|
+
*
|
|
1921
|
+
* The reviewer walks every changed path in the PR and skips rule #6
|
|
1922
|
+
* when **every** path matches at least one glob in this list.
|
|
1923
|
+
* Doc-only PRs routinely exceed the 500-insertion threshold (large
|
|
1924
|
+
* migrations, bulk additions, refresh passes) but carry no production
|
|
1925
|
+
* risk that warrants forcing a human reviewer, so the default
|
|
1926
|
+
* carve-out exempts `docs/**` out of the box.
|
|
1927
|
+
*
|
|
1928
|
+
* @see PrReviewPolicyConfig
|
|
1929
|
+
* @see ./bundles/pr-review-policy.ts#DEFAULT_PATHS_EXEMPT_FROM_SIZE
|
|
1930
|
+
*/
|
|
1931
|
+
interface PrReviewAutoMergeConfig {
|
|
1932
|
+
/**
|
|
1933
|
+
* Path globs that exempt a PR from the `human-required.size` rule.
|
|
1934
|
+
* When **every** changed path in the PR matches at least one glob
|
|
1935
|
+
* in this list, the reviewer skips rule #6 (size threshold) and
|
|
1936
|
+
* continues with the rest of the precedence walk.
|
|
1937
|
+
*
|
|
1938
|
+
* Defaults to `["docs/**"]` — the entire Starlight docs tree every
|
|
1939
|
+
* configulator consumer ships. Override with a custom list to
|
|
1940
|
+
* exempt additional doc-only roots (e.g. `docs/research/**` for
|
|
1941
|
+
* research notes that live outside the Starlight tree):
|
|
1942
|
+
*
|
|
1943
|
+
* ```typescript
|
|
1944
|
+
* agentConfig: {
|
|
1945
|
+
* prReviewPolicy: {
|
|
1946
|
+
* autoMerge: {
|
|
1947
|
+
* pathsExemptFromSize: ["docs/**", "docs/research/**"],
|
|
1948
|
+
* },
|
|
1949
|
+
* },
|
|
1950
|
+
* }
|
|
1951
|
+
* ```
|
|
1952
|
+
*
|
|
1953
|
+
* Pass `[]` to disable the carve-out entirely and apply the size
|
|
1954
|
+
* rule to every PR regardless of path. Pass non-empty entries only
|
|
1955
|
+
* — empty / whitespace-only strings fail synth.
|
|
1956
|
+
*
|
|
1957
|
+
* @default ["docs/**"]
|
|
1958
|
+
*/
|
|
1959
|
+
readonly pathsExemptFromSize?: ReadonlyArray<string>;
|
|
1960
|
+
}
|
|
1961
|
+
/**
|
|
1962
|
+
* PR review policy configuration consumed by the `pr-review` bundle.
|
|
1963
|
+
*
|
|
1964
|
+
* The bundle ships a declarative policy in the rendered CLAUDE.md
|
|
1965
|
+
* (under `## PR Review Policy`) that tells the `pr-reviewer`
|
|
1966
|
+
* sub-agent which PRs may auto-merge and which must wait for a
|
|
1967
|
+
* human reviewer. Most of the policy is fixed — the path globs that
|
|
1968
|
+
* force human review (`human-required.paths`), the issue types
|
|
1969
|
+
* (`release`, `hotfix`), the size thresholds (10 files / 500
|
|
1970
|
+
* insertions), and the force-auto / force-human label sets — and
|
|
1971
|
+
* does not require per-consumer tuning.
|
|
1972
|
+
*
|
|
1973
|
+
* The one knob exposed today is the **doc-only carve-out** against
|
|
1974
|
+
* the size rule. When the consumer sets
|
|
1975
|
+
* `autoMerge.pathsExemptFromSize`, the rendered policy YAML carries
|
|
1976
|
+
* the override and the precedence walk documents the carve-out so
|
|
1977
|
+
* the reviewer applies it consistently.
|
|
1978
|
+
*
|
|
1979
|
+
* When the whole config is omitted, the bundle ships with the
|
|
1980
|
+
* carve-out enabled and `pathsExemptFromSize: ["docs/**"]` — a
|
|
1981
|
+
* doc-only PR that trips the size threshold is auto-mergeable; any
|
|
1982
|
+
* PR mixing docs and code still falls into `human-required` because
|
|
1983
|
+
* the non-docs path fails the carve-out check.
|
|
1984
|
+
*
|
|
1985
|
+
* Malformed configs — empty / whitespace-only entries in
|
|
1986
|
+
* `pathsExemptFromSize` — fail the build at synth time via
|
|
1987
|
+
* `validatePrReviewPolicyConfig`.
|
|
1988
|
+
*
|
|
1989
|
+
* @see PrReviewAutoMergeConfig
|
|
1990
|
+
* @see ./bundles/pr-review-policy.ts#resolvePrReviewPolicy
|
|
1991
|
+
* @see ./bundles/pr-review-policy.ts#validatePrReviewPolicyConfig
|
|
1992
|
+
*/
|
|
1993
|
+
interface PrReviewPolicyConfig {
|
|
1994
|
+
/**
|
|
1995
|
+
* `auto-merge` half of the policy. Currently exposes a single knob
|
|
1996
|
+
* (`pathsExemptFromSize`) that carves doc-only PRs out of the
|
|
1997
|
+
* size rule.
|
|
1998
|
+
*/
|
|
1999
|
+
readonly autoMerge?: PrReviewAutoMergeConfig;
|
|
2000
|
+
}
|
|
1910
2001
|
/*******************************************************************************
|
|
1911
2002
|
*
|
|
1912
2003
|
* Run Ratio Config
|
|
@@ -2999,6 +3090,47 @@ interface AgentConfigOptions {
|
|
|
2999
3090
|
* ```
|
|
3000
3091
|
*/
|
|
3001
3092
|
readonly skillExtensions?: Readonly<Record<string, string>>;
|
|
3093
|
+
/**
|
|
3094
|
+
* Append additional file-pattern globs to a rule's `filePatterns`
|
|
3095
|
+
* array. Keys are rule names, values are glob strings appended in
|
|
3096
|
+
* order. Mirrors `ruleExtensions` (which appends body content) but
|
|
3097
|
+
* targets the rule's load-trigger paths instead.
|
|
3098
|
+
*
|
|
3099
|
+
* Use this when the bundled defaults don't cover paths that are
|
|
3100
|
+
* meaningful only in **your** repo — for example, paths into
|
|
3101
|
+
* configulator's own bundle source, which only exist when
|
|
3102
|
+
* configulator is a workspace package (not a node_modules dep).
|
|
3103
|
+
*
|
|
3104
|
+
* Semantics:
|
|
3105
|
+
*
|
|
3106
|
+
* - Appends to `filePatterns` for `FILE_PATTERN`-scoped rules.
|
|
3107
|
+
* - **Silently ignored** for `ALWAYS`-scoped rules (those load
|
|
3108
|
+
* everywhere already; adding paths would have no effect and
|
|
3109
|
+
* silently flipping the scope to `FILE_PATTERN` would be
|
|
3110
|
+
* surprising). To re-scope an `ALWAYS` rule to path-loaded, drop
|
|
3111
|
+
* the bundle rule via `excludeRules` and re-add a custom rule
|
|
3112
|
+
* with the desired scope via `rules`.
|
|
3113
|
+
* - Unknown keys (no matching rule in the active bundle set) are
|
|
3114
|
+
* silently ignored, mirroring `ruleExtensions`.
|
|
3115
|
+
*
|
|
3116
|
+
* @example
|
|
3117
|
+
* ```ts
|
|
3118
|
+
* agentConfig: {
|
|
3119
|
+
* additionalRulePaths: {
|
|
3120
|
+
* // codedrifters/packages contains configulator as a workspace
|
|
3121
|
+
* // package, so it can usefully add paths into the bundle source.
|
|
3122
|
+
* 'orchestrator-conventions': [
|
|
3123
|
+
* 'packages/@codedrifters/configulator/src/agent/bundles/orchestrator.ts',
|
|
3124
|
+
* 'packages/@codedrifters/configulator/src/agent/bundles/scope-gate.ts',
|
|
3125
|
+
* ],
|
|
3126
|
+
* 'progress-file-convention': [
|
|
3127
|
+
* 'packages/@codedrifters/configulator/src/agent/bundles/progress-files.ts',
|
|
3128
|
+
* ],
|
|
3129
|
+
* },
|
|
3130
|
+
* }
|
|
3131
|
+
* ```
|
|
3132
|
+
*/
|
|
3133
|
+
readonly additionalRulePaths?: Readonly<Record<string, ReadonlyArray<string>>>;
|
|
3002
3134
|
/**
|
|
3003
3135
|
* Claude Code settings.json configuration.
|
|
3004
3136
|
* Generated to .claude/settings.json (committed, team-shared).
|
|
@@ -3155,6 +3287,30 @@ interface AgentConfigOptions {
|
|
|
3155
3287
|
* @see ./bundles/scope-gate.ts#validateScopeGateConfig
|
|
3156
3288
|
*/
|
|
3157
3289
|
readonly scopeGate?: ScopeGateConfig;
|
|
3290
|
+
/**
|
|
3291
|
+
* PR review policy configuration consumed by the `pr-review`
|
|
3292
|
+
* bundle. Currently exposes a single doc-only carve-out against
|
|
3293
|
+
* the `human-required.size` rule (rule #6 in the precedence
|
|
3294
|
+
* walk) — see `PrReviewAutoMergeConfig.pathsExemptFromSize` for
|
|
3295
|
+
* the full contract.
|
|
3296
|
+
*
|
|
3297
|
+
* When the whole config is omitted, the bundle ships the carve-out
|
|
3298
|
+
* enabled with `pathsExemptFromSize: ["docs/**"]` so a doc-only
|
|
3299
|
+
* PR that exceeds the 500-insertion threshold remains
|
|
3300
|
+
* auto-mergeable. Override the list to exempt additional doc-only
|
|
3301
|
+
* roots (e.g. `docs/research/**`) or pass `[]` to disable the
|
|
3302
|
+
* carve-out entirely.
|
|
3303
|
+
*
|
|
3304
|
+
* Malformed configs — empty / whitespace-only entries in
|
|
3305
|
+
* `pathsExemptFromSize` — fail the build at synth time via
|
|
3306
|
+
* `validatePrReviewPolicyConfig`.
|
|
3307
|
+
*
|
|
3308
|
+
* @see PrReviewPolicyConfig
|
|
3309
|
+
* @see PrReviewAutoMergeConfig
|
|
3310
|
+
* @see ./bundles/pr-review-policy.ts#resolvePrReviewPolicy
|
|
3311
|
+
* @see ./bundles/pr-review-policy.ts#validatePrReviewPolicyConfig
|
|
3312
|
+
*/
|
|
3313
|
+
readonly prReviewPolicy?: PrReviewPolicyConfig;
|
|
3158
3314
|
/**
|
|
3159
3315
|
* Run-ratio configuration consumed by the `orchestrator` bundle.
|
|
3160
3316
|
* Drives the dispatch-to-housekeeping cadence — every `(ratio + 1)`th
|
|
@@ -3759,6 +3915,71 @@ declare const DEFAULT_AGENT_PATHS: ResolvedAgentPaths;
|
|
|
3759
3915
|
*/
|
|
3760
3916
|
declare function resolveAgentPaths(paths?: AgentPathsConfig): ResolvedAgentPaths;
|
|
3761
3917
|
|
|
3918
|
+
/**
|
|
3919
|
+
* Default path globs that exempt a PR from the `human-required.size`
|
|
3920
|
+
* rule. The policy walks every changed path in the PR and skips
|
|
3921
|
+
* rule #6 (size threshold) when **every** path matches at least one
|
|
3922
|
+
* glob in this list. Doc-only PRs routinely exceed the 500-insertion
|
|
3923
|
+
* threshold (large migrations, bulk additions, refresh passes) but
|
|
3924
|
+
* carry no production risk that warrants forcing a human reviewer.
|
|
3925
|
+
*
|
|
3926
|
+
* The default exempts the entire `docs/**` tree — every consumer of
|
|
3927
|
+
* configulator places its Starlight docs site there. Consumers can
|
|
3928
|
+
* extend this list (e.g. add `docs/research/**` if doc-style research
|
|
3929
|
+
* notes live outside the Starlight tree) by passing
|
|
3930
|
+
* `prReviewPolicy.autoMerge.pathsExemptFromSize`.
|
|
3931
|
+
*
|
|
3932
|
+
* @see PrReviewPolicyConfig
|
|
3933
|
+
* @see PrReviewAutoMergeConfig.pathsExemptFromSize
|
|
3934
|
+
*/
|
|
3935
|
+
declare const DEFAULT_PATHS_EXEMPT_FROM_SIZE: ReadonlyArray<string>;
|
|
3936
|
+
/**
|
|
3937
|
+
* Fully-resolved PR review policy. Every field is defaulted so
|
|
3938
|
+
* downstream renderers can reason about a single canonical shape.
|
|
3939
|
+
*
|
|
3940
|
+
* Today the only configurable sub-rule is the doc-only carve-out
|
|
3941
|
+
* against the size threshold (`autoMerge.pathsExemptFromSize`).
|
|
3942
|
+
* Additional knobs for other rules in the policy may be added in
|
|
3943
|
+
* future versions of `PrReviewPolicyConfig`.
|
|
3944
|
+
*/
|
|
3945
|
+
interface ResolvedPrReviewPolicy {
|
|
3946
|
+
readonly autoMerge: ResolvedPrReviewAutoMerge;
|
|
3947
|
+
}
|
|
3948
|
+
/**
|
|
3949
|
+
* Fully-resolved `auto-merge` half of the policy.
|
|
3950
|
+
*
|
|
3951
|
+
* `pathsExemptFromSize` is always populated — the default
|
|
3952
|
+
* (`["docs/**"]`) ships when the consumer omits the option.
|
|
3953
|
+
*/
|
|
3954
|
+
interface ResolvedPrReviewAutoMerge {
|
|
3955
|
+
readonly pathsExemptFromSize: ReadonlyArray<string>;
|
|
3956
|
+
}
|
|
3957
|
+
/**
|
|
3958
|
+
* Resolve a (possibly absent) `PrReviewPolicyConfig` into a canonical
|
|
3959
|
+
* `ResolvedPrReviewPolicy` with every field filled in. Unset fields
|
|
3960
|
+
* cascade from their documented defaults.
|
|
3961
|
+
*
|
|
3962
|
+
* Malformed configs (empty / whitespace-only path entries) throw a
|
|
3963
|
+
* descriptive `Error` — callers should not need to guard against it
|
|
3964
|
+
* at runtime.
|
|
3965
|
+
*/
|
|
3966
|
+
declare function resolvePrReviewPolicy(config?: PrReviewPolicyConfig): ResolvedPrReviewPolicy;
|
|
3967
|
+
/**
|
|
3968
|
+
* Synth-time validation hook. Throws a descriptive `Error` when the
|
|
3969
|
+
* supplied `PrReviewPolicyConfig` is malformed. Called by
|
|
3970
|
+
* `AgentConfig.preSynthesize` before any rendering so a misconfigured
|
|
3971
|
+
* policy fails the build instead of silently shipping broken carve-out
|
|
3972
|
+
* globs. Returns the resolved policy unchanged so callers can write
|
|
3973
|
+
* `const policy = validatePrReviewPolicyConfig(config)` in one line.
|
|
3974
|
+
*
|
|
3975
|
+
* Malformed cases rejected here:
|
|
3976
|
+
*
|
|
3977
|
+
* - `pathsExemptFromSize` entries that are empty or whitespace-only —
|
|
3978
|
+
* such an entry would either silently match nothing or match every
|
|
3979
|
+
* path, both of which are almost certainly a typo.
|
|
3980
|
+
*/
|
|
3981
|
+
declare function validatePrReviewPolicyConfig(config?: PrReviewPolicyConfig): ResolvedPrReviewPolicy;
|
|
3982
|
+
|
|
3762
3983
|
/**
|
|
3763
3984
|
* One row in the rendered agent registry table. Each phased-agent
|
|
3764
3985
|
* bundle that previously shipped its own `<bundle>-workflow` rule
|
|
@@ -3827,26 +4048,6 @@ declare function isSuppressedWorkflowRule(name: string): boolean;
|
|
|
3827
4048
|
* any rule name that is not in the registry's suppression list.
|
|
3828
4049
|
*/
|
|
3829
4050
|
declare function bundleNameForWorkflowRule(ruleName: string): string | undefined;
|
|
3830
|
-
/**
|
|
3831
|
-
* Build the consolidated agent-registry rule for the supplied
|
|
3832
|
-
* resolved bundle list. The helper:
|
|
3833
|
-
*
|
|
3834
|
-
* 1. Filters `AGENT_REGISTRY_ENTRIES` to bundles that are actually
|
|
3835
|
-
* active in the consumer's resolved bundle set (so a consumer
|
|
3836
|
-
* that excludes `bcm-writer` doesn't see a row for it).
|
|
3837
|
-
* 2. Renders one alphabetically-sorted markdown table row per
|
|
3838
|
-
* surviving entry, with skill / agent / bundle / output-path /
|
|
3839
|
-
* purpose columns.
|
|
3840
|
-
* 3. Returns a single ALWAYS-scoped `agent-registry` rule whose
|
|
3841
|
-
* body opens with a 2-3 sentence preamble explaining the
|
|
3842
|
-
* routing model and pointing at `.claude/agents/<name>.md` for
|
|
3843
|
-
* full prompts and the cross-cutting convention rules at the
|
|
3844
|
-
* top of CLAUDE.md.
|
|
3845
|
-
*
|
|
3846
|
-
* Consumers with no phased-agent bundle active receive `undefined`
|
|
3847
|
-
* and the rule is dropped from the resolved set — there is no
|
|
3848
|
-
* routing to summarise.
|
|
3849
|
-
*/
|
|
3850
4051
|
declare function buildAgentRegistryRule(bundles: ReadonlyArray<AgentRuleBundle>, paths: ResolvedAgentPaths): AgentRule | undefined;
|
|
3851
4052
|
|
|
3852
4053
|
/**
|
|
@@ -5185,15 +5386,20 @@ declare const DEFAULT_ISSUE_TEMPLATES_PATH = "docs/src/content/docs/agents/issue
|
|
|
5185
5386
|
* These are the locations the optional lint walks when checking that
|
|
5186
5387
|
* `gh issue create` snippets are **referenced** rather than inlined.
|
|
5187
5388
|
*
|
|
5188
|
-
* The defaults cover the
|
|
5189
|
-
*
|
|
5389
|
+
* The defaults cover the locations bundle-like content lives in a
|
|
5390
|
+
* generic configulator-consuming repo:
|
|
5190
5391
|
*
|
|
5191
|
-
* - `packages/@codedrifters/configulator/src/agent/bundles/**.ts` —
|
|
5192
|
-
* the bundle authoring sites inside configulator itself.
|
|
5193
5392
|
* - `.claude/agents/**.md` / `.claude/skills/**` — agent and skill
|
|
5194
5393
|
* prompts in consuming repos that don't re-export configulator
|
|
5195
5394
|
* bundles.
|
|
5196
5395
|
*
|
|
5396
|
+
* Repos that **also** host configulator's own bundle source as a
|
|
5397
|
+
* workspace package (only `codedrifters/packages` itself) should
|
|
5398
|
+
* append `packages/@codedrifters/configulator/src/agent/bundles/**.ts`
|
|
5399
|
+
* via `IssueTemplatesConfig.bundlePathPatterns` to lint those bundle
|
|
5400
|
+
* sources too. The default omits that pattern because it is dead
|
|
5401
|
+
* weight (matches nothing) in any other consumer.
|
|
5402
|
+
*
|
|
5197
5403
|
* Consumers can replace the list outright via `bundlePathPatterns`
|
|
5198
5404
|
* when their agent sources live elsewhere.
|
|
5199
5405
|
*
|
|
@@ -5492,6 +5698,28 @@ declare function renderProgressFilesBundleHook(pf: ResolvedProgressFiles, bundle
|
|
|
5492
5698
|
* domain-specific content.
|
|
5493
5699
|
*
|
|
5494
5700
|
******************************************************************************/
|
|
5701
|
+
/**
|
|
5702
|
+
* Build the `pr-review` bundle with the supplied (possibly absent)
|
|
5703
|
+
* PR review policy override.
|
|
5704
|
+
*
|
|
5705
|
+
* The bundle is mostly static — the agent prompt, the feedback-
|
|
5706
|
+
* protocol prose, the skills, the sub-agent, and the labels are all
|
|
5707
|
+
* fixed across consumers. The one dynamic surface is the rendered
|
|
5708
|
+
* `pr-review-policy` rule's YAML block and precedence walk, which
|
|
5709
|
+
* reflect the resolved `pathsExemptFromSize` carve-out so consumers
|
|
5710
|
+
* tuning the doc-only carve-out see their override land in the
|
|
5711
|
+
* rendered CLAUDE.md.
|
|
5712
|
+
*
|
|
5713
|
+
* When `policy` is omitted, the bundle ships with the documented
|
|
5714
|
+
* defaults baked in (`pathsExemptFromSize: ["docs/**"]`).
|
|
5715
|
+
*/
|
|
5716
|
+
declare function buildPrReviewBundle(policy?: ResolvedPrReviewPolicy): AgentRuleBundle;
|
|
5717
|
+
/**
|
|
5718
|
+
* `pr-review` bundle built with the default policy. Preserved for
|
|
5719
|
+
* backward compatibility with tests and consumers that import the
|
|
5720
|
+
* const directly. Prefer `buildPrReviewBundle(policy)` when consumer
|
|
5721
|
+
* overrides are in scope.
|
|
5722
|
+
*/
|
|
5495
5723
|
declare const prReviewBundle: AgentRuleBundle;
|
|
5496
5724
|
|
|
5497
5725
|
/**
|
|
@@ -5914,24 +6142,6 @@ declare function renderSkillEvalsBundleHook(se: ResolvedSkillEvals, skillLabel:
|
|
|
5914
6142
|
*/
|
|
5915
6143
|
declare function renderSkillEvalsRunnerScript(se: ResolvedSkillEvals): string;
|
|
5916
6144
|
|
|
5917
|
-
/**
|
|
5918
|
-
* Render the body for the `stub-index-convention` rule shipped by the
|
|
5919
|
-
* `base` bundle.
|
|
5920
|
-
*
|
|
5921
|
-
* The rule documents the contract every agent follows when creating or
|
|
5922
|
-
* updating an `index.md` (or `README.md`) section page under a Starlight
|
|
5923
|
-
* docs root: a contextual summary plus a grouped, linked listing of the
|
|
5924
|
-
* directory's children, and **no** body `# Heading` (Starlight already
|
|
5925
|
-
* renders the frontmatter `title:` as the page H1 — see the no-body-H1
|
|
5926
|
-
* contract documented for skill templates and inline agent templates).
|
|
5927
|
-
*
|
|
5928
|
-
* The convention has no configurable surface — the contract is fixed
|
|
5929
|
-
* and the same for every consuming project. The path globs the rule
|
|
5930
|
-
* applies to are quoted directly from the `shared-editing-safety` rule
|
|
5931
|
-
* so the two contracts never drift.
|
|
5932
|
-
*/
|
|
5933
|
-
declare function renderStubIndexConventionRuleContent(): string;
|
|
5934
|
-
|
|
5935
6145
|
/**
|
|
5936
6146
|
* Default master switch for the temporal-framing convention. When no
|
|
5937
6147
|
* config is supplied the convention ships **enabled** so every
|
|
@@ -6328,7 +6538,7 @@ declare const vitestBundle: AgentRuleBundle;
|
|
|
6328
6538
|
* Bundles that do not read any agent path (typescript, jest,
|
|
6329
6539
|
* pnpm, etc.) stay as const exports and are referenced unchanged.
|
|
6330
6540
|
*/
|
|
6331
|
-
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel
|
|
6541
|
+
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel>, prReviewPolicy?: ResolvedPrReviewPolicy): ReadonlyArray<AgentRuleBundle>;
|
|
6332
6542
|
/**
|
|
6333
6543
|
* Built-in rule bundles assembled with the default agent paths.
|
|
6334
6544
|
* Preserved for backward compatibility with tests and consumers
|
|
@@ -12577,5 +12787,5 @@ declare function pinPnpmActionSetup(project: Project): void;
|
|
|
12577
12787
|
*/
|
|
12578
12788
|
declare function pinSetupNodeVersion(project: Project): void;
|
|
12579
12789
|
|
|
12580
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, 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, BUNDLE_OWNERSHIP, 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, CdkCli, 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, 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, Nvmrc, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, 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,
|
|
12581
|
-
export type { ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, 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, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitTemplate, CdkListOptions, CdkMetadataOptions, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
|
|
12790
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, 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, BUNDLE_OWNERSHIP, 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, CdkCli, 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, 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, Nvmrc, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, 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 };
|
|
12791
|
+
export type { ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, 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, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitTemplate, CdkListOptions, CdkMetadataOptions, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PrReviewAutoMergeConfig, PrReviewPolicyConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedPrReviewAutoMerge, ResolvedPrReviewPolicy, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
|