@codedrifters/configulator 0.0.290 → 0.0.292

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.ts CHANGED
@@ -2580,6 +2580,48 @@ interface ScheduledTasksConfig {
2580
2580
  */
2581
2581
  readonly tasks?: ReadonlyArray<ScheduledTaskEntry>;
2582
2582
  }
2583
+ /*******************************************************************************
2584
+ *
2585
+ * Issue Defaults
2586
+ *
2587
+ ******************************************************************************/
2588
+ /**
2589
+ * Per-phase-label override for the default `status:*` and
2590
+ * `priority:*` labels every bundle-shipped `gh issue create` recipe
2591
+ * uses when filing a downstream issue. Both fields are optional —
2592
+ * a consumer may override `status` only, `priority` only, or both.
2593
+ *
2594
+ * - `status` rejects unknown values at synth time. Allowed values
2595
+ * are the canonical `status:*` taxonomy (`ready`, `blocked`,
2596
+ * `in-progress`, `ready-for-review`, `needs-attention`, `done`,
2597
+ * `deferred`).
2598
+ * - `priority` rejects unknown values at synth time. Allowed values
2599
+ * are the canonical five-level priority taxonomy (`critical`,
2600
+ * `high`, `medium`, `low`, `trivial`).
2601
+ */
2602
+ interface IssueDefaultsOverride {
2603
+ readonly status?: "ready" | "blocked" | "in-progress" | "ready-for-review" | "needs-attention" | "done" | "deferred";
2604
+ readonly priority?: "critical" | "high" | "medium" | "low" | "trivial";
2605
+ }
2606
+ /**
2607
+ * Map of phase label (e.g. `people:research`, `company:draft`,
2608
+ * `req:write`) to the default `status` / `priority` labels every
2609
+ * bundle-shipped `gh issue create` recipe should carry when filing
2610
+ * an issue with that phase label.
2611
+ *
2612
+ * Keyed by phase label rather than by `type:*` so consumers can
2613
+ * discriminate per phase — a `type:company-profile` consumer might
2614
+ * want `company:research` deferred but `company:analyze` ready.
2615
+ *
2616
+ * Unknown phase labels (no bundle currently files them) are
2617
+ * accepted silently so the config does not break when a bundle is
2618
+ * later removed from `includeBundles`.
2619
+ *
2620
+ * @see ./bundles/issue-defaults.ts#resolveIssueDefaults
2621
+ * @see ./bundles/issue-defaults.ts#validateIssueDefaultsConfig
2622
+ * @see ./bundles/issue-defaults.ts#labelsForPhase
2623
+ */
2624
+ type IssueDefaultsConfig = Readonly<Record<string, IssueDefaultsOverride>>;
2583
2625
  /*******************************************************************************
2584
2626
  *
2585
2627
  * AgentConfig Options
@@ -3048,6 +3090,43 @@ interface AgentConfigOptions {
3048
3090
  * @see ./bundles/issue-templates.ts#renderIssueTemplatesRuleContent
3049
3091
  */
3050
3092
  readonly issueTemplates?: IssueTemplatesConfig;
3093
+ /**
3094
+ * Per-phase-label override for the default `status:*` and
3095
+ * `priority:*` labels every bundle-shipped `gh issue create`
3096
+ * recipe uses when filing a downstream issue. Keyed by phase
3097
+ * label (e.g. `people:research`, `company:draft`, `req:write`).
3098
+ *
3099
+ * When the whole config is omitted, every bundle-shipped recipe
3100
+ * renders with `status:ready` + `priority:medium` — the historical
3101
+ * hardcoded defaults.
3102
+ *
3103
+ * Each entry may set `status` only, `priority` only, or both.
3104
+ * Missing fields cascade from the bundle defaults. Empty entries
3105
+ * (neither field set) are rejected at synth time as a probable
3106
+ * typo on the field name.
3107
+ *
3108
+ * Example:
3109
+ *
3110
+ * ```typescript
3111
+ * agentConfig: {
3112
+ * issueDefaults: {
3113
+ * 'people:research': { status: 'deferred', priority: 'low' },
3114
+ * 'people:refresh': { status: 'deferred', priority: 'low' },
3115
+ * },
3116
+ * }
3117
+ * ```
3118
+ *
3119
+ * Malformed configs — empty / whitespace-only phase-label key,
3120
+ * unrecognised `status:<value>` / `priority:<value>` strings, or
3121
+ * an empty entry that sets neither field — fail the build at
3122
+ * synth time via `validateIssueDefaultsConfig`.
3123
+ *
3124
+ * @see IssueDefaultsConfig
3125
+ * @see ./bundles/issue-defaults.ts#resolveIssueDefaults
3126
+ * @see ./bundles/issue-defaults.ts#validateIssueDefaultsConfig
3127
+ * @see ./bundles/issue-defaults.ts#labelsForPhase
3128
+ */
3129
+ readonly issueDefaults?: IssueDefaultsConfig;
3051
3130
  /**
3052
3131
  * Upstream-configulator-docs convention consumed by the
3053
3132
  * `upstream-configulator-docs` bundle. Ships pointers to the
@@ -3186,6 +3265,100 @@ declare class AgentConfig extends Component {
3186
3265
  private resolveBundlePermissions;
3187
3266
  }
3188
3267
 
3268
+ /**
3269
+ * Valid `status:*` values that may appear in an
3270
+ * `IssueDefaultsOverride.status`. The list mirrors the canonical
3271
+ * status taxonomy documented in the `issue-label-conventions` rule
3272
+ * — every value here renders as a `status:<value>` label on the
3273
+ * downstream `gh issue create` invocation.
3274
+ *
3275
+ * `deferred` is included so consumers can route low-priority
3276
+ * downstream byproducts (e.g. `people:research` follow-ups in a
3277
+ * research-heavy planning repo) into a manually-promoted backlog
3278
+ * instead of the auto-dispatch queue.
3279
+ */
3280
+ declare const VALID_STATUS_VALUES: readonly ["ready", "blocked", "in-progress", "ready-for-review", "needs-attention", "done", "deferred"];
3281
+ type IssueDefaultsStatus = (typeof VALID_STATUS_VALUES)[number];
3282
+ /**
3283
+ * Valid `priority:*` values that may appear in an
3284
+ * `IssueDefaultsOverride.priority`. Mirrors the five-level priority
3285
+ * taxonomy documented in the `issue-label-conventions` rule.
3286
+ */
3287
+ declare const VALID_PRIORITY_VALUES: readonly ["critical", "high", "medium", "low", "trivial"];
3288
+ type IssueDefaultsPriority = (typeof VALID_PRIORITY_VALUES)[number];
3289
+ /**
3290
+ * Bundle-shipped defaults used when no `issueDefaults[<phase>]`
3291
+ * override is configured. `ready` / `medium` matches the historical
3292
+ * hardcoded values every bundle carried before this knob existed.
3293
+ */
3294
+ declare const DEFAULT_ISSUE_STATUS: IssueDefaultsStatus;
3295
+ declare const DEFAULT_ISSUE_PRIORITY: IssueDefaultsPriority;
3296
+ /**
3297
+ * Fully-resolved per-phase-label entry. Every field is filled in so
3298
+ * downstream callers can render `status:<value>` / `priority:<value>`
3299
+ * label lines without re-checking for `undefined`.
3300
+ */
3301
+ interface ResolvedIssueDefaultsEntry {
3302
+ readonly status: IssueDefaultsStatus;
3303
+ readonly priority: IssueDefaultsPriority;
3304
+ }
3305
+ /**
3306
+ * Fully-resolved issue-defaults configuration. The `overrides` map
3307
+ * is keyed by phase label (e.g. `people:research`, `company:draft`,
3308
+ * `req:write`) — not by `type:*` — so consumers can discriminate per
3309
+ * phase. The `defaults` field carries the bundle-shipped fallback
3310
+ * values (`ready` / `medium`) callers fall back to when no override
3311
+ * is configured for a given phase.
3312
+ */
3313
+ interface ResolvedIssueDefaults {
3314
+ readonly defaults: ResolvedIssueDefaultsEntry;
3315
+ readonly overrides: Readonly<Record<string, ResolvedIssueDefaultsEntry>>;
3316
+ }
3317
+ /**
3318
+ * Default-everything resolved instance. Used by bundle factories
3319
+ * when the consumer supplies no override at all (the common case).
3320
+ */
3321
+ declare const DEFAULT_RESOLVED_ISSUE_DEFAULTS: ResolvedIssueDefaults;
3322
+ /**
3323
+ * Resolve a (possibly absent) `IssueDefaultsConfig` into a canonical
3324
+ * `ResolvedIssueDefaults` with every override entry filled in.
3325
+ *
3326
+ * Each entry inside the consumer-supplied map may set `status`,
3327
+ * `priority`, or both. Missing fields cascade from the bundle
3328
+ * defaults (`ready` / `medium`) so a partially-specified entry
3329
+ * still resolves to a complete pair.
3330
+ *
3331
+ * Malformed configs throw a descriptive `Error`:
3332
+ *
3333
+ * - Empty / whitespace-only phase-label key.
3334
+ * - `status` set to a value outside `VALID_STATUS_VALUES`.
3335
+ * - `priority` set to a value outside `VALID_PRIORITY_VALUES`.
3336
+ * - Empty entry (neither `status` nor `priority` supplied) — the
3337
+ * override would be a no-op and probably indicates a typo on the
3338
+ * field name.
3339
+ */
3340
+ declare function resolveIssueDefaults(config?: IssueDefaultsConfig): ResolvedIssueDefaults;
3341
+ /**
3342
+ * Synth-time validation hook. Throws a descriptive `Error` when
3343
+ * the supplied `IssueDefaultsConfig` is malformed. Called by
3344
+ * `AgentConfig.preSynthesize` before any rendering so a misconfigured
3345
+ * override fails the build instead of silently shipping unrecognised
3346
+ * label values into bundle prompts. Returns the resolved config so
3347
+ * callers can write `const id = validateIssueDefaultsConfig(config)`
3348
+ * in one line.
3349
+ */
3350
+ declare function validateIssueDefaultsConfig(config?: IssueDefaultsConfig): ResolvedIssueDefaults;
3351
+ /**
3352
+ * Look up the effective `status` / `priority` pair for a phase label.
3353
+ * Returns the override entry when one is configured for the given
3354
+ * phase, otherwise the bundle defaults (`ready` / `medium`).
3355
+ *
3356
+ * The single canonical helper bundle prompt templates call when they
3357
+ * need to render the labels for a downstream filing — keeps every
3358
+ * filing site in sync with the same resolution rule.
3359
+ */
3360
+ declare function labelsForPhase(resolved: ResolvedIssueDefaults, phaseLabel: string): ResolvedIssueDefaultsEntry;
3361
+
3189
3362
  /**
3190
3363
  * Fully-resolved agent output-path roots. Every property is required.
3191
3364
  *
@@ -3344,7 +3517,7 @@ declare const businessModelsBundle: AgentRuleBundle;
3344
3517
  * `/analyze-segment`), and `type:company-profile` plus `company:*`
3345
3518
  * phase labels for the six phases.
3346
3519
  */
3347
- declare function buildCompanyProfileBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
3520
+ declare function buildCompanyProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
3348
3521
  /**
3349
3522
  * Default-paths instance of the company-profile bundle, preserved for
3350
3523
  * backward compatibility with consumers that import the const
@@ -3381,7 +3554,7 @@ declare const companyProfileBundle: AgentRuleBundle;
3381
3554
  * unmet need to `req:scan` seed via the shared software-profile
3382
3555
  * feature matrix.
3383
3556
  */
3384
- declare function buildCustomerProfileBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
3557
+ declare function buildCustomerProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
3385
3558
  /**
3386
3559
  * Default-paths instance of the customer-profile bundle, preserved
3387
3560
  * for backward compatibility with consumers that import the const
@@ -3518,7 +3691,7 @@ declare const githubWorkflowBundle: AgentRuleBundle;
3518
3691
  * the supplied `paths` struct, so a consumer override of
3519
3692
  * `AgentConfigOptions.paths` propagates to the rendered output.
3520
3693
  */
3521
- declare function buildIndustryDiscoveryBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
3694
+ declare function buildIndustryDiscoveryBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
3522
3695
  /**
3523
3696
  * Default-paths instance of the industry-discovery bundle, preserved
3524
3697
  * for backward compatibility with consumers that import the const
@@ -4352,7 +4525,7 @@ declare const orchestratorBundle: AgentRuleBundle;
4352
4525
  * skills (`/profile-person`, `/refresh-person`), and `type:people-profile`
4353
4526
  * plus `people:*` phase labels for the four phases.
4354
4527
  */
4355
- declare function buildPeopleProfileBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
4528
+ declare function buildPeopleProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
4356
4529
  /**
4357
4530
  * Default-paths instance of the people-profile bundle, preserved for
4358
4531
  * backward compatibility with consumers that import the const
@@ -4731,7 +4904,7 @@ declare const projenBundle: AgentRuleBundle;
4731
4904
  * pipeline, and canonical profiles to `company-profile` and
4732
4905
  * `people-profile` for enforcement bodies and regulatory leaders.
4733
4906
  */
4734
- declare function buildRegulatoryResearchBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
4907
+ declare function buildRegulatoryResearchBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
4735
4908
  /**
4736
4909
  * Default-paths instance of the regulatory-research bundle, preserved
4737
4910
  * for backward compatibility with consumers that import the const
@@ -5125,6 +5298,24 @@ declare function renderSkillEvalsBundleHook(se: ResolvedSkillEvals, skillLabel:
5125
5298
  */
5126
5299
  declare function renderSkillEvalsRunnerScript(se: ResolvedSkillEvals): string;
5127
5300
 
5301
+ /**
5302
+ * Render the body for the `stub-index-convention` rule shipped by the
5303
+ * `base` bundle.
5304
+ *
5305
+ * The rule documents the contract every agent follows when creating or
5306
+ * updating an `index.md` (or `README.md`) section page under a Starlight
5307
+ * docs root: a contextual summary plus a grouped, linked listing of the
5308
+ * directory's children, and **no** body `# Heading` (Starlight already
5309
+ * renders the frontmatter `title:` as the page H1 — see the no-body-H1
5310
+ * contract documented for skill templates and inline agent templates).
5311
+ *
5312
+ * The convention has no configurable surface — the contract is fixed
5313
+ * and the same for every consuming project. The path globs the rule
5314
+ * applies to are quoted directly from the `shared-editing-safety` rule
5315
+ * so the two contracts never drift.
5316
+ */
5317
+ declare function renderStubIndexConventionRuleContent(): string;
5318
+
5128
5319
  /**
5129
5320
  * Build the requirements-analyst bundle with the supplied resolved
5130
5321
  * paths.
@@ -5279,7 +5470,7 @@ declare const slackBundle: AgentRuleBundle;
5279
5470
  * skills (`/profile-software` and `/map-software`), and
5280
5471
  * `type:software-profile` plus `software:*` phase labels.
5281
5472
  */
5282
- declare function buildSoftwareProfileBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
5473
+ declare function buildSoftwareProfileBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
5283
5474
  /**
5284
5475
  * Default-paths instance of the software-profile bundle, preserved
5285
5476
  * for backward compatibility with consumers that import the const
@@ -5313,7 +5504,7 @@ declare const softwareProfileBundle: AgentRuleBundle;
5313
5504
  * `people-profile`, extension ADRs to `requirements-writer`, and
5314
5505
  * domain-entity mappings to `bcm-writer`.
5315
5506
  */
5316
- declare function buildStandardsResearchBundle(paths?: ResolvedAgentPaths): AgentRuleBundle;
5507
+ declare function buildStandardsResearchBundle(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): AgentRuleBundle;
5317
5508
  /**
5318
5509
  * Default-paths instance of the standards-research bundle, preserved
5319
5510
  * for backward compatibility with consumers that import the const
@@ -5376,6 +5567,13 @@ declare const vitestBundle: AgentRuleBundle;
5376
5567
  * sub-agent content, so a consumer override of
5377
5568
  * `AgentConfigOptions.paths` propagates into the rendered output.
5378
5569
  *
5570
+ * Bundles that file downstream issues also accept a
5571
+ * `ResolvedIssueDefaults` second argument so per-phase-label
5572
+ * overrides supplied via `AgentConfigOptions.issueDefaults`
5573
+ * propagate into every filing site's `gh issue create` prose.
5574
+ * When the consumer supplies no override, the bundle defaults
5575
+ * (`status:ready` + `priority:medium`) ship unchanged.
5576
+ *
5379
5577
  * Order matters: base is first so its rules can be overridden by
5380
5578
  * more specific bundles. The base bundle's `appliesWhen` always
5381
5579
  * returns true; it is filtered by the `includeBaseRules` option
@@ -5384,7 +5582,7 @@ declare const vitestBundle: AgentRuleBundle;
5384
5582
  * Bundles that do not read any agent path (typescript, jest,
5385
5583
  * pnpm, etc.) stay as const exports and are referenced unchanged.
5386
5584
  */
5387
- declare function buildBuiltInBundles(paths?: ResolvedAgentPaths): ReadonlyArray<AgentRuleBundle>;
5585
+ declare function buildBuiltInBundles(paths?: ResolvedAgentPaths, issueDefaults?: ResolvedIssueDefaults): ReadonlyArray<AgentRuleBundle>;
5388
5586
  /**
5389
5587
  * Built-in rule bundles assembled with the default agent paths.
5390
5588
  * Preserved for backward compatibility with tests and consumers
@@ -9222,9 +9420,11 @@ type StarlightSidebarItem = {
9222
9420
  };
9223
9421
  } | {
9224
9422
  readonly label: string;
9423
+ readonly collapsed?: boolean;
9225
9424
  readonly items: ReadonlyArray<StarlightSidebarItem>;
9226
9425
  } | {
9227
9426
  readonly label: string;
9427
+ readonly collapsed?: boolean;
9228
9428
  readonly autogenerate: {
9229
9429
  readonly directory: string;
9230
9430
  readonly collapsed?: boolean;
@@ -9348,5 +9548,5 @@ declare const COMPLETE_JOB_ID = "complete";
9348
9548
  */
9349
9549
  declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
9350
9550
 
9351
- 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_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_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, 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, 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, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };
9352
- 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, 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, 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 };
9551
+ 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 };
9552
+ 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 };