@codedrifters/configulator 0.0.294 → 0.0.296
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 +129 -12
- package/lib/index.d.ts +130 -13
- package/lib/index.js +292 -25
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +286 -25
- package/lib/index.mjs.map +1 -1
- package/package.json +3 -3
package/lib/index.d.mts
CHANGED
|
@@ -3428,6 +3428,111 @@ declare function buildBaseBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
|
3428
3428
|
*/
|
|
3429
3429
|
declare const baseBundle: AgentRuleBundle;
|
|
3430
3430
|
|
|
3431
|
+
/**
|
|
3432
|
+
* Hand-maintained registry mapping every bundle name to the cross-bundle
|
|
3433
|
+
* surface it owns: GitHub `type:*` labels, phase-label prefixes,
|
|
3434
|
+
* scheduled-task IDs, whether it emits Starlight docs, and whether it
|
|
3435
|
+
* declares any downstream issue kinds (i.e. files `gh issue create`
|
|
3436
|
+
* recipes via the issue-templates convention).
|
|
3437
|
+
*
|
|
3438
|
+
* The registry is consulted by renderers in other bundles whenever
|
|
3439
|
+
* `AgentConfigOptions.excludeBundles` is non-empty so cross-bundle
|
|
3440
|
+
* references to an excluded bundle's agents, type labels, phase labels,
|
|
3441
|
+
* or scheduled tasks disappear from the generated output.
|
|
3442
|
+
*
|
|
3443
|
+
* The map is **hand-maintained** rather than derived from each bundle's
|
|
3444
|
+
* runtime shape. The defining surfaces (the funnel-tier table in
|
|
3445
|
+
* `tiers.ts`, the per-phase scope-gate overrides in `scope-gate.ts`, and
|
|
3446
|
+
* the scheduled-tasks registry in `scheduled-tasks.ts`) live as flat
|
|
3447
|
+
* data tables that already get walked by their renderers — declaring the
|
|
3448
|
+
* ownership map alongside them keeps the relationship explicit and
|
|
3449
|
+
* readable without forcing every bundle to grow an "ownership"
|
|
3450
|
+
* descriptor.
|
|
3451
|
+
*
|
|
3452
|
+
* Bundles that ship no cross-bundle surface (e.g. `slack`, `typescript`,
|
|
3453
|
+
* `pnpm`, `vitest`, `jest`, `aws-cdk`, `projen`, `turborepo`,
|
|
3454
|
+
* `upstream-configulator-docs`) deliberately do not appear here —
|
|
3455
|
+
* excluding them is already a no-op since they own nothing other
|
|
3456
|
+
* bundles reference.
|
|
3457
|
+
*/
|
|
3458
|
+
interface BundleOwnership {
|
|
3459
|
+
/**
|
|
3460
|
+
* GitHub `type:*` label values (without the `type:` prefix) the
|
|
3461
|
+
* bundle owns. The funnel-tier table in `tiers.ts` and any rendered
|
|
3462
|
+
* tables that group agents by `type:*` label consult this list.
|
|
3463
|
+
*/
|
|
3464
|
+
readonly typeLabels: ReadonlyArray<string>;
|
|
3465
|
+
/**
|
|
3466
|
+
* Phase-label prefixes (with trailing colon, e.g. `"company:"`) the
|
|
3467
|
+
* bundle owns. Used by the scope-gate per-phase override table and
|
|
3468
|
+
* any other renderer that groups by phase label. An entry without a
|
|
3469
|
+
* trailing colon (e.g. `"req:write"`) is treated as an exact
|
|
3470
|
+
* phase-label match instead of a prefix.
|
|
3471
|
+
*/
|
|
3472
|
+
readonly phaseLabelPrefixes: ReadonlyArray<string>;
|
|
3473
|
+
/**
|
|
3474
|
+
* `taskId` values from `DEFAULT_SCHEDULED_TASK_ENTRIES` that target
|
|
3475
|
+
* this bundle's sub-agent. The scheduled-tasks registry filter in
|
|
3476
|
+
* `agent-config.ts` consults this list when pruning default entries
|
|
3477
|
+
* for an excluded bundle.
|
|
3478
|
+
*/
|
|
3479
|
+
readonly scheduledTaskIds: ReadonlyArray<string>;
|
|
3480
|
+
/**
|
|
3481
|
+
* Whether this bundle emits Starlight content roots — i.e. whether
|
|
3482
|
+
* any of its workflows write files under `docs/src/content/docs/`
|
|
3483
|
+
* (or the configured docs root). Drives the auto-suppression of the
|
|
3484
|
+
* `section-index-pages` rule when no docs-emitting bundle is active.
|
|
3485
|
+
*/
|
|
3486
|
+
readonly emitsDocs: boolean;
|
|
3487
|
+
/**
|
|
3488
|
+
* Whether this bundle dispatches downstream issues (i.e. its
|
|
3489
|
+
* workflows file `gh issue create` recipes). Drives the
|
|
3490
|
+
* auto-suppression of the `issue-templates-convention` rule when no
|
|
3491
|
+
* such bundle is active.
|
|
3492
|
+
*/
|
|
3493
|
+
readonly downstreamIssueKinds: boolean;
|
|
3494
|
+
}
|
|
3495
|
+
/**
|
|
3496
|
+
* Canonical ownership map. Only bundles that own at least one
|
|
3497
|
+
* cross-bundle surface appear here.
|
|
3498
|
+
*/
|
|
3499
|
+
declare const BUNDLE_OWNERSHIP: Readonly<Record<string, BundleOwnership>>;
|
|
3500
|
+
/**
|
|
3501
|
+
* Return `true` when `typeLabel` (without the leading `type:` prefix)
|
|
3502
|
+
* is owned by any bundle in `excludedBundles`. Used by tier-table and
|
|
3503
|
+
* scheduled-task renderers to drop rows whose owning bundle has been
|
|
3504
|
+
* excluded.
|
|
3505
|
+
*/
|
|
3506
|
+
declare function isTypeLabelOwnedByExcluded(typeLabel: string, excludedBundles: ReadonlyArray<string>): boolean;
|
|
3507
|
+
/**
|
|
3508
|
+
* Return `true` when `phaseLabel` is owned by any bundle in
|
|
3509
|
+
* `excludedBundles`. Matches against both prefix entries (with
|
|
3510
|
+
* trailing colon, e.g. `"company:"`) and exact-match entries (without
|
|
3511
|
+
* trailing colon, e.g. `"req:write"`). Used by the scope-gate
|
|
3512
|
+
* per-phase-override table renderer.
|
|
3513
|
+
*/
|
|
3514
|
+
declare function isPhaseLabelOwnedByExcluded(phaseLabel: string, excludedBundles: ReadonlyArray<string>): boolean;
|
|
3515
|
+
/**
|
|
3516
|
+
* Return `true` when the scheduled-task `taskId` is owned by any
|
|
3517
|
+
* bundle in `excludedBundles`. Used by the scheduled-tasks registry
|
|
3518
|
+
* filter to drop default entries pointing at an excluded bundle.
|
|
3519
|
+
*/
|
|
3520
|
+
declare function isScheduledTaskOwnedByExcluded(taskId: string, excludedBundles: ReadonlyArray<string>): boolean;
|
|
3521
|
+
/**
|
|
3522
|
+
* Return `true` when at least one docs-emitting bundle is **not**
|
|
3523
|
+
* excluded. Used by the `section-index-pages` rule auto-suppression
|
|
3524
|
+
* gate — when this returns `false`, the rule is dropped from the
|
|
3525
|
+
* rendered rule map entirely.
|
|
3526
|
+
*/
|
|
3527
|
+
declare function hasAnyDocsEmittingBundle(excludedBundles: ReadonlyArray<string>): boolean;
|
|
3528
|
+
/**
|
|
3529
|
+
* Return `true` when at least one downstream-issue-kind bundle is
|
|
3530
|
+
* **not** excluded. Used by the `issue-templates-convention`
|
|
3531
|
+
* auto-suppression gate — when this returns `false`, the rule body
|
|
3532
|
+
* renders the disabled-stub variant.
|
|
3533
|
+
*/
|
|
3534
|
+
declare function hasAnyDownstreamIssueKindBundle(excludedBundles: ReadonlyArray<string>): boolean;
|
|
3535
|
+
|
|
3431
3536
|
/**
|
|
3432
3537
|
* Build the bcm-writer bundle with the supplied resolved paths.
|
|
3433
3538
|
*
|
|
@@ -3977,7 +4082,7 @@ interface ResolvedScheduledTasks {
|
|
|
3977
4082
|
* duplicate taskIds in a single supplied list) throw a descriptive
|
|
3978
4083
|
* `Error` — callers should not need to guard against it at runtime.
|
|
3979
4084
|
*/
|
|
3980
|
-
declare function resolveScheduledTasks(config?: ScheduledTasksConfig): ResolvedScheduledTasks;
|
|
4085
|
+
declare function resolveScheduledTasks(config?: ScheduledTasksConfig, excludeBundles?: ReadonlyArray<string>): ResolvedScheduledTasks;
|
|
3981
4086
|
/**
|
|
3982
4087
|
* Synth-time validation hook. Throws a descriptive `Error` when the
|
|
3983
4088
|
* supplied `ScheduledTasksConfig` is malformed. Called by
|
|
@@ -3996,7 +4101,7 @@ declare function resolveScheduledTasks(config?: ScheduledTasksConfig): ResolvedS
|
|
|
3996
4101
|
* plain string.
|
|
3997
4102
|
* - Duplicate `taskId` values within the supplied `tasks` list.
|
|
3998
4103
|
*/
|
|
3999
|
-
declare function validateScheduledTasksConfig(config?: ScheduledTasksConfig): ResolvedScheduledTasks;
|
|
4104
|
+
declare function validateScheduledTasksConfig(config?: ScheduledTasksConfig, excludeBundles?: ReadonlyArray<string>): ResolvedScheduledTasks;
|
|
4000
4105
|
/**
|
|
4001
4106
|
* Render the markdown subsection appended to the
|
|
4002
4107
|
* `orchestrator-conventions` rule. Always returns a non-empty string —
|
|
@@ -4235,8 +4340,13 @@ declare function classifyIssueScope(body: string, gate: ResolvedScopeGate, label
|
|
|
4235
4340
|
* `orchestrator-conventions` rule. Always returns a non-empty string
|
|
4236
4341
|
* so the orchestrator rule documents the scope gate even when the
|
|
4237
4342
|
* consumer relies on the defaults.
|
|
4343
|
+
*
|
|
4344
|
+
* When `excludeBundles` is non-empty, per-phase override rows whose
|
|
4345
|
+
* phase label is owned by an excluded bundle are dropped from the
|
|
4346
|
+
* **Per-phase-label thresholds** sub-table. The sub-section as a
|
|
4347
|
+
* whole is hidden when no rows survive.
|
|
4238
4348
|
*/
|
|
4239
|
-
declare function renderScopeGateSection(gate: ResolvedScopeGate): string;
|
|
4349
|
+
declare function renderScopeGateSection(gate: ResolvedScopeGate, excludeBundles?: ReadonlyArray<string>): string;
|
|
4240
4350
|
/**
|
|
4241
4351
|
* Render a shell-script snippet embedded in `check-blocked.sh`. The
|
|
4242
4352
|
* snippet declares a `scope_of()` function that reads an issue body
|
|
@@ -4353,8 +4463,15 @@ declare function validateAgentTierConfig(config?: AgentTierConfig): ReadonlyArra
|
|
|
4353
4463
|
* `orchestrator-conventions` rule. Always returns a non-empty string
|
|
4354
4464
|
* because the default tier list is non-empty — the orchestrator
|
|
4355
4465
|
* always documents its sort order.
|
|
4466
|
+
*
|
|
4467
|
+
* When `excludeBundles` is non-empty, rows whose `type:*` label is
|
|
4468
|
+
* owned by an excluded bundle are dropped before rendering. Tiers
|
|
4469
|
+
* that end up with no surviving rows render an empty `_(none
|
|
4470
|
+
* registered)_` cell for consistency with the existing render — the
|
|
4471
|
+
* tier itself stays in the table so the dispatch ordering is still
|
|
4472
|
+
* documented end-to-end.
|
|
4356
4473
|
*/
|
|
4357
|
-
declare function renderAgentTierSection(tiers: ReadonlyArray<ResolvedAgentTier>): string;
|
|
4474
|
+
declare function renderAgentTierSection(tiers: ReadonlyArray<ResolvedAgentTier>, excludeBundles?: ReadonlyArray<string>): string;
|
|
4358
4475
|
/**
|
|
4359
4476
|
* Render a shell-script snippet that the `check-blocked.sh` procedure
|
|
4360
4477
|
* uses to look up a tier for a given `type:*` label. Emitted as a
|
|
@@ -4496,7 +4613,7 @@ declare function buildUnblockDependentsProcedure(unblockDependents?: ResolvedUnb
|
|
|
4496
4613
|
* Every optional parameter defaults to the bundle's built-in default
|
|
4497
4614
|
* when the caller omits it.
|
|
4498
4615
|
*/
|
|
4499
|
-
declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio, scheduledTasks?: ResolvedScheduledTasks, unblockDependents?: ResolvedUnblockDependents): string;
|
|
4616
|
+
declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio, scheduledTasks?: ResolvedScheduledTasks, unblockDependents?: ResolvedUnblockDependents, excludeBundles?: ReadonlyArray<string>): string;
|
|
4500
4617
|
/**
|
|
4501
4618
|
* Resolve the orchestrator-conventions rule content and the
|
|
4502
4619
|
* check-blocked.sh procedure content for a given (possibly absent)
|
|
@@ -4508,7 +4625,7 @@ declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<Resolv
|
|
|
4508
4625
|
* can splice them into their rule map and procedure map in a single
|
|
4509
4626
|
* pass.
|
|
4510
4627
|
*/
|
|
4511
|
-
declare function resolveOrchestratorAssets(tierConfig?: AgentTierConfig, scopeGateConfig?: ScopeGateConfig, runRatioConfig?: RunRatioConfig, scheduledTasksConfig?: ScheduledTasksConfig, unblockDependentsConfig?: UnblockDependentsConfig): {
|
|
4628
|
+
declare function resolveOrchestratorAssets(tierConfig?: AgentTierConfig, scopeGateConfig?: ScopeGateConfig, runRatioConfig?: RunRatioConfig, scheduledTasksConfig?: ScheduledTasksConfig, unblockDependentsConfig?: UnblockDependentsConfig, excludeBundles?: ReadonlyArray<string>): {
|
|
4512
4629
|
readonly tiers: ReadonlyArray<ResolvedAgentTier>;
|
|
4513
4630
|
readonly scopeGate: ResolvedScopeGate;
|
|
4514
4631
|
readonly runRatio: ResolvedRunRatio;
|
|
@@ -4696,7 +4813,7 @@ declare function validateIssueTemplatesConfig(config?: IssueTemplatesConfig): Re
|
|
|
4696
4813
|
*
|
|
4697
4814
|
* When the convention is disabled, the rule renders a short stub.
|
|
4698
4815
|
*/
|
|
4699
|
-
declare function renderIssueTemplatesRuleContent(it: ResolvedIssueTemplates): string;
|
|
4816
|
+
declare function renderIssueTemplatesRuleContent(it: ResolvedIssueTemplates, hasDownstreamBundles?: boolean): string;
|
|
4700
4817
|
/**
|
|
4701
4818
|
* Render the short issue-templates hook section injected into a
|
|
4702
4819
|
* phased-agent bundle's workflow rule. The section cites the full
|
|
@@ -7692,7 +7809,7 @@ declare const VERSION: {
|
|
|
7692
7809
|
/**
|
|
7693
7810
|
* Version of Astro to pin for AstroProject scaffolding.
|
|
7694
7811
|
*/
|
|
7695
|
-
readonly ASTRO_VERSION: "6.2.
|
|
7812
|
+
readonly ASTRO_VERSION: "6.2.2";
|
|
7696
7813
|
/**
|
|
7697
7814
|
* CDK CLI for workflows and command line operations.
|
|
7698
7815
|
*
|
|
@@ -7721,7 +7838,7 @@ declare const VERSION: {
|
|
|
7721
7838
|
/**
|
|
7722
7839
|
* Version of PNPM to use in workflows at github actions.
|
|
7723
7840
|
*/
|
|
7724
|
-
readonly PNPM_VERSION: "10.33.
|
|
7841
|
+
readonly PNPM_VERSION: "10.33.3";
|
|
7725
7842
|
/**
|
|
7726
7843
|
* Version of Projen to use.
|
|
7727
7844
|
*/
|
|
@@ -7739,11 +7856,11 @@ declare const VERSION: {
|
|
|
7739
7856
|
/**
|
|
7740
7857
|
* Version of @astrojs/starlight to pin for StarlightProject scaffolding.
|
|
7741
7858
|
*/
|
|
7742
|
-
readonly STARLIGHT_VERSION: "0.38.
|
|
7859
|
+
readonly STARLIGHT_VERSION: "0.38.5";
|
|
7743
7860
|
/**
|
|
7744
7861
|
* What version of the turborepo library should we use?
|
|
7745
7862
|
*/
|
|
7746
|
-
readonly TURBO_VERSION: "2.9.
|
|
7863
|
+
readonly TURBO_VERSION: "2.9.9";
|
|
7747
7864
|
/**
|
|
7748
7865
|
* Version of @types/node to use across all packages (pnpm catalog).
|
|
7749
7866
|
*/
|
|
@@ -9562,4 +9679,4 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
9562
9679
|
*/
|
|
9563
9680
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
9564
9681
|
|
|
9565
|
-
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, 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, 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, industryDiscoveryBundle, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, 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 };
|
|
9682
|
+
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, 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, 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 };
|
package/lib/index.d.ts
CHANGED
|
@@ -3477,6 +3477,111 @@ declare function buildBaseBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
|
|
|
3477
3477
|
*/
|
|
3478
3478
|
declare const baseBundle: AgentRuleBundle;
|
|
3479
3479
|
|
|
3480
|
+
/**
|
|
3481
|
+
* Hand-maintained registry mapping every bundle name to the cross-bundle
|
|
3482
|
+
* surface it owns: GitHub `type:*` labels, phase-label prefixes,
|
|
3483
|
+
* scheduled-task IDs, whether it emits Starlight docs, and whether it
|
|
3484
|
+
* declares any downstream issue kinds (i.e. files `gh issue create`
|
|
3485
|
+
* recipes via the issue-templates convention).
|
|
3486
|
+
*
|
|
3487
|
+
* The registry is consulted by renderers in other bundles whenever
|
|
3488
|
+
* `AgentConfigOptions.excludeBundles` is non-empty so cross-bundle
|
|
3489
|
+
* references to an excluded bundle's agents, type labels, phase labels,
|
|
3490
|
+
* or scheduled tasks disappear from the generated output.
|
|
3491
|
+
*
|
|
3492
|
+
* The map is **hand-maintained** rather than derived from each bundle's
|
|
3493
|
+
* runtime shape. The defining surfaces (the funnel-tier table in
|
|
3494
|
+
* `tiers.ts`, the per-phase scope-gate overrides in `scope-gate.ts`, and
|
|
3495
|
+
* the scheduled-tasks registry in `scheduled-tasks.ts`) live as flat
|
|
3496
|
+
* data tables that already get walked by their renderers — declaring the
|
|
3497
|
+
* ownership map alongside them keeps the relationship explicit and
|
|
3498
|
+
* readable without forcing every bundle to grow an "ownership"
|
|
3499
|
+
* descriptor.
|
|
3500
|
+
*
|
|
3501
|
+
* Bundles that ship no cross-bundle surface (e.g. `slack`, `typescript`,
|
|
3502
|
+
* `pnpm`, `vitest`, `jest`, `aws-cdk`, `projen`, `turborepo`,
|
|
3503
|
+
* `upstream-configulator-docs`) deliberately do not appear here —
|
|
3504
|
+
* excluding them is already a no-op since they own nothing other
|
|
3505
|
+
* bundles reference.
|
|
3506
|
+
*/
|
|
3507
|
+
interface BundleOwnership {
|
|
3508
|
+
/**
|
|
3509
|
+
* GitHub `type:*` label values (without the `type:` prefix) the
|
|
3510
|
+
* bundle owns. The funnel-tier table in `tiers.ts` and any rendered
|
|
3511
|
+
* tables that group agents by `type:*` label consult this list.
|
|
3512
|
+
*/
|
|
3513
|
+
readonly typeLabels: ReadonlyArray<string>;
|
|
3514
|
+
/**
|
|
3515
|
+
* Phase-label prefixes (with trailing colon, e.g. `"company:"`) the
|
|
3516
|
+
* bundle owns. Used by the scope-gate per-phase override table and
|
|
3517
|
+
* any other renderer that groups by phase label. An entry without a
|
|
3518
|
+
* trailing colon (e.g. `"req:write"`) is treated as an exact
|
|
3519
|
+
* phase-label match instead of a prefix.
|
|
3520
|
+
*/
|
|
3521
|
+
readonly phaseLabelPrefixes: ReadonlyArray<string>;
|
|
3522
|
+
/**
|
|
3523
|
+
* `taskId` values from `DEFAULT_SCHEDULED_TASK_ENTRIES` that target
|
|
3524
|
+
* this bundle's sub-agent. The scheduled-tasks registry filter in
|
|
3525
|
+
* `agent-config.ts` consults this list when pruning default entries
|
|
3526
|
+
* for an excluded bundle.
|
|
3527
|
+
*/
|
|
3528
|
+
readonly scheduledTaskIds: ReadonlyArray<string>;
|
|
3529
|
+
/**
|
|
3530
|
+
* Whether this bundle emits Starlight content roots — i.e. whether
|
|
3531
|
+
* any of its workflows write files under `docs/src/content/docs/`
|
|
3532
|
+
* (or the configured docs root). Drives the auto-suppression of the
|
|
3533
|
+
* `section-index-pages` rule when no docs-emitting bundle is active.
|
|
3534
|
+
*/
|
|
3535
|
+
readonly emitsDocs: boolean;
|
|
3536
|
+
/**
|
|
3537
|
+
* Whether this bundle dispatches downstream issues (i.e. its
|
|
3538
|
+
* workflows file `gh issue create` recipes). Drives the
|
|
3539
|
+
* auto-suppression of the `issue-templates-convention` rule when no
|
|
3540
|
+
* such bundle is active.
|
|
3541
|
+
*/
|
|
3542
|
+
readonly downstreamIssueKinds: boolean;
|
|
3543
|
+
}
|
|
3544
|
+
/**
|
|
3545
|
+
* Canonical ownership map. Only bundles that own at least one
|
|
3546
|
+
* cross-bundle surface appear here.
|
|
3547
|
+
*/
|
|
3548
|
+
declare const BUNDLE_OWNERSHIP: Readonly<Record<string, BundleOwnership>>;
|
|
3549
|
+
/**
|
|
3550
|
+
* Return `true` when `typeLabel` (without the leading `type:` prefix)
|
|
3551
|
+
* is owned by any bundle in `excludedBundles`. Used by tier-table and
|
|
3552
|
+
* scheduled-task renderers to drop rows whose owning bundle has been
|
|
3553
|
+
* excluded.
|
|
3554
|
+
*/
|
|
3555
|
+
declare function isTypeLabelOwnedByExcluded(typeLabel: string, excludedBundles: ReadonlyArray<string>): boolean;
|
|
3556
|
+
/**
|
|
3557
|
+
* Return `true` when `phaseLabel` is owned by any bundle in
|
|
3558
|
+
* `excludedBundles`. Matches against both prefix entries (with
|
|
3559
|
+
* trailing colon, e.g. `"company:"`) and exact-match entries (without
|
|
3560
|
+
* trailing colon, e.g. `"req:write"`). Used by the scope-gate
|
|
3561
|
+
* per-phase-override table renderer.
|
|
3562
|
+
*/
|
|
3563
|
+
declare function isPhaseLabelOwnedByExcluded(phaseLabel: string, excludedBundles: ReadonlyArray<string>): boolean;
|
|
3564
|
+
/**
|
|
3565
|
+
* Return `true` when the scheduled-task `taskId` is owned by any
|
|
3566
|
+
* bundle in `excludedBundles`. Used by the scheduled-tasks registry
|
|
3567
|
+
* filter to drop default entries pointing at an excluded bundle.
|
|
3568
|
+
*/
|
|
3569
|
+
declare function isScheduledTaskOwnedByExcluded(taskId: string, excludedBundles: ReadonlyArray<string>): boolean;
|
|
3570
|
+
/**
|
|
3571
|
+
* Return `true` when at least one docs-emitting bundle is **not**
|
|
3572
|
+
* excluded. Used by the `section-index-pages` rule auto-suppression
|
|
3573
|
+
* gate — when this returns `false`, the rule is dropped from the
|
|
3574
|
+
* rendered rule map entirely.
|
|
3575
|
+
*/
|
|
3576
|
+
declare function hasAnyDocsEmittingBundle(excludedBundles: ReadonlyArray<string>): boolean;
|
|
3577
|
+
/**
|
|
3578
|
+
* Return `true` when at least one downstream-issue-kind bundle is
|
|
3579
|
+
* **not** excluded. Used by the `issue-templates-convention`
|
|
3580
|
+
* auto-suppression gate — when this returns `false`, the rule body
|
|
3581
|
+
* renders the disabled-stub variant.
|
|
3582
|
+
*/
|
|
3583
|
+
declare function hasAnyDownstreamIssueKindBundle(excludedBundles: ReadonlyArray<string>): boolean;
|
|
3584
|
+
|
|
3480
3585
|
/**
|
|
3481
3586
|
* Build the bcm-writer bundle with the supplied resolved paths.
|
|
3482
3587
|
*
|
|
@@ -4026,7 +4131,7 @@ interface ResolvedScheduledTasks {
|
|
|
4026
4131
|
* duplicate taskIds in a single supplied list) throw a descriptive
|
|
4027
4132
|
* `Error` — callers should not need to guard against it at runtime.
|
|
4028
4133
|
*/
|
|
4029
|
-
declare function resolveScheduledTasks(config?: ScheduledTasksConfig): ResolvedScheduledTasks;
|
|
4134
|
+
declare function resolveScheduledTasks(config?: ScheduledTasksConfig, excludeBundles?: ReadonlyArray<string>): ResolvedScheduledTasks;
|
|
4030
4135
|
/**
|
|
4031
4136
|
* Synth-time validation hook. Throws a descriptive `Error` when the
|
|
4032
4137
|
* supplied `ScheduledTasksConfig` is malformed. Called by
|
|
@@ -4045,7 +4150,7 @@ declare function resolveScheduledTasks(config?: ScheduledTasksConfig): ResolvedS
|
|
|
4045
4150
|
* plain string.
|
|
4046
4151
|
* - Duplicate `taskId` values within the supplied `tasks` list.
|
|
4047
4152
|
*/
|
|
4048
|
-
declare function validateScheduledTasksConfig(config?: ScheduledTasksConfig): ResolvedScheduledTasks;
|
|
4153
|
+
declare function validateScheduledTasksConfig(config?: ScheduledTasksConfig, excludeBundles?: ReadonlyArray<string>): ResolvedScheduledTasks;
|
|
4049
4154
|
/**
|
|
4050
4155
|
* Render the markdown subsection appended to the
|
|
4051
4156
|
* `orchestrator-conventions` rule. Always returns a non-empty string —
|
|
@@ -4284,8 +4389,13 @@ declare function classifyIssueScope(body: string, gate: ResolvedScopeGate, label
|
|
|
4284
4389
|
* `orchestrator-conventions` rule. Always returns a non-empty string
|
|
4285
4390
|
* so the orchestrator rule documents the scope gate even when the
|
|
4286
4391
|
* consumer relies on the defaults.
|
|
4392
|
+
*
|
|
4393
|
+
* When `excludeBundles` is non-empty, per-phase override rows whose
|
|
4394
|
+
* phase label is owned by an excluded bundle are dropped from the
|
|
4395
|
+
* **Per-phase-label thresholds** sub-table. The sub-section as a
|
|
4396
|
+
* whole is hidden when no rows survive.
|
|
4287
4397
|
*/
|
|
4288
|
-
declare function renderScopeGateSection(gate: ResolvedScopeGate): string;
|
|
4398
|
+
declare function renderScopeGateSection(gate: ResolvedScopeGate, excludeBundles?: ReadonlyArray<string>): string;
|
|
4289
4399
|
/**
|
|
4290
4400
|
* Render a shell-script snippet embedded in `check-blocked.sh`. The
|
|
4291
4401
|
* snippet declares a `scope_of()` function that reads an issue body
|
|
@@ -4402,8 +4512,15 @@ declare function validateAgentTierConfig(config?: AgentTierConfig): ReadonlyArra
|
|
|
4402
4512
|
* `orchestrator-conventions` rule. Always returns a non-empty string
|
|
4403
4513
|
* because the default tier list is non-empty — the orchestrator
|
|
4404
4514
|
* always documents its sort order.
|
|
4515
|
+
*
|
|
4516
|
+
* When `excludeBundles` is non-empty, rows whose `type:*` label is
|
|
4517
|
+
* owned by an excluded bundle are dropped before rendering. Tiers
|
|
4518
|
+
* that end up with no surviving rows render an empty `_(none
|
|
4519
|
+
* registered)_` cell for consistency with the existing render — the
|
|
4520
|
+
* tier itself stays in the table so the dispatch ordering is still
|
|
4521
|
+
* documented end-to-end.
|
|
4405
4522
|
*/
|
|
4406
|
-
declare function renderAgentTierSection(tiers: ReadonlyArray<ResolvedAgentTier>): string;
|
|
4523
|
+
declare function renderAgentTierSection(tiers: ReadonlyArray<ResolvedAgentTier>, excludeBundles?: ReadonlyArray<string>): string;
|
|
4407
4524
|
/**
|
|
4408
4525
|
* Render a shell-script snippet that the `check-blocked.sh` procedure
|
|
4409
4526
|
* uses to look up a tier for a given `type:*` label. Emitted as a
|
|
@@ -4545,7 +4662,7 @@ declare function buildUnblockDependentsProcedure(unblockDependents?: ResolvedUnb
|
|
|
4545
4662
|
* Every optional parameter defaults to the bundle's built-in default
|
|
4546
4663
|
* when the caller omits it.
|
|
4547
4664
|
*/
|
|
4548
|
-
declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio, scheduledTasks?: ResolvedScheduledTasks, unblockDependents?: ResolvedUnblockDependents): string;
|
|
4665
|
+
declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<ResolvedAgentTier>, scopeGate?: ResolvedScopeGate, runRatio?: ResolvedRunRatio, scheduledTasks?: ResolvedScheduledTasks, unblockDependents?: ResolvedUnblockDependents, excludeBundles?: ReadonlyArray<string>): string;
|
|
4549
4666
|
/**
|
|
4550
4667
|
* Resolve the orchestrator-conventions rule content and the
|
|
4551
4668
|
* check-blocked.sh procedure content for a given (possibly absent)
|
|
@@ -4557,7 +4674,7 @@ declare function buildOrchestratorConventionsContent(tiers: ReadonlyArray<Resolv
|
|
|
4557
4674
|
* can splice them into their rule map and procedure map in a single
|
|
4558
4675
|
* pass.
|
|
4559
4676
|
*/
|
|
4560
|
-
declare function resolveOrchestratorAssets(tierConfig?: AgentTierConfig, scopeGateConfig?: ScopeGateConfig, runRatioConfig?: RunRatioConfig, scheduledTasksConfig?: ScheduledTasksConfig, unblockDependentsConfig?: UnblockDependentsConfig): {
|
|
4677
|
+
declare function resolveOrchestratorAssets(tierConfig?: AgentTierConfig, scopeGateConfig?: ScopeGateConfig, runRatioConfig?: RunRatioConfig, scheduledTasksConfig?: ScheduledTasksConfig, unblockDependentsConfig?: UnblockDependentsConfig, excludeBundles?: ReadonlyArray<string>): {
|
|
4561
4678
|
readonly tiers: ReadonlyArray<ResolvedAgentTier>;
|
|
4562
4679
|
readonly scopeGate: ResolvedScopeGate;
|
|
4563
4680
|
readonly runRatio: ResolvedRunRatio;
|
|
@@ -4745,7 +4862,7 @@ declare function validateIssueTemplatesConfig(config?: IssueTemplatesConfig): Re
|
|
|
4745
4862
|
*
|
|
4746
4863
|
* When the convention is disabled, the rule renders a short stub.
|
|
4747
4864
|
*/
|
|
4748
|
-
declare function renderIssueTemplatesRuleContent(it: ResolvedIssueTemplates): string;
|
|
4865
|
+
declare function renderIssueTemplatesRuleContent(it: ResolvedIssueTemplates, hasDownstreamBundles?: boolean): string;
|
|
4749
4866
|
/**
|
|
4750
4867
|
* Render the short issue-templates hook section injected into a
|
|
4751
4868
|
* phased-agent bundle's workflow rule. The section cites the full
|
|
@@ -7741,7 +7858,7 @@ declare const VERSION: {
|
|
|
7741
7858
|
/**
|
|
7742
7859
|
* Version of Astro to pin for AstroProject scaffolding.
|
|
7743
7860
|
*/
|
|
7744
|
-
readonly ASTRO_VERSION: "6.2.
|
|
7861
|
+
readonly ASTRO_VERSION: "6.2.2";
|
|
7745
7862
|
/**
|
|
7746
7863
|
* CDK CLI for workflows and command line operations.
|
|
7747
7864
|
*
|
|
@@ -7770,7 +7887,7 @@ declare const VERSION: {
|
|
|
7770
7887
|
/**
|
|
7771
7888
|
* Version of PNPM to use in workflows at github actions.
|
|
7772
7889
|
*/
|
|
7773
|
-
readonly PNPM_VERSION: "10.33.
|
|
7890
|
+
readonly PNPM_VERSION: "10.33.3";
|
|
7774
7891
|
/**
|
|
7775
7892
|
* Version of Projen to use.
|
|
7776
7893
|
*/
|
|
@@ -7788,11 +7905,11 @@ declare const VERSION: {
|
|
|
7788
7905
|
/**
|
|
7789
7906
|
* Version of @astrojs/starlight to pin for StarlightProject scaffolding.
|
|
7790
7907
|
*/
|
|
7791
|
-
readonly STARLIGHT_VERSION: "0.38.
|
|
7908
|
+
readonly STARLIGHT_VERSION: "0.38.5";
|
|
7792
7909
|
/**
|
|
7793
7910
|
* What version of the turborepo library should we use?
|
|
7794
7911
|
*/
|
|
7795
|
-
readonly TURBO_VERSION: "2.9.
|
|
7912
|
+
readonly TURBO_VERSION: "2.9.9";
|
|
7796
7913
|
/**
|
|
7797
7914
|
* Version of @types/node to use across all packages (pnpm catalog).
|
|
7798
7915
|
*/
|
|
@@ -9611,5 +9728,5 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
9611
9728
|
*/
|
|
9612
9729
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
9613
9730
|
|
|
9614
|
-
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, 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, 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, industryDiscoveryBundle, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, 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 };
|
|
9615
|
-
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, 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 };
|
|
9731
|
+
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, 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, 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 };
|
|
9732
|
+
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 };
|