@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.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,37 @@ 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";
|
|
2763
|
+
/**
|
|
2764
|
+
* Per-bundle override for `defaultAgentTier`. Bundle name keyed
|
|
2765
|
+
* (matches the bundle's `name` field, e.g. `'meeting-analysis'`,
|
|
2766
|
+
* `'company-profile'`). Bundles not present in the map fall back
|
|
2767
|
+
* to `defaultAgentTier`.
|
|
2768
|
+
*
|
|
2769
|
+
* Only the six tier-aware bundles (`meeting-analysis`,
|
|
2770
|
+
* `company-profile`, `customer-profile`, `people-profile`,
|
|
2771
|
+
* `software-profile`, `maintenance-audit`) read this map — the
|
|
2772
|
+
* four reviewer/orchestrator agents (orchestrator, issue-worker,
|
|
2773
|
+
* pr-reviewer, requirements-reviewer) ignore both this map and
|
|
2774
|
+
* `defaultAgentTier` and stay on POWERFUL.
|
|
2775
|
+
*
|
|
2776
|
+
* Synth fails with a clear error if a key in the map does not
|
|
2777
|
+
* match one of the six tier-aware bundle names — typos or
|
|
2778
|
+
* deprecated bundle names would otherwise be silently ignored.
|
|
2779
|
+
*
|
|
2780
|
+
* @default {}
|
|
2781
|
+
*/
|
|
2782
|
+
readonly bundleAgentTiers?: Readonly<Record<string, "powerful" | "balanced" | "fast">>;
|
|
2667
2783
|
/**
|
|
2668
2784
|
* Additional agent rules to generate alongside auto-detected and bundled rules.
|
|
2669
2785
|
* Custom rules override bundled rules of the same name.
|
|
@@ -2681,6 +2797,23 @@ interface AgentConfigOptions {
|
|
|
2681
2797
|
* Custom procedure definitions (executable shell scripts).
|
|
2682
2798
|
*/
|
|
2683
2799
|
readonly procedures?: ReadonlyArray<AgentProcedure>;
|
|
2800
|
+
/**
|
|
2801
|
+
* Slash commands rendered to `.claude/commands/<name>.md`. Includes any
|
|
2802
|
+
* default commands shipped by an active bundle (e.g. the orchestrator
|
|
2803
|
+
* bundle's `/orchestrate`, `/check-blocked`, `/scan`) plus
|
|
2804
|
+
* consumer-supplied commands. A consumer command whose name collides
|
|
2805
|
+
* with a default wins (override semantics, mirroring `subAgents` /
|
|
2806
|
+
* `skills` / `rules`). Use `excludeCommands` to drop a specific
|
|
2807
|
+
* default by name.
|
|
2808
|
+
*/
|
|
2809
|
+
readonly commands?: ReadonlyArray<AgentCommand>;
|
|
2810
|
+
/**
|
|
2811
|
+
* Names of default commands to exclude from rendering. Each entry is
|
|
2812
|
+
* the bare command name (no leading slash). Use this to drop a single
|
|
2813
|
+
* bundle-shipped default without disabling the whole bundle.
|
|
2814
|
+
* @example ['scan']
|
|
2815
|
+
*/
|
|
2816
|
+
readonly excludeCommands?: ReadonlyArray<string>;
|
|
2684
2817
|
/**
|
|
2685
2818
|
* MCP server configurations. Cross-platform — rendered to the appropriate
|
|
2686
2819
|
* config file for each platform.
|
|
@@ -2769,6 +2902,19 @@ interface AgentConfigOptions {
|
|
|
2769
2902
|
* Generated to .claude/settings.json (committed, team-shared).
|
|
2770
2903
|
*/
|
|
2771
2904
|
readonly claudeSettings?: ClaudeSettingsConfig;
|
|
2905
|
+
/**
|
|
2906
|
+
* CLAUDE.md rendering tuning knobs.
|
|
2907
|
+
*
|
|
2908
|
+
* Currently exposes a single switch (`injectBundleHooks`) that
|
|
2909
|
+
* suppresses the four "see also" subsections each phased-agent
|
|
2910
|
+
* `<bundle>-workflow` rule otherwise receives. The convention
|
|
2911
|
+
* rules themselves still render — this only drops the duplicated
|
|
2912
|
+
* per-bundle pointers. Default behaviour is unchanged for
|
|
2913
|
+
* back-compat.
|
|
2914
|
+
*
|
|
2915
|
+
* @see ClaudeMdConfig
|
|
2916
|
+
*/
|
|
2917
|
+
readonly claudeMd?: ClaudeMdConfig;
|
|
2772
2918
|
/**
|
|
2773
2919
|
* Cursor-specific configuration. Generates .cursor/hooks.json for
|
|
2774
2920
|
* lifecycle hooks and .cursorignore / .cursorindexingignore for
|
|
@@ -3213,12 +3359,51 @@ declare class AgentConfig extends Component {
|
|
|
3213
3359
|
*/
|
|
3214
3360
|
private static hasActiveTierExamples;
|
|
3215
3361
|
/**
|
|
3216
|
-
* Merges default Claude permissions with bundle and
|
|
3217
|
-
*
|
|
3218
|
-
*
|
|
3219
|
-
*
|
|
3362
|
+
* Merges default Claude permissions and hooks with bundle and
|
|
3363
|
+
* user-supplied settings.
|
|
3364
|
+
*
|
|
3365
|
+
* Permission merge order: defaults → bundle permissions → user-supplied
|
|
3366
|
+
* entries. Both `allow` and `deny` are deduped via
|
|
3367
|
+
* `Array.from(new Set(...))`; V8 `Set` iteration preserves insertion
|
|
3368
|
+
* order, so the final ordering is defaults first, then bundle, then
|
|
3369
|
+
* user, with duplicates removed (first-occurrence wins). `defaultMode`
|
|
3370
|
+
* defaults to `"dontAsk"` unless overridden — see the inline comment
|
|
3371
|
+
* on the literal below for the autonomous-worker rationale.
|
|
3372
|
+
*
|
|
3373
|
+
* Hooks merge: consumer-supplied entries first, then default entries
|
|
3374
|
+
* (Stop, PostToolUse), deduped by `(matcher, JSON-serialized hooks)`.
|
|
3375
|
+
* Defaults are skipped entirely when `disableAllHooks: true` is set —
|
|
3376
|
+
* the `disableAllHooks` flag passes through to the rendered file so
|
|
3377
|
+
* Claude Code suppresses every project-level hook at runtime, and the
|
|
3378
|
+
* defaults are dropped at synth time so the rendered file does not
|
|
3379
|
+
* carry orphan entries that would re-fire if the operator later flipped
|
|
3380
|
+
* the flag back off.
|
|
3381
|
+
*
|
|
3382
|
+
* Env merge: defaults from `DEFAULT_CLAUDE_ENV` (e.g.
|
|
3383
|
+
* `ENABLE_TOOL_SEARCH=1`) layer first, then consumer-supplied
|
|
3384
|
+
* `claudeSettings.env` entries override on key collision. Sibling keys
|
|
3385
|
+
* from both sources land in the rendered file.
|
|
3220
3386
|
*/
|
|
3221
3387
|
private static mergeClaudeDefaults;
|
|
3388
|
+
/**
|
|
3389
|
+
* Merge default lifecycle hooks (Stop, PostToolUse) with consumer-
|
|
3390
|
+
* supplied entries on `claudeSettings.hooks`. Consumer entries appear
|
|
3391
|
+
* first so a downstream override that wires a faster lint/format hook
|
|
3392
|
+
* runs ahead of the defaults; defaults are appended after.
|
|
3393
|
+
*
|
|
3394
|
+
* Returns `undefined` when neither defaults nor consumer entries
|
|
3395
|
+
* remain — the renderer skips the `hooks` key entirely in that case
|
|
3396
|
+
* so opt-out repos do not ship an empty `"hooks": {}` object.
|
|
3397
|
+
*
|
|
3398
|
+
* Defaults are gated on `disableAllHooks !== true`. When the flag is
|
|
3399
|
+
* set we still pass through any consumer-supplied entries (the
|
|
3400
|
+
* runtime-level `disableAllHooks: true` is what suppresses execution),
|
|
3401
|
+
* but we never inject the bundle defaults. That keeps the disable-all
|
|
3402
|
+
* escape hatch idempotent: flipping the flag drops the bundle's
|
|
3403
|
+
* default surface area instead of leaving the entries on disk for a
|
|
3404
|
+
* future re-enable.
|
|
3405
|
+
*/
|
|
3406
|
+
private static mergeClaudeHooks;
|
|
3222
3407
|
private readonly options;
|
|
3223
3408
|
private cachedBundles?;
|
|
3224
3409
|
private cachedPaths?;
|
|
@@ -3264,6 +3449,16 @@ declare class AgentConfig extends Component {
|
|
|
3264
3449
|
private resolveSkills;
|
|
3265
3450
|
private resolveSubAgents;
|
|
3266
3451
|
private resolveProcedures;
|
|
3452
|
+
/**
|
|
3453
|
+
* Resolves the final list of slash commands by merging bundle-shipped
|
|
3454
|
+
* defaults with consumer-supplied entries. Mirrors {@link resolveSkills}
|
|
3455
|
+
* and {@link resolveSubAgents}: auto-detected bundles contribute first,
|
|
3456
|
+
* force-included bundles overlay, and consumer commands override on
|
|
3457
|
+
* name collision. Names listed in `excludeCommands` are dropped after
|
|
3458
|
+
* the merge so consumers can opt out of a single default without
|
|
3459
|
+
* disabling the whole bundle.
|
|
3460
|
+
*/
|
|
3461
|
+
private resolveCommands;
|
|
3267
3462
|
/**
|
|
3268
3463
|
* Resolves template variables in rule content using project metadata.
|
|
3269
3464
|
* Emits synthesis warnings for rules with unresolved variables.
|
|
@@ -3437,6 +3632,96 @@ declare const DEFAULT_AGENT_PATHS: ResolvedAgentPaths;
|
|
|
3437
3632
|
*/
|
|
3438
3633
|
declare function resolveAgentPaths(paths?: AgentPathsConfig): ResolvedAgentPaths;
|
|
3439
3634
|
|
|
3635
|
+
/**
|
|
3636
|
+
* One row in the rendered agent registry table. Each phased-agent
|
|
3637
|
+
* bundle that previously shipped its own `<bundle>-workflow` rule
|
|
3638
|
+
* contributes exactly one entry here so the registry can answer
|
|
3639
|
+
* "which agent handles X" without rendering 18 prose summaries
|
|
3640
|
+
* into CLAUDE.md.
|
|
3641
|
+
*/
|
|
3642
|
+
interface AgentRegistryEntry {
|
|
3643
|
+
/** Bundle name as it appears in `buildBuiltInBundles`, e.g. `bcm-writer`. */
|
|
3644
|
+
readonly bundle: string;
|
|
3645
|
+
/** Primary user-invocable skill, with leading slash, e.g. `/write-bcm`. */
|
|
3646
|
+
readonly skill: string;
|
|
3647
|
+
/** Sub-agent name in `.claude/agents/`, e.g. `bcm-writer`. */
|
|
3648
|
+
readonly agent: string;
|
|
3649
|
+
/**
|
|
3650
|
+
* Function that resolves the canonical output path for this
|
|
3651
|
+
* bundle from the project's resolved agent-path roots. Returning
|
|
3652
|
+
* an empty string signals "no filesystem output path" (used by
|
|
3653
|
+
* pr-review). Path-aware so consumer overrides on
|
|
3654
|
+
* `AgentConfigOptions.paths` propagate into the rendered table.
|
|
3655
|
+
*/
|
|
3656
|
+
readonly resolveOutputPath: (paths: ResolvedAgentPaths) => string;
|
|
3657
|
+
/**
|
|
3658
|
+
* One-line purpose description. Lifted from the first prose
|
|
3659
|
+
* sentence of the original `<bundle>-workflow` rule so consumers
|
|
3660
|
+
* keep the same routing signal.
|
|
3661
|
+
*/
|
|
3662
|
+
readonly purpose: string;
|
|
3663
|
+
/**
|
|
3664
|
+
* Name of the original `<bundle>-workflow` rule. Used by the
|
|
3665
|
+
* registry helper to filter the resolved bundle list and assert
|
|
3666
|
+
* (via the test suite) that no bundle still ships its workflow
|
|
3667
|
+
* rule into the Claude platform output.
|
|
3668
|
+
*/
|
|
3669
|
+
readonly workflowRuleName: string;
|
|
3670
|
+
}
|
|
3671
|
+
/**
|
|
3672
|
+
* Static registry of every phased-agent bundle that contributes a
|
|
3673
|
+
* routing row. Order is alphabetical by bundle name so the
|
|
3674
|
+
* rendered table is stable across runs and consumer-side diffs are
|
|
3675
|
+
* minimal. Adding a new phased-agent bundle requires appending one
|
|
3676
|
+
* row here and suppressing its `<bundle>-workflow` rule via
|
|
3677
|
+
* `platforms: { claude: { exclude: true } }`.
|
|
3678
|
+
*/
|
|
3679
|
+
declare const AGENT_REGISTRY_ENTRIES: ReadonlyArray<AgentRegistryEntry>;
|
|
3680
|
+
/**
|
|
3681
|
+
* The set of `<bundle>-workflow` rule names that the registry
|
|
3682
|
+
* subsumes. Used both to suppress those rules from the Claude
|
|
3683
|
+
* platform output and to assert in tests that no bundle still
|
|
3684
|
+
* ships its prose summary into CLAUDE.md.
|
|
3685
|
+
*/
|
|
3686
|
+
declare const SUPPRESSED_WORKFLOW_RULE_NAMES: ReadonlyArray<string>;
|
|
3687
|
+
/**
|
|
3688
|
+
* Returns `true` when the supplied rule name belongs to a
|
|
3689
|
+
* phased-agent `<bundle>-workflow` rule whose routing summary now
|
|
3690
|
+
* lives in the shared `agent-registry` rule.
|
|
3691
|
+
*/
|
|
3692
|
+
declare function isSuppressedWorkflowRule(name: string): boolean;
|
|
3693
|
+
/**
|
|
3694
|
+
* Reverse map from a `<bundle>-workflow` rule name to its owning
|
|
3695
|
+
* bundle name. Used by the registry consolidation loop to detect
|
|
3696
|
+
* when a consumer has targeted a bundle with a
|
|
3697
|
+
* `features.customDocSections` entry — those bundles keep
|
|
3698
|
+
* rendering their workflow rule into CLAUDE.md so the consumer-
|
|
3699
|
+
* supplied prose has somewhere to live. Returns `undefined` for
|
|
3700
|
+
* any rule name that is not in the registry's suppression list.
|
|
3701
|
+
*/
|
|
3702
|
+
declare function bundleNameForWorkflowRule(ruleName: string): string | undefined;
|
|
3703
|
+
/**
|
|
3704
|
+
* Build the consolidated agent-registry rule for the supplied
|
|
3705
|
+
* resolved bundle list. The helper:
|
|
3706
|
+
*
|
|
3707
|
+
* 1. Filters `AGENT_REGISTRY_ENTRIES` to bundles that are actually
|
|
3708
|
+
* active in the consumer's resolved bundle set (so a consumer
|
|
3709
|
+
* that excludes `bcm-writer` doesn't see a row for it).
|
|
3710
|
+
* 2. Renders one alphabetically-sorted markdown table row per
|
|
3711
|
+
* surviving entry, with skill / agent / bundle / output-path /
|
|
3712
|
+
* purpose columns.
|
|
3713
|
+
* 3. Returns a single ALWAYS-scoped `agent-registry` rule whose
|
|
3714
|
+
* body opens with a 2-3 sentence preamble explaining the
|
|
3715
|
+
* routing model and pointing at `.claude/agents/<name>.md` for
|
|
3716
|
+
* full prompts and the cross-cutting convention rules at the
|
|
3717
|
+
* top of CLAUDE.md.
|
|
3718
|
+
*
|
|
3719
|
+
* Consumers with no phased-agent bundle active receive `undefined`
|
|
3720
|
+
* and the rule is dropped from the resolved set — there is no
|
|
3721
|
+
* routing to summarise.
|
|
3722
|
+
*/
|
|
3723
|
+
declare function buildAgentRegistryRule(bundles: ReadonlyArray<AgentRuleBundle>, paths: ResolvedAgentPaths): AgentRule | undefined;
|
|
3724
|
+
|
|
3440
3725
|
/**
|
|
3441
3726
|
* Agenda bundle — enabled by default.
|
|
3442
3727
|
*
|
|
@@ -3650,7 +3935,7 @@ declare const businessModelsBundle: AgentRuleBundle;
|
|
|
3650
3935
|
* `/analyze-segment`), and `type:company-profile` plus `company:*`
|
|
3651
3936
|
* phase labels for the six phases.
|
|
3652
3937
|
*/
|
|
3653
|
-
declare function buildCompanyProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
3938
|
+
declare function buildCompanyProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
3654
3939
|
/**
|
|
3655
3940
|
* Default-paths instance of the company-profile bundle, preserved for
|
|
3656
3941
|
* backward compatibility with consumers that import the const
|
|
@@ -3687,7 +3972,7 @@ declare const companyProfileBundle: AgentRuleBundle;
|
|
|
3687
3972
|
* unmet need to `req:scan` seed via the shared software-profile
|
|
3688
3973
|
* feature matrix.
|
|
3689
3974
|
*/
|
|
3690
|
-
declare function buildCustomerProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
3975
|
+
declare function buildCustomerProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
3691
3976
|
/**
|
|
3692
3977
|
* Default-paths instance of the customer-profile bundle, preserved
|
|
3693
3978
|
* for backward compatibility with consumers that import the const
|
|
@@ -3854,7 +4139,7 @@ declare const jestBundle: AgentRuleBundle;
|
|
|
3854
4139
|
* automatically pick up the label taxonomy through the sync-labels
|
|
3855
4140
|
* workflow.
|
|
3856
4141
|
*/
|
|
3857
|
-
declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
4142
|
+
declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
3858
4143
|
/**
|
|
3859
4144
|
* Default-paths instance of the maintenance-audit bundle, preserved
|
|
3860
4145
|
* for backward compatibility with consumers that import the const
|
|
@@ -3864,8 +4149,17 @@ declare function buildMaintenanceAuditBundle(paths?: ResolvedAgentPaths, issueDe
|
|
|
3864
4149
|
declare const maintenanceAuditBundle: AgentRuleBundle;
|
|
3865
4150
|
|
|
3866
4151
|
/**
|
|
3867
|
-
*
|
|
3868
|
-
*
|
|
4152
|
+
* Build the meeting-analysis bundle with the supplied default sub-agent
|
|
4153
|
+
* model tier. The tier knob lets consumers globally demote the
|
|
4154
|
+
* `meeting-analyst` sub-agent to BALANCED (sonnet) — which is the
|
|
4155
|
+
* post-2026-05-08 default — without forking the bundle.
|
|
4156
|
+
*/
|
|
4157
|
+
declare function buildMeetingAnalysisBundle(tier?: AgentModel): AgentRuleBundle;
|
|
4158
|
+
/**
|
|
4159
|
+
* Default-tier instance of the meeting-analysis bundle, preserved for
|
|
4160
|
+
* backward compatibility with consumers that import the const directly.
|
|
4161
|
+
* The factory above is the canonical entry point when a consumer
|
|
4162
|
+
* supplies `AgentConfigOptions.defaultAgentTier`.
|
|
3869
4163
|
*/
|
|
3870
4164
|
declare const meetingAnalysisBundle: AgentRuleBundle;
|
|
3871
4165
|
|
|
@@ -4623,17 +4917,19 @@ declare function renderUnblockDependentsScript(ud: ResolvedUnblockDependents): s
|
|
|
4623
4917
|
|
|
4624
4918
|
/**
|
|
4625
4919
|
* Build the check-blocked.sh procedure definition for a given resolved
|
|
4626
|
-
* tier table
|
|
4627
|
-
*
|
|
4628
|
-
*
|
|
4629
|
-
*
|
|
4630
|
-
* orchestrator-conventions rule documents.
|
|
4920
|
+
* tier table and scope gate. `AgentConfig.preSynthesize` calls this
|
|
4921
|
+
* with the consumer's resolved configs so the emitted script's
|
|
4922
|
+
* `tier_of()` lookup and `scope_of()` thresholds match whatever the
|
|
4923
|
+
* rendered orchestrator-conventions rule documents.
|
|
4631
4924
|
*
|
|
4632
4925
|
* Scope-gate settings default to the bundle's built-in defaults
|
|
4633
4926
|
* (small: ≤3 AC + ≤2 sources; medium: ≤6 AC + ≤5 sources;
|
|
4634
|
-
* auto-file off) when the caller omits them.
|
|
4635
|
-
*
|
|
4636
|
-
*
|
|
4927
|
+
* auto-file off) when the caller omits them.
|
|
4928
|
+
*
|
|
4929
|
+
* The `runRatio` parameter is retained for API compatibility but is no
|
|
4930
|
+
* longer rendered into the script — the orchestrator runs a single
|
|
4931
|
+
* linear cycle on every invocation, so the run counter / tick
|
|
4932
|
+
* subcommand were retired.
|
|
4637
4933
|
*/
|
|
4638
4934
|
declare function buildCheckBlockedProcedure(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio): AgentProcedure;
|
|
4639
4935
|
/*******************************************************************************
|
|
@@ -4654,15 +4950,22 @@ declare function buildCheckBlockedProcedure(tiers: ReadonlyArray<ResolvedAgentTi
|
|
|
4654
4950
|
declare function buildUnblockDependentsProcedure(unblockDependents?: ResolvedUnblockDependents): AgentProcedure;
|
|
4655
4951
|
/**
|
|
4656
4952
|
* Build the orchestrator-conventions rule content for a given resolved
|
|
4657
|
-
* tier table, scope gate,
|
|
4658
|
-
*
|
|
4659
|
-
*
|
|
4660
|
-
*
|
|
4953
|
+
* tier table, scope gate, scheduled-tasks, and unblock-dependents
|
|
4954
|
+
* config. The preamble is constant; each section below it is rendered
|
|
4955
|
+
* from the supplied values so consumer overrides propagate into the
|
|
4956
|
+
* generated rule.
|
|
4661
4957
|
*
|
|
4662
4958
|
* Every optional parameter defaults to the bundle's built-in default
|
|
4663
4959
|
* when the caller omits it.
|
|
4960
|
+
*
|
|
4961
|
+
* The `runRatio` parameter is retained for API compatibility but is
|
|
4962
|
+
* no longer rendered into the conventions content — the orchestrator
|
|
4963
|
+
* runs a single linear cycle on every invocation, so the
|
|
4964
|
+
* dispatch/housekeeping ratio convention was retired. See Phase B
|
|
4965
|
+
* (PR review sweep) in `.claude/agents/orchestrator.md` for the
|
|
4966
|
+
* replacement workflow.
|
|
4664
4967
|
*/
|
|
4665
|
-
declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate,
|
|
4968
|
+
declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, _runRatio?: ResolvedRunRatio, scheduledTasks?: ResolvedScheduledTasks, unblockDependents?: ResolvedUnblockDependents, excludeBundles?: ReadonlyArray<string>): string;
|
|
4666
4969
|
/**
|
|
4667
4970
|
* Resolve the orchestrator-conventions rule content and the
|
|
4668
4971
|
* check-blocked.sh procedure content for a given (possibly absent)
|
|
@@ -4673,6 +4976,12 @@ declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<Resolv
|
|
|
4673
4976
|
* scheduled-tasks config alongside both rendered artifacts so callers
|
|
4674
4977
|
* can splice them into their rule map and procedure map in a single
|
|
4675
4978
|
* pass.
|
|
4979
|
+
*
|
|
4980
|
+
* The `runRatio` parameter is retained for API compatibility but no
|
|
4981
|
+
* longer feeds the rendered conventions content or the
|
|
4982
|
+
* `check-blocked.sh` script — the orchestrator runs a single linear
|
|
4983
|
+
* cycle on every invocation, so the run-counter / `tick` subcommand
|
|
4984
|
+
* were retired.
|
|
4676
4985
|
*/
|
|
4677
4986
|
declare function resolveOrchestratorAssets(tierConfig?: AgentTierConfig, scopeGateConfig?: ScopeGateConfig, runRatioConfig?: RunRatioConfig, scheduledTasksConfig?: ScheduledTasksConfig, unblockDependentsConfig?: UnblockDependentsConfig, excludeBundles?: ReadonlyArray<string>): {
|
|
4678
4987
|
readonly tiers: ReadonlyArray<ResolvedAgentTier>;
|
|
@@ -4705,7 +5014,7 @@ declare const orchestratorBundle: AgentRuleBundle;
|
|
|
4705
5014
|
* skills (`/profile-person`, `/refresh-person`), and `type:people-profile`
|
|
4706
5015
|
* plus `people:*` phase labels for the four phases.
|
|
4707
5016
|
*/
|
|
4708
|
-
declare function buildPeopleProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
5017
|
+
declare function buildPeopleProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
4709
5018
|
/**
|
|
4710
5019
|
* Default-paths instance of the people-profile bundle, preserved for
|
|
4711
5020
|
* backward compatibility with consumers that import the const
|
|
@@ -5650,7 +5959,7 @@ declare const slackBundle: AgentRuleBundle;
|
|
|
5650
5959
|
* skills (`/profile-software` and `/map-software`), and
|
|
5651
5960
|
* `type:software-profile` plus `software:*` phase labels.
|
|
5652
5961
|
*/
|
|
5653
|
-
declare function buildSoftwareProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
|
|
5962
|
+
declare function buildSoftwareProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, tier?: AgentModel): AgentRuleBundle;
|
|
5654
5963
|
/**
|
|
5655
5964
|
* Default-paths instance of the software-profile bundle, preserved
|
|
5656
5965
|
* for backward compatibility with consumers that import the const
|
|
@@ -5762,7 +6071,7 @@ declare const vitestBundle: AgentRuleBundle;
|
|
|
5762
6071
|
* Bundles that do not read any agent path (typescript, jest,
|
|
5763
6072
|
* pnpm, etc.) stay as const exports and are referenced unchanged.
|
|
5764
6073
|
*/
|
|
5765
|
-
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): ReadonlyArray<AgentRuleBundle>;
|
|
6074
|
+
declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults, defaultAgentTier?: AgentModel, bundleAgentTiers?: ReadonlyMap<string, AgentModel>): ReadonlyArray<AgentRuleBundle>;
|
|
5766
6075
|
/**
|
|
5767
6076
|
* Built-in rule bundles assembled with the default agent paths.
|
|
5768
6077
|
* Preserved for backward compatibility with tests and consumers
|
|
@@ -9889,5 +10198,5 @@ declare function pinPnpmActionSetup(project: Project): void;
|
|
|
9889
10198
|
*/
|
|
9890
10199
|
declare function pinSetupNodeVersion(project: Project): void;
|
|
9891
10200
|
|
|
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 };
|
|
10201
|
+
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 };
|
|
10202
|
+
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 };
|