@codedrifters/configulator 0.0.297 → 0.0.298
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 +287 -13
- package/lib/index.d.ts +288 -14
- package/lib/index.js +1051 -482
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1044 -482
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -416,6 +416,40 @@ interface AgentSubAgent {
|
|
|
416
416
|
/** Optional per-platform overrides for this sub-agent. */
|
|
417
417
|
readonly platforms?: AgentSubAgentPlatformOverrides;
|
|
418
418
|
}
|
|
419
|
+
/**
|
|
420
|
+
* A user-invokable slash command. Rendered to `.claude/commands/<name>.md`.
|
|
421
|
+
*
|
|
422
|
+
* Slash commands appear in the Claude Code command picker (typed as
|
|
423
|
+
* `/<name>`) and execute the body as the user prompt. The body may
|
|
424
|
+
* reference any rule, skill, sub-agent, or procedure registered via
|
|
425
|
+
* `AgentConfigOptions` — bundle-shipped commands typically delegate to
|
|
426
|
+
* an existing sub-agent or procedure rather than restating its content.
|
|
427
|
+
*
|
|
428
|
+
* @see https://docs.claude.com/en/docs/claude-code/slash-commands
|
|
429
|
+
*/
|
|
430
|
+
interface AgentCommand {
|
|
431
|
+
/**
|
|
432
|
+
* Slash-command name (no leading slash). Lowercase, kebab-case.
|
|
433
|
+
* Becomes the filename stem under `.claude/commands/`.
|
|
434
|
+
* @example 'orchestrate'
|
|
435
|
+
*/
|
|
436
|
+
readonly name: string;
|
|
437
|
+
/**
|
|
438
|
+
* One-sentence summary shown in the slash-command picker.
|
|
439
|
+
*/
|
|
440
|
+
readonly description: string;
|
|
441
|
+
/**
|
|
442
|
+
* Body content (markdown). Rendered as the command file body verbatim,
|
|
443
|
+
* after the generated YAML frontmatter.
|
|
444
|
+
*/
|
|
445
|
+
readonly content: string;
|
|
446
|
+
/**
|
|
447
|
+
* Optional model override for the command's invocation. Maps to a
|
|
448
|
+
* Claude Code model alias (e.g. `opus`, `sonnet`, `haiku`) via
|
|
449
|
+
* {@link resolveModelAlias}.
|
|
450
|
+
*/
|
|
451
|
+
readonly model?: AgentModel;
|
|
452
|
+
}
|
|
419
453
|
/**
|
|
420
454
|
* An executable procedure (shell script) that ships with a bundle.
|
|
421
455
|
* Rendered to .claude/procedures/{name} as an executable file.
|
|
@@ -570,6 +604,14 @@ interface AgentRuleBundle {
|
|
|
570
604
|
readonly subAgents?: ReadonlyArray<AgentSubAgent>;
|
|
571
605
|
/** Executable procedures (shell scripts) included in this bundle. */
|
|
572
606
|
readonly procedures?: ReadonlyArray<AgentProcedure>;
|
|
607
|
+
/**
|
|
608
|
+
* Slash commands included in this bundle. Rendered to
|
|
609
|
+
* `.claude/commands/<name>.md`. Bundle commands are merged with
|
|
610
|
+
* consumer-supplied commands; consumers can opt out of any default
|
|
611
|
+
* via `AgentConfigOptions.excludeCommands` or by excluding the
|
|
612
|
+
* whole bundle.
|
|
613
|
+
*/
|
|
614
|
+
readonly commands?: ReadonlyArray<AgentCommand>;
|
|
573
615
|
/**
|
|
574
616
|
* Claude Code permission entries contributed by this bundle.
|
|
575
617
|
* Allow and deny entries are merged with the default and user-supplied
|
|
@@ -898,6 +940,49 @@ interface ClaudeSettingsConfig {
|
|
|
898
940
|
*/
|
|
899
941
|
readonly respectGitignore?: boolean;
|
|
900
942
|
}
|
|
943
|
+
/*******************************************************************************
|
|
944
|
+
*
|
|
945
|
+
* CLAUDE.md Tuning
|
|
946
|
+
*
|
|
947
|
+
******************************************************************************/
|
|
948
|
+
/**
|
|
949
|
+
* Tuning knobs for the rendered `CLAUDE.md` file.
|
|
950
|
+
*
|
|
951
|
+
* Today this surface only carries one switch (`injectBundleHooks`),
|
|
952
|
+
* but it exists as its own interface so future CLAUDE.md-shaping
|
|
953
|
+
* options (size caps, section pruning, alternative table-of-contents
|
|
954
|
+
* formats) have an obvious home.
|
|
955
|
+
*/
|
|
956
|
+
interface ClaudeMdConfig {
|
|
957
|
+
/**
|
|
958
|
+
* Whether the CLAUDE.md renderer should append the four "see also"
|
|
959
|
+
* subsections to each phased-agent bundle's `<bundle>-workflow`
|
|
960
|
+
* rule.
|
|
961
|
+
*
|
|
962
|
+
* When `true` (the default), each affected `<bundle>-workflow`
|
|
963
|
+
* rule receives up to four short subsections — `## Progress File`,
|
|
964
|
+
* `## Shared Index Editing`, `## Issue Templates`, and
|
|
965
|
+
* `## Skill Evals` — that point readers at the matching
|
|
966
|
+
* convention rule (`progress-file-convention`, `shared-editing-safety`,
|
|
967
|
+
* `issue-templates-convention`, `skill-evals`). The convention
|
|
968
|
+
* rules themselves render unconditionally as standalone top-level
|
|
969
|
+
* CLAUDE.md sections regardless of this setting; these per-bundle
|
|
970
|
+
* subsections are an extra "see also" pointer for readers who land
|
|
971
|
+
* on a workflow rule directly.
|
|
972
|
+
*
|
|
973
|
+
* Set to `false` to drop the per-bundle pointers. The convention
|
|
974
|
+
* rules at the top of CLAUDE.md still convey the policy. This
|
|
975
|
+
* recovers roughly 600 lines (~6,500 tokens per turn) on a typical
|
|
976
|
+
* phased-agent-heavy consumer where the same handful of "see the
|
|
977
|
+
* X rule" stubs are duplicated across every workflow rule.
|
|
978
|
+
*
|
|
979
|
+
* The default is `true` to preserve back-compat for existing
|
|
980
|
+
* consumers that expect the per-agent stubs.
|
|
981
|
+
*
|
|
982
|
+
* @default true
|
|
983
|
+
*/
|
|
984
|
+
readonly injectBundleHooks?: boolean;
|
|
985
|
+
}
|
|
901
986
|
/*******************************************************************************
|
|
902
987
|
*
|
|
903
988
|
* Agent Paths Config
|
|
@@ -2664,6 +2749,17 @@ interface AgentConfigOptions {
|
|
|
2664
2749
|
* @default [AGENT_PLATFORM.CURSOR, AGENT_PLATFORM.CLAUDE]
|
|
2665
2750
|
*/
|
|
2666
2751
|
readonly platforms?: ReadonlyArray<AgentPlatform>;
|
|
2752
|
+
/**
|
|
2753
|
+
* Default model tier for analyst / writer / profile / research / regulatory /
|
|
2754
|
+
* standards / business-models / customer / industry / meeting / maintenance
|
|
2755
|
+
* sub-agents that don't pin a model explicitly. Defaults to 'balanced' (sonnet).
|
|
2756
|
+
* Override to 'powerful' (opus) to restore pre-2026-05-08 behaviour during a
|
|
2757
|
+
* migration window. The four reviewer/orchestrator agents (orchestrator,
|
|
2758
|
+
* issue-worker, pr-reviewer, requirements-reviewer) ignore this knob and
|
|
2759
|
+
* stay on POWERFUL because their workload requires it.
|
|
2760
|
+
* @default 'balanced'
|
|
2761
|
+
*/
|
|
2762
|
+
readonly defaultAgentTier?: "powerful" | "balanced" | "fast";
|
|
2667
2763
|
/**
|
|
2668
2764
|
* Additional agent rules to generate alongside auto-detected and bundled rules.
|
|
2669
2765
|
* Custom rules override bundled rules of the same name.
|
|
@@ -2681,6 +2777,23 @@ interface AgentConfigOptions {
|
|
|
2681
2777
|
* Custom procedure definitions (executable shell scripts).
|
|
2682
2778
|
*/
|
|
2683
2779
|
readonly procedures?: ReadonlyArray<AgentProcedure>;
|
|
2780
|
+
/**
|
|
2781
|
+
* Slash commands rendered to `.claude/commands/<name>.md`. Includes any
|
|
2782
|
+
* default commands shipped by an active bundle (e.g. the orchestrator
|
|
2783
|
+
* bundle's `/orchestrate`, `/check-blocked`, `/scan`) plus
|
|
2784
|
+
* consumer-supplied commands. A consumer command whose name collides
|
|
2785
|
+
* with a default wins (override semantics, mirroring `subAgents` /
|
|
2786
|
+
* `skills` / `rules`). Use `excludeCommands` to drop a specific
|
|
2787
|
+
* default by name.
|
|
2788
|
+
*/
|
|
2789
|
+
readonly commands?: ReadonlyArray<AgentCommand>;
|
|
2790
|
+
/**
|
|
2791
|
+
* Names of default commands to exclude from rendering. Each entry is
|
|
2792
|
+
* the bare command name (no leading slash). Use this to drop a single
|
|
2793
|
+
* bundle-shipped default without disabling the whole bundle.
|
|
2794
|
+
* @example ['scan']
|
|
2795
|
+
*/
|
|
2796
|
+
readonly excludeCommands?: ReadonlyArray<string>;
|
|
2684
2797
|
/**
|
|
2685
2798
|
* MCP server configurations. Cross-platform — rendered to the appropriate
|
|
2686
2799
|
* config file for each platform.
|
|
@@ -2769,6 +2882,19 @@ interface AgentConfigOptions {
|
|
|
2769
2882
|
* Generated to .claude/settings.json (committed, team-shared).
|
|
2770
2883
|
*/
|
|
2771
2884
|
readonly claudeSettings?: ClaudeSettingsConfig;
|
|
2885
|
+
/**
|
|
2886
|
+
* CLAUDE.md rendering tuning knobs.
|
|
2887
|
+
*
|
|
2888
|
+
* Currently exposes a single switch (`injectBundleHooks`) that
|
|
2889
|
+
* suppresses the four "see also" subsections each phased-agent
|
|
2890
|
+
* `<bundle>-workflow` rule otherwise receives. The convention
|
|
2891
|
+
* rules themselves still render — this only drops the duplicated
|
|
2892
|
+
* per-bundle pointers. Default behaviour is unchanged for
|
|
2893
|
+
* back-compat.
|
|
2894
|
+
*
|
|
2895
|
+
* @see ClaudeMdConfig
|
|
2896
|
+
*/
|
|
2897
|
+
readonly claudeMd?: ClaudeMdConfig;
|
|
2772
2898
|
/**
|
|
2773
2899
|
* Cursor-specific configuration. Generates .cursor/hooks.json for
|
|
2774
2900
|
* lifecycle hooks and .cursorignore / .cursorindexingignore for
|
|
@@ -3213,12 +3339,51 @@ declare class AgentConfig extends Component {
|
|
|
3213
3339
|
*/
|
|
3214
3340
|
private static hasActiveTierExamples;
|
|
3215
3341
|
/**
|
|
3216
|
-
* Merges default Claude permissions with bundle and
|
|
3217
|
-
*
|
|
3218
|
-
*
|
|
3219
|
-
*
|
|
3342
|
+
* Merges default Claude permissions and hooks with bundle and
|
|
3343
|
+
* user-supplied settings.
|
|
3344
|
+
*
|
|
3345
|
+
* Permission merge order: defaults → bundle permissions → user-supplied
|
|
3346
|
+
* entries. Both `allow` and `deny` are deduped via
|
|
3347
|
+
* `Array.from(new Set(...))`; V8 `Set` iteration preserves insertion
|
|
3348
|
+
* order, so the final ordering is defaults first, then bundle, then
|
|
3349
|
+
* user, with duplicates removed (first-occurrence wins). `defaultMode`
|
|
3350
|
+
* defaults to `"dontAsk"` unless overridden — see the inline comment
|
|
3351
|
+
* on the literal below for the autonomous-worker rationale.
|
|
3352
|
+
*
|
|
3353
|
+
* Hooks merge: consumer-supplied entries first, then default entries
|
|
3354
|
+
* (Stop, PostToolUse), deduped by `(matcher, JSON-serialized hooks)`.
|
|
3355
|
+
* Defaults are skipped entirely when `disableAllHooks: true` is set —
|
|
3356
|
+
* the `disableAllHooks` flag passes through to the rendered file so
|
|
3357
|
+
* Claude Code suppresses every project-level hook at runtime, and the
|
|
3358
|
+
* defaults are dropped at synth time so the rendered file does not
|
|
3359
|
+
* carry orphan entries that would re-fire if the operator later flipped
|
|
3360
|
+
* the flag back off.
|
|
3361
|
+
*
|
|
3362
|
+
* Env merge: defaults from `DEFAULT_CLAUDE_ENV` (e.g.
|
|
3363
|
+
* `ENABLE_TOOL_SEARCH=1`) layer first, then consumer-supplied
|
|
3364
|
+
* `claudeSettings.env` entries override on key collision. Sibling keys
|
|
3365
|
+
* from both sources land in the rendered file.
|
|
3220
3366
|
*/
|
|
3221
3367
|
private static mergeClaudeDefaults;
|
|
3368
|
+
/**
|
|
3369
|
+
* Merge default lifecycle hooks (Stop, PostToolUse) with consumer-
|
|
3370
|
+
* supplied entries on `claudeSettings.hooks`. Consumer entries appear
|
|
3371
|
+
* first so a downstream override that wires a faster lint/format hook
|
|
3372
|
+
* runs ahead of the defaults; defaults are appended after.
|
|
3373
|
+
*
|
|
3374
|
+
* Returns `undefined` when neither defaults nor consumer entries
|
|
3375
|
+
* remain — the renderer skips the `hooks` key entirely in that case
|
|
3376
|
+
* so opt-out repos do not ship an empty `"hooks": {}` object.
|
|
3377
|
+
*
|
|
3378
|
+
* Defaults are gated on `disableAllHooks !== true`. When the flag is
|
|
3379
|
+
* set we still pass through any consumer-supplied entries (the
|
|
3380
|
+
* runtime-level `disableAllHooks: true` is what suppresses execution),
|
|
3381
|
+
* but we never inject the bundle defaults. That keeps the disable-all
|
|
3382
|
+
* escape hatch idempotent: flipping the flag drops the bundle's
|
|
3383
|
+
* default surface area instead of leaving the entries on disk for a
|
|
3384
|
+
* future re-enable.
|
|
3385
|
+
*/
|
|
3386
|
+
private static mergeClaudeHooks;
|
|
3222
3387
|
private readonly options;
|
|
3223
3388
|
private cachedBundles?;
|
|
3224
3389
|
private cachedPaths?;
|
|
@@ -3264,6 +3429,16 @@ declare class AgentConfig extends Component {
|
|
|
3264
3429
|
private resolveSkills;
|
|
3265
3430
|
private resolveSubAgents;
|
|
3266
3431
|
private resolveProcedures;
|
|
3432
|
+
/**
|
|
3433
|
+
* Resolves the final list of slash commands by merging bundle-shipped
|
|
3434
|
+
* defaults with consumer-supplied entries. Mirrors {@link resolveSkills}
|
|
3435
|
+
* and {@link resolveSubAgents}: auto-detected bundles contribute first,
|
|
3436
|
+
* force-included bundles overlay, and consumer commands override on
|
|
3437
|
+
* name collision. Names listed in `excludeCommands` are dropped after
|
|
3438
|
+
* the merge so consumers can opt out of a single default without
|
|
3439
|
+
* disabling the whole bundle.
|
|
3440
|
+
*/
|
|
3441
|
+
private resolveCommands;
|
|
3267
3442
|
/**
|
|
3268
3443
|
* Resolves template variables in rule content using project metadata.
|
|
3269
3444
|
* Emits synthesis warnings for rules with unresolved variables.
|
|
@@ -3437,6 +3612,96 @@ declare const DEFAULT_AGENT_PATHS: ResolvedAgentPaths;
|
|
|
3437
3612
|
*/
|
|
3438
3613
|
declare function resolveAgentPaths(paths?: AgentPathsConfig): ResolvedAgentPaths;
|
|
3439
3614
|
|
|
3615
|
+
/**
|
|
3616
|
+
* One row in the rendered agent registry table. Each phased-agent
|
|
3617
|
+
* bundle that previously shipped its own `<bundle>-workflow` rule
|
|
3618
|
+
* contributes exactly one entry here so the registry can answer
|
|
3619
|
+
* "which agent handles X" without rendering 18 prose summaries
|
|
3620
|
+
* into CLAUDE.md.
|
|
3621
|
+
*/
|
|
3622
|
+
interface AgentRegistryEntry {
|
|
3623
|
+
/** Bundle name as it appears in `buildBuiltInBundles`, e.g. `bcm-writer`. */
|
|
3624
|
+
readonly bundle: string;
|
|
3625
|
+
/** Primary user-invocable skill, with leading slash, e.g. `/write-bcm`. */
|
|
3626
|
+
readonly skill: string;
|
|
3627
|
+
/** Sub-agent name in `.claude/agents/`, e.g. `bcm-writer`. */
|
|
3628
|
+
readonly agent: string;
|
|
3629
|
+
/**
|
|
3630
|
+
* Function that resolves the canonical output path for this
|
|
3631
|
+
* bundle from the project's resolved agent-path roots. Returning
|
|
3632
|
+
* an empty string signals "no filesystem output path" (used by
|
|
3633
|
+
* pr-review). Path-aware so consumer overrides on
|
|
3634
|
+
* `AgentConfigOptions.paths` propagate into the rendered table.
|
|
3635
|
+
*/
|
|
3636
|
+
readonly resolveOutputPath: (paths: ResolvedAgentPaths) => string;
|
|
3637
|
+
/**
|
|
3638
|
+
* One-line purpose description. Lifted from the first prose
|
|
3639
|
+
* sentence of the original `<bundle>-workflow` rule so consumers
|
|
3640
|
+
* keep the same routing signal.
|
|
3641
|
+
*/
|
|
3642
|
+
readonly purpose: string;
|
|
3643
|
+
/**
|
|
3644
|
+
* Name of the original `<bundle>-workflow` rule. Used by the
|
|
3645
|
+
* registry helper to filter the resolved bundle list and assert
|
|
3646
|
+
* (via the test suite) that no bundle still ships its workflow
|
|
3647
|
+
* rule into the Claude platform output.
|
|
3648
|
+
*/
|
|
3649
|
+
readonly workflowRuleName: string;
|
|
3650
|
+
}
|
|
3651
|
+
/**
|
|
3652
|
+
* Static registry of every phased-agent bundle that contributes a
|
|
3653
|
+
* routing row. Order is alphabetical by bundle name so the
|
|
3654
|
+
* rendered table is stable across runs and consumer-side diffs are
|
|
3655
|
+
* minimal. Adding a new phased-agent bundle requires appending one
|
|
3656
|
+
* row here and suppressing its `<bundle>-workflow` rule via
|
|
3657
|
+
* `platforms: { claude: { exclude: true } }`.
|
|
3658
|
+
*/
|
|
3659
|
+
declare const AGENT_REGISTRY_ENTRIES: ReadonlyArray<AgentRegistryEntry>;
|
|
3660
|
+
/**
|
|
3661
|
+
* The set of `<bundle>-workflow` rule names that the registry
|
|
3662
|
+
* subsumes. Used both to suppress those rules from the Claude
|
|
3663
|
+
* platform output and to assert in tests that no bundle still
|
|
3664
|
+
* ships its prose summary into CLAUDE.md.
|
|
3665
|
+
*/
|
|
3666
|
+
declare const SUPPRESSED_WORKFLOW_RULE_NAMES: ReadonlyArray<string>;
|
|
3667
|
+
/**
|
|
3668
|
+
* Returns `true` when the supplied rule name belongs to a
|
|
3669
|
+
* phased-agent `<bundle>-workflow` rule whose routing summary now
|
|
3670
|
+
* lives in the shared `agent-registry` rule.
|
|
3671
|
+
*/
|
|
3672
|
+
declare function isSuppressedWorkflowRule(name: string): boolean;
|
|
3673
|
+
/**
|
|
3674
|
+
* Reverse map from a `<bundle>-workflow` rule name to its owning
|
|
3675
|
+
* bundle name. Used by the registry consolidation loop to detect
|
|
3676
|
+
* when a consumer has targeted a bundle with a
|
|
3677
|
+
* `features.customDocSections` entry — those bundles keep
|
|
3678
|
+
* rendering their workflow rule into CLAUDE.md so the consumer-
|
|
3679
|
+
* supplied prose has somewhere to live. Returns `undefined` for
|
|
3680
|
+
* any rule name that is not in the registry's suppression list.
|
|
3681
|
+
*/
|
|
3682
|
+
declare function bundleNameForWorkflowRule(ruleName: string): string | undefined;
|
|
3683
|
+
/**
|
|
3684
|
+
* Build the consolidated agent-registry rule for the supplied
|
|
3685
|
+
* resolved bundle list. The helper:
|
|
3686
|
+
*
|
|
3687
|
+
* 1. Filters `AGENT_REGISTRY_ENTRIES` to bundles that are actually
|
|
3688
|
+
* active in the consumer's resolved bundle set (so a consumer
|
|
3689
|
+
* that excludes `bcm-writer` doesn't see a row for it).
|
|
3690
|
+
* 2. Renders one alphabetically-sorted markdown table row per
|
|
3691
|
+
* surviving entry, with skill / agent / bundle / output-path /
|
|
3692
|
+
* purpose columns.
|
|
3693
|
+
* 3. Returns a single ALWAYS-scoped `agent-registry` rule whose
|
|
3694
|
+
* body opens with a 2-3 sentence preamble explaining the
|
|
3695
|
+
* routing model and pointing at `.claude/agents/<name>.md` for
|
|
3696
|
+
* full prompts and the cross-cutting convention rules at the
|
|
3697
|
+
* top of CLAUDE.md.
|
|
3698
|
+
*
|
|
3699
|
+
* Consumers with no phased-agent bundle active receive `undefined`
|
|
3700
|
+
* and the rule is dropped from the resolved set — there is no
|
|
3701
|
+
* routing to summarise.
|
|
3702
|
+
*/
|
|
3703
|
+
declare function buildAgentRegistryRule(bundles: ReadonlyArray<AgentRuleBundle>, paths: ResolvedAgentPaths): AgentRule | undefined;
|
|
3704
|
+
|
|
3440
3705
|
/**
|
|
3441
3706
|
* Agenda bundle — enabled by default.
|
|
3442
3707
|
*
|
|
@@ -3650,7 +3915,7 @@ declare const businessModelsBundle: AgentRuleBundle;
|
|
|
3650
3915
|
* `/analyze-segment`), and `type:company-profile` plus `company:*`
|
|
3651
3916
|
* phase labels for the six phases.
|
|
3652
3917
|
*/
|
|
3653
|
-
declare function buildCompanyProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
3918
|
+
declare function buildCompanyProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
3654
3919
|
/**
|
|
3655
3920
|
* Default-paths instance of the company-profile bundle, preserved for
|
|
3656
3921
|
* backward compatibility with consumers that import the const
|
|
@@ -3687,7 +3952,7 @@ declare const companyProfileBundle: AgentRuleBundle;
|
|
|
3687
3952
|
* unmet need to `req:scan` seed via the shared software-profile
|
|
3688
3953
|
* feature matrix.
|
|
3689
3954
|
*/
|
|
3690
|
-
declare function buildCustomerProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
3955
|
+
declare function buildCustomerProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
3691
3956
|
/**
|
|
3692
3957
|
* Default-paths instance of the customer-profile bundle, preserved
|
|
3693
3958
|
* for backward compatibility with consumers that import the const
|
|
@@ -3854,7 +4119,7 @@ declare const jestBundle: AgentRuleBundle;
|
|
|
3854
4119
|
* automatically pick up the label taxonomy through the sync-labels
|
|
3855
4120
|
* workflow.
|
|
3856
4121
|
*/
|
|
3857
|
-
declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
4122
|
+
declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
3858
4123
|
/**
|
|
3859
4124
|
* Default-paths instance of the maintenance-audit bundle, preserved
|
|
3860
4125
|
* for backward compatibility with consumers that import the const
|
|
@@ -3864,8 +4129,17 @@ declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths, issueDe
|
|
|
3864
4129
|
declare const maintenanceAuditBundle: AgentRuleBundle;
|
|
3865
4130
|
|
|
3866
4131
|
/**
|
|
3867
|
-
*
|
|
3868
|
-
*
|
|
4132
|
+
* Build the meeting-analysis bundle with the supplied default sub-agent
|
|
4133
|
+
* model tier. The tier knob lets consumers globally demote the
|
|
4134
|
+
* `meeting-analyst` sub-agent to BALANCED (sonnet) — which is the
|
|
4135
|
+
* post-2026-05-08 default — without forking the bundle.
|
|
4136
|
+
*/
|
|
4137
|
+
declare function buildMeetingAnalysisBundle(tier?: AgentModel): AgentRuleBundle;
|
|
4138
|
+
/**
|
|
4139
|
+
* Default-tier instance of the meeting-analysis bundle, preserved for
|
|
4140
|
+
* backward compatibility with consumers that import the const directly.
|
|
4141
|
+
* The factory above is the canonical entry point when a consumer
|
|
4142
|
+
* supplies `AgentConfigOptions.defaultAgentTier`.
|
|
3869
4143
|
*/
|
|
3870
4144
|
declare const meetingAnalysisBundle: AgentRuleBundle;
|
|
3871
4145
|
|
|
@@ -4705,7 +4979,7 @@ declare const orchestratorBundle: AgentRuleBundle;
|
|
|
4705
4979
|
* skills (`/profile-person`, `/refresh-person`), and `type:people-profile`
|
|
4706
4980
|
* plus `people:*` phase labels for the four phases.
|
|
4707
4981
|
*/
|
|
4708
|
-
declare function buildPeopleProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
4982
|
+
declare function buildPeopleProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
4709
4983
|
/**
|
|
4710
4984
|
* Default-paths instance of the people-profile bundle, preserved for
|
|
4711
4985
|
* backward compatibility with consumers that import the const
|
|
@@ -5650,7 +5924,7 @@ declare const slackBundle: AgentRuleBundle;
|
|
|
5650
5924
|
* skills (`/profile-software` and `/map-software`), and
|
|
5651
5925
|
* `type:software-profile` plus `software:*` phase labels.
|
|
5652
5926
|
*/
|
|
5653
|
-
declare function buildSoftwareProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
5927
|
+
declare function buildSoftwareProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
5654
5928
|
/**
|
|
5655
5929
|
* Default-paths instance of the software-profile bundle, preserved
|
|
5656
5930
|
* for backward compatibility with consumers that import the const
|
|
@@ -5762,7 +6036,7 @@ declare const vitestBundle: AgentRuleBundle;
|
|
|
5762
6036
|
* Bundles that do not read any agent path (typescript, jest,
|
|
5763
6037
|
* pnpm, etc.) stay as const exports and are referenced unchanged.
|
|
5764
6038
|
*/
|
|
5765
|
-
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): ReadonlyArray<AgentRuleBundle>;
|
|
6039
|
+
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel): ReadonlyArray<AgentRuleBundle>;
|
|
5766
6040
|
/**
|
|
5767
6041
|
* Built-in rule bundles assembled with the default agent paths.
|
|
5768
6042
|
* Preserved for backward compatibility with tests and consumers
|
|
@@ -9889,5 +10163,5 @@ declare function pinPnpmActionSetup(project: Project): void;
|
|
|
9889
10163
|
*/
|
|
9890
10164
|
declare function pinSetupNodeVersion(project: Project): void;
|
|
9891
10165
|
|
|
9892
|
-
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, BUNDLE_OWNERSHIP, 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_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_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, 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, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, 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, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isTypeLabelOwnedByExcluded, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, 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, renderStubIndexConventionRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
|
|
9893
|
-
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, BundleOwnership, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, 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, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, 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, TsDocCoverageRecord, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
|
|
10166
|
+
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, 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_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_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, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TestRunner, TsDocCoverageKind, 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, 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, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, 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, renderStubIndexConventionRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
|
|
10167
|
+
export type { 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, 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, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, 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, TsDocCoverageRecord, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
|