@codedrifters/configulator 0.0.297 → 0.0.299
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 +335 -26
- package/lib/index.d.ts +336 -27
- package/lib/index.js +1516 -593
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1507 -593
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -367,6 +367,40 @@ interface AgentSubAgent {
|
|
|
367
367
|
/** Optional per-platform overrides for this sub-agent. */
|
|
368
368
|
readonly platforms?: AgentSubAgentPlatformOverrides;
|
|
369
369
|
}
|
|
370
|
+
/**
|
|
371
|
+
* A user-invokable slash command. Rendered to `.claude/commands/<name>.md`.
|
|
372
|
+
*
|
|
373
|
+
* Slash commands appear in the Claude Code command picker (typed as
|
|
374
|
+
* `/<name>`) and execute the body as the user prompt. The body may
|
|
375
|
+
* reference any rule, skill, sub-agent, or procedure registered via
|
|
376
|
+
* `AgentConfigOptions` — bundle-shipped commands typically delegate to
|
|
377
|
+
* an existing sub-agent or procedure rather than restating its content.
|
|
378
|
+
*
|
|
379
|
+
* @see https://docs.claude.com/en/docs/claude-code/slash-commands
|
|
380
|
+
*/
|
|
381
|
+
interface AgentCommand {
|
|
382
|
+
/**
|
|
383
|
+
* Slash-command name (no leading slash). Lowercase, kebab-case.
|
|
384
|
+
* Becomes the filename stem under `.claude/commands/`.
|
|
385
|
+
* @example 'orchestrate'
|
|
386
|
+
*/
|
|
387
|
+
readonly name: string;
|
|
388
|
+
/**
|
|
389
|
+
* One-sentence summary shown in the slash-command picker.
|
|
390
|
+
*/
|
|
391
|
+
readonly description: string;
|
|
392
|
+
/**
|
|
393
|
+
* Body content (markdown). Rendered as the command file body verbatim,
|
|
394
|
+
* after the generated YAML frontmatter.
|
|
395
|
+
*/
|
|
396
|
+
readonly content: string;
|
|
397
|
+
/**
|
|
398
|
+
* Optional model override for the command's invocation. Maps to a
|
|
399
|
+
* Claude Code model alias (e.g. `opus`, `sonnet`, `haiku`) via
|
|
400
|
+
* {@link resolveModelAlias}.
|
|
401
|
+
*/
|
|
402
|
+
readonly model?: AgentModel;
|
|
403
|
+
}
|
|
370
404
|
/**
|
|
371
405
|
* An executable procedure (shell script) that ships with a bundle.
|
|
372
406
|
* Rendered to .claude/procedures/{name} as an executable file.
|
|
@@ -521,6 +555,14 @@ interface AgentRuleBundle {
|
|
|
521
555
|
readonly subAgents?: ReadonlyArray<AgentSubAgent>;
|
|
522
556
|
/** Executable procedures (shell scripts) included in this bundle. */
|
|
523
557
|
readonly procedures?: ReadonlyArray<AgentProcedure>;
|
|
558
|
+
/**
|
|
559
|
+
* Slash commands included in this bundle. Rendered to
|
|
560
|
+
* `.claude/commands/<name>.md`. Bundle commands are merged with
|
|
561
|
+
* consumer-supplied commands; consumers can opt out of any default
|
|
562
|
+
* via `AgentConfigOptions.excludeCommands` or by excluding the
|
|
563
|
+
* whole bundle.
|
|
564
|
+
*/
|
|
565
|
+
readonly commands?: ReadonlyArray<AgentCommand>;
|
|
524
566
|
/**
|
|
525
567
|
* Claude Code permission entries contributed by this bundle.
|
|
526
568
|
* Allow and deny entries are merged with the default and user-supplied
|
|
@@ -849,6 +891,49 @@ interface ClaudeSettingsConfig {
|
|
|
849
891
|
*/
|
|
850
892
|
readonly respectGitignore?: boolean;
|
|
851
893
|
}
|
|
894
|
+
/*******************************************************************************
|
|
895
|
+
*
|
|
896
|
+
* CLAUDE.md Tuning
|
|
897
|
+
*
|
|
898
|
+
******************************************************************************/
|
|
899
|
+
/**
|
|
900
|
+
* Tuning knobs for the rendered `CLAUDE.md` file.
|
|
901
|
+
*
|
|
902
|
+
* Today this surface only carries one switch (`injectBundleHooks`),
|
|
903
|
+
* but it exists as its own interface so future CLAUDE.md-shaping
|
|
904
|
+
* options (size caps, section pruning, alternative table-of-contents
|
|
905
|
+
* formats) have an obvious home.
|
|
906
|
+
*/
|
|
907
|
+
interface ClaudeMdConfig {
|
|
908
|
+
/**
|
|
909
|
+
* Whether the CLAUDE.md renderer should append the four "see also"
|
|
910
|
+
* subsections to each phased-agent bundle's `<bundle>-workflow`
|
|
911
|
+
* rule.
|
|
912
|
+
*
|
|
913
|
+
* When `true` (the default), each affected `<bundle>-workflow`
|
|
914
|
+
* rule receives up to four short subsections — `## Progress File`,
|
|
915
|
+
* `## Shared Index Editing`, `## Issue Templates`, and
|
|
916
|
+
* `## Skill Evals` — that point readers at the matching
|
|
917
|
+
* convention rule (`progress-file-convention`, `shared-editing-safety`,
|
|
918
|
+
* `issue-templates-convention`, `skill-evals`). The convention
|
|
919
|
+
* rules themselves render unconditionally as standalone top-level
|
|
920
|
+
* CLAUDE.md sections regardless of this setting; these per-bundle
|
|
921
|
+
* subsections are an extra "see also" pointer for readers who land
|
|
922
|
+
* on a workflow rule directly.
|
|
923
|
+
*
|
|
924
|
+
* Set to `false` to drop the per-bundle pointers. The convention
|
|
925
|
+
* rules at the top of CLAUDE.md still convey the policy. This
|
|
926
|
+
* recovers roughly 600 lines (~6,500 tokens per turn) on a typical
|
|
927
|
+
* phased-agent-heavy consumer where the same handful of "see the
|
|
928
|
+
* X rule" stubs are duplicated across every workflow rule.
|
|
929
|
+
*
|
|
930
|
+
* The default is `true` to preserve back-compat for existing
|
|
931
|
+
* consumers that expect the per-agent stubs.
|
|
932
|
+
*
|
|
933
|
+
* @default true
|
|
934
|
+
*/
|
|
935
|
+
readonly injectBundleHooks?: boolean;
|
|
936
|
+
}
|
|
852
937
|
/*******************************************************************************
|
|
853
938
|
*
|
|
854
939
|
* Agent Paths Config
|
|
@@ -2615,6 +2700,37 @@ interface AgentConfigOptions {
|
|
|
2615
2700
|
* @default [AGENT_PLATFORM.CURSOR, AGENT_PLATFORM.CLAUDE]
|
|
2616
2701
|
*/
|
|
2617
2702
|
readonly platforms?: ReadonlyArray<AgentPlatform>;
|
|
2703
|
+
/**
|
|
2704
|
+
* Default model tier for analyst / writer / profile / research / regulatory /
|
|
2705
|
+
* standards / business-models / customer / industry / meeting / maintenance
|
|
2706
|
+
* sub-agents that don't pin a model explicitly. Defaults to 'balanced' (sonnet).
|
|
2707
|
+
* Override to 'powerful' (opus) to restore pre-2026-05-08 behaviour during a
|
|
2708
|
+
* migration window. The four reviewer/orchestrator agents (orchestrator,
|
|
2709
|
+
* issue-worker, pr-reviewer, requirements-reviewer) ignore this knob and
|
|
2710
|
+
* stay on POWERFUL because their workload requires it.
|
|
2711
|
+
* @default 'balanced'
|
|
2712
|
+
*/
|
|
2713
|
+
readonly defaultAgentTier?: "powerful" | "balanced" | "fast";
|
|
2714
|
+
/**
|
|
2715
|
+
* Per-bundle override for `defaultAgentTier`. Bundle name keyed
|
|
2716
|
+
* (matches the bundle's `name` field, e.g. `'meeting-analysis'`,
|
|
2717
|
+
* `'company-profile'`). Bundles not present in the map fall back
|
|
2718
|
+
* to `defaultAgentTier`.
|
|
2719
|
+
*
|
|
2720
|
+
* Only the six tier-aware bundles (`meeting-analysis`,
|
|
2721
|
+
* `company-profile`, `customer-profile`, `people-profile`,
|
|
2722
|
+
* `software-profile`, `maintenance-audit`) read this map — the
|
|
2723
|
+
* four reviewer/orchestrator agents (orchestrator, issue-worker,
|
|
2724
|
+
* pr-reviewer, requirements-reviewer) ignore both this map and
|
|
2725
|
+
* `defaultAgentTier` and stay on POWERFUL.
|
|
2726
|
+
*
|
|
2727
|
+
* Synth fails with a clear error if a key in the map does not
|
|
2728
|
+
* match one of the six tier-aware bundle names — typos or
|
|
2729
|
+
* deprecated bundle names would otherwise be silently ignored.
|
|
2730
|
+
*
|
|
2731
|
+
* @default {}
|
|
2732
|
+
*/
|
|
2733
|
+
readonly bundleAgentTiers?: Readonly<Record<string, "powerful" | "balanced" | "fast">>;
|
|
2618
2734
|
/**
|
|
2619
2735
|
* Additional agent rules to generate alongside auto-detected and bundled rules.
|
|
2620
2736
|
* Custom rules override bundled rules of the same name.
|
|
@@ -2632,6 +2748,23 @@ interface AgentConfigOptions {
|
|
|
2632
2748
|
* Custom procedure definitions (executable shell scripts).
|
|
2633
2749
|
*/
|
|
2634
2750
|
readonly procedures?: ReadonlyArray<AgentProcedure>;
|
|
2751
|
+
/**
|
|
2752
|
+
* Slash commands rendered to `.claude/commands/<name>.md`. Includes any
|
|
2753
|
+
* default commands shipped by an active bundle (e.g. the orchestrator
|
|
2754
|
+
* bundle's `/orchestrate`, `/check-blocked`, `/scan`) plus
|
|
2755
|
+
* consumer-supplied commands. A consumer command whose name collides
|
|
2756
|
+
* with a default wins (override semantics, mirroring `subAgents` /
|
|
2757
|
+
* `skills` / `rules`). Use `excludeCommands` to drop a specific
|
|
2758
|
+
* default by name.
|
|
2759
|
+
*/
|
|
2760
|
+
readonly commands?: ReadonlyArray<AgentCommand>;
|
|
2761
|
+
/**
|
|
2762
|
+
* Names of default commands to exclude from rendering. Each entry is
|
|
2763
|
+
* the bare command name (no leading slash). Use this to drop a single
|
|
2764
|
+
* bundle-shipped default without disabling the whole bundle.
|
|
2765
|
+
* @example ['scan']
|
|
2766
|
+
*/
|
|
2767
|
+
readonly excludeCommands?: ReadonlyArray<string>;
|
|
2635
2768
|
/**
|
|
2636
2769
|
* MCP server configurations. Cross-platform — rendered to the appropriate
|
|
2637
2770
|
* config file for each platform.
|
|
@@ -2720,6 +2853,19 @@ interface AgentConfigOptions {
|
|
|
2720
2853
|
* Generated to .claude/settings.json (committed, team-shared).
|
|
2721
2854
|
*/
|
|
2722
2855
|
readonly claudeSettings?: ClaudeSettingsConfig;
|
|
2856
|
+
/**
|
|
2857
|
+
* CLAUDE.md rendering tuning knobs.
|
|
2858
|
+
*
|
|
2859
|
+
* Currently exposes a single switch (`injectBundleHooks`) that
|
|
2860
|
+
* suppresses the four "see also" subsections each phased-agent
|
|
2861
|
+
* `<bundle>-workflow` rule otherwise receives. The convention
|
|
2862
|
+
* rules themselves still render — this only drops the duplicated
|
|
2863
|
+
* per-bundle pointers. Default behaviour is unchanged for
|
|
2864
|
+
* back-compat.
|
|
2865
|
+
*
|
|
2866
|
+
* @see ClaudeMdConfig
|
|
2867
|
+
*/
|
|
2868
|
+
readonly claudeMd?: ClaudeMdConfig;
|
|
2723
2869
|
/**
|
|
2724
2870
|
* Cursor-specific configuration. Generates .cursor/hooks.json for
|
|
2725
2871
|
* lifecycle hooks and .cursorignore / .cursorindexingignore for
|
|
@@ -3164,12 +3310,51 @@ declare class AgentConfig extends Component {
|
|
|
3164
3310
|
*/
|
|
3165
3311
|
private static hasActiveTierExamples;
|
|
3166
3312
|
/**
|
|
3167
|
-
* Merges default Claude permissions with bundle and
|
|
3168
|
-
*
|
|
3169
|
-
*
|
|
3170
|
-
*
|
|
3313
|
+
* Merges default Claude permissions and hooks with bundle and
|
|
3314
|
+
* user-supplied settings.
|
|
3315
|
+
*
|
|
3316
|
+
* Permission merge order: defaults → bundle permissions → user-supplied
|
|
3317
|
+
* entries. Both `allow` and `deny` are deduped via
|
|
3318
|
+
* `Array.from(new Set(...))`; V8 `Set` iteration preserves insertion
|
|
3319
|
+
* order, so the final ordering is defaults first, then bundle, then
|
|
3320
|
+
* user, with duplicates removed (first-occurrence wins). `defaultMode`
|
|
3321
|
+
* defaults to `"dontAsk"` unless overridden — see the inline comment
|
|
3322
|
+
* on the literal below for the autonomous-worker rationale.
|
|
3323
|
+
*
|
|
3324
|
+
* Hooks merge: consumer-supplied entries first, then default entries
|
|
3325
|
+
* (Stop, PostToolUse), deduped by `(matcher, JSON-serialized hooks)`.
|
|
3326
|
+
* Defaults are skipped entirely when `disableAllHooks: true` is set —
|
|
3327
|
+
* the `disableAllHooks` flag passes through to the rendered file so
|
|
3328
|
+
* Claude Code suppresses every project-level hook at runtime, and the
|
|
3329
|
+
* defaults are dropped at synth time so the rendered file does not
|
|
3330
|
+
* carry orphan entries that would re-fire if the operator later flipped
|
|
3331
|
+
* the flag back off.
|
|
3332
|
+
*
|
|
3333
|
+
* Env merge: defaults from `DEFAULT_CLAUDE_ENV` (e.g.
|
|
3334
|
+
* `ENABLE_TOOL_SEARCH=1`) layer first, then consumer-supplied
|
|
3335
|
+
* `claudeSettings.env` entries override on key collision. Sibling keys
|
|
3336
|
+
* from both sources land in the rendered file.
|
|
3171
3337
|
*/
|
|
3172
3338
|
private static mergeClaudeDefaults;
|
|
3339
|
+
/**
|
|
3340
|
+
* Merge default lifecycle hooks (Stop, PostToolUse) with consumer-
|
|
3341
|
+
* supplied entries on `claudeSettings.hooks`. Consumer entries appear
|
|
3342
|
+
* first so a downstream override that wires a faster lint/format hook
|
|
3343
|
+
* runs ahead of the defaults; defaults are appended after.
|
|
3344
|
+
*
|
|
3345
|
+
* Returns `undefined` when neither defaults nor consumer entries
|
|
3346
|
+
* remain — the renderer skips the `hooks` key entirely in that case
|
|
3347
|
+
* so opt-out repos do not ship an empty `"hooks": {}` object.
|
|
3348
|
+
*
|
|
3349
|
+
* Defaults are gated on `disableAllHooks !== true`. When the flag is
|
|
3350
|
+
* set we still pass through any consumer-supplied entries (the
|
|
3351
|
+
* runtime-level `disableAllHooks: true` is what suppresses execution),
|
|
3352
|
+
* but we never inject the bundle defaults. That keeps the disable-all
|
|
3353
|
+
* escape hatch idempotent: flipping the flag drops the bundle's
|
|
3354
|
+
* default surface area instead of leaving the entries on disk for a
|
|
3355
|
+
* future re-enable.
|
|
3356
|
+
*/
|
|
3357
|
+
private static mergeClaudeHooks;
|
|
3173
3358
|
private readonly options;
|
|
3174
3359
|
private cachedBundles?;
|
|
3175
3360
|
private cachedPaths?;
|
|
@@ -3215,6 +3400,16 @@ declare class AgentConfig extends Component {
|
|
|
3215
3400
|
private resolveSkills;
|
|
3216
3401
|
private resolveSubAgents;
|
|
3217
3402
|
private resolveProcedures;
|
|
3403
|
+
/**
|
|
3404
|
+
* Resolves the final list of slash commands by merging bundle-shipped
|
|
3405
|
+
* defaults with consumer-supplied entries. Mirrors {@link resolveSkills}
|
|
3406
|
+
* and {@link resolveSubAgents}: auto-detected bundles contribute first,
|
|
3407
|
+
* force-included bundles overlay, and consumer commands override on
|
|
3408
|
+
* name collision. Names listed in `excludeCommands` are dropped after
|
|
3409
|
+
* the merge so consumers can opt out of a single default without
|
|
3410
|
+
* disabling the whole bundle.
|
|
3411
|
+
*/
|
|
3412
|
+
private resolveCommands;
|
|
3218
3413
|
/**
|
|
3219
3414
|
* Resolves template variables in rule content using project metadata.
|
|
3220
3415
|
* Emits synthesis warnings for rules with unresolved variables.
|
|
@@ -3388,6 +3583,96 @@ declare const DEFAULT_AGENT_PATHS: ResolvedAgentPaths;
|
|
|
3388
3583
|
*/
|
|
3389
3584
|
declare function resolveAgentPaths(paths?: AgentPathsConfig): ResolvedAgentPaths;
|
|
3390
3585
|
|
|
3586
|
+
/**
|
|
3587
|
+
* One row in the rendered agent registry table. Each phased-agent
|
|
3588
|
+
* bundle that previously shipped its own `<bundle>-workflow` rule
|
|
3589
|
+
* contributes exactly one entry here so the registry can answer
|
|
3590
|
+
* "which agent handles X" without rendering 18 prose summaries
|
|
3591
|
+
* into CLAUDE.md.
|
|
3592
|
+
*/
|
|
3593
|
+
interface AgentRegistryEntry {
|
|
3594
|
+
/** Bundle name as it appears in `buildBuiltInBundles`, e.g. `bcm-writer`. */
|
|
3595
|
+
readonly bundle: string;
|
|
3596
|
+
/** Primary user-invocable skill, with leading slash, e.g. `/write-bcm`. */
|
|
3597
|
+
readonly skill: string;
|
|
3598
|
+
/** Sub-agent name in `.claude/agents/`, e.g. `bcm-writer`. */
|
|
3599
|
+
readonly agent: string;
|
|
3600
|
+
/**
|
|
3601
|
+
* Function that resolves the canonical output path for this
|
|
3602
|
+
* bundle from the project's resolved agent-path roots. Returning
|
|
3603
|
+
* an empty string signals "no filesystem output path" (used by
|
|
3604
|
+
* pr-review). Path-aware so consumer overrides on
|
|
3605
|
+
* `AgentConfigOptions.paths` propagate into the rendered table.
|
|
3606
|
+
*/
|
|
3607
|
+
readonly resolveOutputPath: (paths: ResolvedAgentPaths) => string;
|
|
3608
|
+
/**
|
|
3609
|
+
* One-line purpose description. Lifted from the first prose
|
|
3610
|
+
* sentence of the original `<bundle>-workflow` rule so consumers
|
|
3611
|
+
* keep the same routing signal.
|
|
3612
|
+
*/
|
|
3613
|
+
readonly purpose: string;
|
|
3614
|
+
/**
|
|
3615
|
+
* Name of the original `<bundle>-workflow` rule. Used by the
|
|
3616
|
+
* registry helper to filter the resolved bundle list and assert
|
|
3617
|
+
* (via the test suite) that no bundle still ships its workflow
|
|
3618
|
+
* rule into the Claude platform output.
|
|
3619
|
+
*/
|
|
3620
|
+
readonly workflowRuleName: string;
|
|
3621
|
+
}
|
|
3622
|
+
/**
|
|
3623
|
+
* Static registry of every phased-agent bundle that contributes a
|
|
3624
|
+
* routing row. Order is alphabetical by bundle name so the
|
|
3625
|
+
* rendered table is stable across runs and consumer-side diffs are
|
|
3626
|
+
* minimal. Adding a new phased-agent bundle requires appending one
|
|
3627
|
+
* row here and suppressing its `<bundle>-workflow` rule via
|
|
3628
|
+
* `platforms: { claude: { exclude: true } }`.
|
|
3629
|
+
*/
|
|
3630
|
+
declare const AGENT_REGISTRY_ENTRIES: ReadonlyArray<AgentRegistryEntry>;
|
|
3631
|
+
/**
|
|
3632
|
+
* The set of `<bundle>-workflow` rule names that the registry
|
|
3633
|
+
* subsumes. Used both to suppress those rules from the Claude
|
|
3634
|
+
* platform output and to assert in tests that no bundle still
|
|
3635
|
+
* ships its prose summary into CLAUDE.md.
|
|
3636
|
+
*/
|
|
3637
|
+
declare const SUPPRESSED_WORKFLOW_RULE_NAMES: ReadonlyArray<string>;
|
|
3638
|
+
/**
|
|
3639
|
+
* Returns `true` when the supplied rule name belongs to a
|
|
3640
|
+
* phased-agent `<bundle>-workflow` rule whose routing summary now
|
|
3641
|
+
* lives in the shared `agent-registry` rule.
|
|
3642
|
+
*/
|
|
3643
|
+
declare function isSuppressedWorkflowRule(name: string): boolean;
|
|
3644
|
+
/**
|
|
3645
|
+
* Reverse map from a `<bundle>-workflow` rule name to its owning
|
|
3646
|
+
* bundle name. Used by the registry consolidation loop to detect
|
|
3647
|
+
* when a consumer has targeted a bundle with a
|
|
3648
|
+
* `features.customDocSections` entry — those bundles keep
|
|
3649
|
+
* rendering their workflow rule into CLAUDE.md so the consumer-
|
|
3650
|
+
* supplied prose has somewhere to live. Returns `undefined` for
|
|
3651
|
+
* any rule name that is not in the registry's suppression list.
|
|
3652
|
+
*/
|
|
3653
|
+
declare function bundleNameForWorkflowRule(ruleName: string): string | undefined;
|
|
3654
|
+
/**
|
|
3655
|
+
* Build the consolidated agent-registry rule for the supplied
|
|
3656
|
+
* resolved bundle list. The helper:
|
|
3657
|
+
*
|
|
3658
|
+
* 1. Filters `AGENT_REGISTRY_ENTRIES` to bundles that are actually
|
|
3659
|
+
* active in the consumer's resolved bundle set (so a consumer
|
|
3660
|
+
* that excludes `bcm-writer` doesn't see a row for it).
|
|
3661
|
+
* 2. Renders one alphabetically-sorted markdown table row per
|
|
3662
|
+
* surviving entry, with skill / agent / bundle / output-path /
|
|
3663
|
+
* purpose columns.
|
|
3664
|
+
* 3. Returns a single ALWAYS-scoped `agent-registry` rule whose
|
|
3665
|
+
* body opens with a 2-3 sentence preamble explaining the
|
|
3666
|
+
* routing model and pointing at `.claude/agents/<name>.md` for
|
|
3667
|
+
* full prompts and the cross-cutting convention rules at the
|
|
3668
|
+
* top of CLAUDE.md.
|
|
3669
|
+
*
|
|
3670
|
+
* Consumers with no phased-agent bundle active receive `undefined`
|
|
3671
|
+
* and the rule is dropped from the resolved set — there is no
|
|
3672
|
+
* routing to summarise.
|
|
3673
|
+
*/
|
|
3674
|
+
declare function buildAgentRegistryRule(bundles: ReadonlyArray<AgentRuleBundle>, paths: ResolvedAgentPaths): AgentRule | undefined;
|
|
3675
|
+
|
|
3391
3676
|
/**
|
|
3392
3677
|
* Agenda bundle — enabled by default.
|
|
3393
3678
|
*
|
|
@@ -3601,7 +3886,7 @@ declare const businessModelsBundle: AgentRuleBundle;
|
|
|
3601
3886
|
* `/analyze-segment`), and `type:company-profile` plus `company:*`
|
|
3602
3887
|
* phase labels for the six phases.
|
|
3603
3888
|
*/
|
|
3604
|
-
declare function buildCompanyProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
3889
|
+
declare function buildCompanyProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
3605
3890
|
/**
|
|
3606
3891
|
* Default-paths instance of the company-profile bundle, preserved for
|
|
3607
3892
|
* backward compatibility with consumers that import the const
|
|
@@ -3638,7 +3923,7 @@ declare const companyProfileBundle: AgentRuleBundle;
|
|
|
3638
3923
|
* unmet need to `req:scan` seed via the shared software-profile
|
|
3639
3924
|
* feature matrix.
|
|
3640
3925
|
*/
|
|
3641
|
-
declare function buildCustomerProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
3926
|
+
declare function buildCustomerProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
3642
3927
|
/**
|
|
3643
3928
|
* Default-paths instance of the customer-profile bundle, preserved
|
|
3644
3929
|
* for backward compatibility with consumers that import the const
|
|
@@ -3805,7 +4090,7 @@ declare const jestBundle: AgentRuleBundle;
|
|
|
3805
4090
|
* automatically pick up the label taxonomy through the sync-labels
|
|
3806
4091
|
* workflow.
|
|
3807
4092
|
*/
|
|
3808
|
-
declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
4093
|
+
declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
3809
4094
|
/**
|
|
3810
4095
|
* Default-paths instance of the maintenance-audit bundle, preserved
|
|
3811
4096
|
* for backward compatibility with consumers that import the const
|
|
@@ -3815,8 +4100,17 @@ declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths, issueDe
|
|
|
3815
4100
|
declare const maintenanceAuditBundle: AgentRuleBundle;
|
|
3816
4101
|
|
|
3817
4102
|
/**
|
|
3818
|
-
*
|
|
3819
|
-
*
|
|
4103
|
+
* Build the meeting-analysis bundle with the supplied default sub-agent
|
|
4104
|
+
* model tier. The tier knob lets consumers globally demote the
|
|
4105
|
+
* `meeting-analyst` sub-agent to BALANCED (sonnet) — which is the
|
|
4106
|
+
* post-2026-05-08 default — without forking the bundle.
|
|
4107
|
+
*/
|
|
4108
|
+
declare function buildMeetingAnalysisBundle(tier?: AgentModel): AgentRuleBundle;
|
|
4109
|
+
/**
|
|
4110
|
+
* Default-tier instance of the meeting-analysis bundle, preserved for
|
|
4111
|
+
* backward compatibility with consumers that import the const directly.
|
|
4112
|
+
* The factory above is the canonical entry point when a consumer
|
|
4113
|
+
* supplies `AgentConfigOptions.defaultAgentTier`.
|
|
3820
4114
|
*/
|
|
3821
4115
|
declare const meetingAnalysisBundle: AgentRuleBundle;
|
|
3822
4116
|
|
|
@@ -4574,17 +4868,19 @@ declare function renderUnblockDependentsScript(ud: ResolvedUnblockDependents): s
|
|
|
4574
4868
|
|
|
4575
4869
|
/**
|
|
4576
4870
|
* Build the check-blocked.sh procedure definition for a given resolved
|
|
4577
|
-
* tier table
|
|
4578
|
-
*
|
|
4579
|
-
*
|
|
4580
|
-
*
|
|
4581
|
-
* orchestrator-conventions rule documents.
|
|
4871
|
+
* tier table and scope gate. `AgentConfig.preSynthesize` calls this
|
|
4872
|
+
* with the consumer's resolved configs so the emitted script's
|
|
4873
|
+
* `tier_of()` lookup and `scope_of()` thresholds match whatever the
|
|
4874
|
+
* rendered orchestrator-conventions rule documents.
|
|
4582
4875
|
*
|
|
4583
4876
|
* Scope-gate settings default to the bundle's built-in defaults
|
|
4584
4877
|
* (small: ≤3 AC + ≤2 sources; medium: ≤6 AC + ≤5 sources;
|
|
4585
|
-
* auto-file off) when the caller omits them.
|
|
4586
|
-
*
|
|
4587
|
-
*
|
|
4878
|
+
* auto-file off) when the caller omits them.
|
|
4879
|
+
*
|
|
4880
|
+
* The `runRatio` parameter is retained for API compatibility but is no
|
|
4881
|
+
* longer rendered into the script — the orchestrator runs a single
|
|
4882
|
+
* linear cycle on every invocation, so the run counter / tick
|
|
4883
|
+
* subcommand were retired.
|
|
4588
4884
|
*/
|
|
4589
4885
|
declare function buildCheckBlockedProcedure(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio): AgentProcedure;
|
|
4590
4886
|
/*******************************************************************************
|
|
@@ -4605,15 +4901,22 @@ declare function buildCheckBlockedProcedure(tiers: ReadonlyArray<ResolvedAgentTi
|
|
|
4605
4901
|
declare function buildUnblockDependentsProcedure(unblockDependents?: ResolvedUnblockDependents): AgentProcedure;
|
|
4606
4902
|
/**
|
|
4607
4903
|
* Build the orchestrator-conventions rule content for a given resolved
|
|
4608
|
-
* tier table, scope gate,
|
|
4609
|
-
*
|
|
4610
|
-
*
|
|
4611
|
-
*
|
|
4904
|
+
* tier table, scope gate, scheduled-tasks, and unblock-dependents
|
|
4905
|
+
* config. The preamble is constant; each section below it is rendered
|
|
4906
|
+
* from the supplied values so consumer overrides propagate into the
|
|
4907
|
+
* generated rule.
|
|
4612
4908
|
*
|
|
4613
4909
|
* Every optional parameter defaults to the bundle's built-in default
|
|
4614
4910
|
* when the caller omits it.
|
|
4911
|
+
*
|
|
4912
|
+
* The `runRatio` parameter is retained for API compatibility but is
|
|
4913
|
+
* no longer rendered into the conventions content — the orchestrator
|
|
4914
|
+
* runs a single linear cycle on every invocation, so the
|
|
4915
|
+
* dispatch/housekeeping ratio convention was retired. See Phase B
|
|
4916
|
+
* (PR review sweep) in `.claude/agents/orchestrator.md` for the
|
|
4917
|
+
* replacement workflow.
|
|
4615
4918
|
*/
|
|
4616
|
-
declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate,
|
|
4919
|
+
declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, _runRatio?: ResolvedRunRatio, scheduledTasks?: ResolvedScheduledTasks, unblockDependents?: ResolvedUnblockDependents, excludeBundles?: ReadonlyArray<string>): string;
|
|
4617
4920
|
/**
|
|
4618
4921
|
* Resolve the orchestrator-conventions rule content and the
|
|
4619
4922
|
* check-blocked.sh procedure content for a given (possibly absent)
|
|
@@ -4624,6 +4927,12 @@ declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<Resolv
|
|
|
4624
4927
|
* scheduled-tasks config alongside both rendered artifacts so callers
|
|
4625
4928
|
* can splice them into their rule map and procedure map in a single
|
|
4626
4929
|
* pass.
|
|
4930
|
+
*
|
|
4931
|
+
* The `runRatio` parameter is retained for API compatibility but no
|
|
4932
|
+
* longer feeds the rendered conventions content or the
|
|
4933
|
+
* `check-blocked.sh` script — the orchestrator runs a single linear
|
|
4934
|
+
* cycle on every invocation, so the run-counter / `tick` subcommand
|
|
4935
|
+
* were retired.
|
|
4627
4936
|
*/
|
|
4628
4937
|
declare function resolveOrchestratorAssets(tierConfig?: AgentTierConfig, scopeGateConfig?: ScopeGateConfig, runRatioConfig?: RunRatioConfig, scheduledTasksConfig?: ScheduledTasksConfig, unblockDependentsConfig?: UnblockDependentsConfig, excludeBundles?: ReadonlyArray<string>): {
|
|
4629
4938
|
readonly tiers: ReadonlyArray<ResolvedAgentTier>;
|
|
@@ -4656,7 +4965,7 @@ declare const orchestratorBundle: AgentRuleBundle;
|
|
|
4656
4965
|
* skills (`/profile-person`, `/refresh-person`), and `type:people-profile`
|
|
4657
4966
|
* plus `people:*` phase labels for the four phases.
|
|
4658
4967
|
*/
|
|
4659
|
-
declare function buildPeopleProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
4968
|
+
declare function buildPeopleProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
4660
4969
|
/**
|
|
4661
4970
|
* Default-paths instance of the people-profile bundle, preserved for
|
|
4662
4971
|
* backward compatibility with consumers that import the const
|
|
@@ -5601,7 +5910,7 @@ declare const slackBundle: AgentRuleBundle;
|
|
|
5601
5910
|
* skills (`/profile-software` and `/map-software`), and
|
|
5602
5911
|
* `type:software-profile` plus `software:*` phase labels.
|
|
5603
5912
|
*/
|
|
5604
|
-
declare function buildSoftwareProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
5913
|
+
declare function buildSoftwareProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
5605
5914
|
/**
|
|
5606
5915
|
* Default-paths instance of the software-profile bundle, preserved
|
|
5607
5916
|
* for backward compatibility with consumers that import the const
|
|
@@ -5713,7 +6022,7 @@ declare const vitestBundle: AgentRuleBundle;
|
|
|
5713
6022
|
* Bundles that do not read any agent path (typescript, jest,
|
|
5714
6023
|
* pnpm, etc.) stay as const exports and are referenced unchanged.
|
|
5715
6024
|
*/
|
|
5716
|
-
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): ReadonlyArray<AgentRuleBundle>;
|
|
6025
|
+
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel>): ReadonlyArray<AgentRuleBundle>;
|
|
5717
6026
|
/**
|
|
5718
6027
|
* Built-in rule bundles assembled with the default agent paths.
|
|
5719
6028
|
* Preserved for backward compatibility with tests and consumers
|
|
@@ -9840,4 +10149,4 @@ declare function pinPnpmActionSetup(project: Project$1): void;
|
|
|
9840
10149
|
*/
|
|
9841
10150
|
declare function pinSetupNodeVersion(project: Project$1): void;
|
|
9842
10151
|
|
|
9843
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, 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, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, 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_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, 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 ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, 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, type TemplateResolveResult, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, 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, 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 };
|
|
10152
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, 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, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, 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_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, 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 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, type TemplateResolveResult, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, 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, 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 };
|