@codedrifters/configulator 0.0.275 → 0.0.276

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 CHANGED
@@ -464,6 +464,13 @@ declare const DEFAULT_STATUS_LABELS: ReadonlyArray<LabelDefinition>;
464
464
  declare const DEFAULT_PRIORITY_LABELS: ReadonlyArray<LabelDefinition>;
465
465
  /** Default type labels — one per conventional commit type. */
466
466
  declare const DEFAULT_TYPE_LABELS: ReadonlyArray<LabelDefinition>;
467
+ /**
468
+ * Hard limit GitHub's Labels API enforces on the `description` field.
469
+ * EndBug/label-sync rejects (and the API returns an opaque error for)
470
+ * any label whose description exceeds this length, which silently
471
+ * breaks the sync workflow downstream.
472
+ */
473
+ declare const MAX_LABEL_DESCRIPTION_LENGTH = 100;
467
474
  /**
468
475
  * Adds a labels config file and a GitHub Actions workflow that syncs
469
476
  * labels to the repository using EndBug/label-sync.
@@ -2226,117 +2233,6 @@ interface SkillEvalsConfig {
2226
2233
  */
2227
2234
  readonly emitRunner?: boolean;
2228
2235
  }
2229
- /*******************************************************************************
2230
- *
2231
- * Workflow Diagrams Config
2232
- *
2233
- ******************************************************************************/
2234
- /**
2235
- * Workflow-diagrams convention consumed by the `base` bundle and
2236
- * every phased-agent bundle. Documents the single hand-authored
2237
- * Mermaid-based diagrams page that visualises every agent's phase
2238
- * graph and every cross-agent handoff, and enforces the
2239
- * **diagram-touched-when-bundle-touched** rule: a change set that
2240
- * modifies a bundle's phase graph must also update the matching
2241
- * section in the diagrams page.
2242
- *
2243
- * The convention is deliberately content-free — configulator cannot
2244
- * ship meaningful diagrams because each consuming repo enables a
2245
- * different subset of bundles and customises agent labels, paths,
2246
- * and taxonomies via the Group A injection points. Instead the
2247
- * bundle renders the rule (what to author, when to update it) and
2248
- * optionally emits a starter page + a checker script.
2249
- *
2250
- * Every field is optional. When the whole config is absent the
2251
- * convention ships **enabled** with the documented default diagrams
2252
- * path (`docs/src/content/docs/agents/workflows.md`), the default
2253
- * bundle-path patterns, the hard-requirement phrasing, the starter
2254
- * page opt-in, and the checker script opt-in.
2255
- *
2256
- * Malformed configs — empty / whitespace-only or absolute
2257
- * `diagramsPath`, empty `bundlePathPatterns`, empty /
2258
- * whitespace-only pattern entry — fail the build at synth time via
2259
- * `validateWorkflowDiagramsConfig`.
2260
- *
2261
- * @see ./bundles/workflow-diagrams.ts#resolveWorkflowDiagrams
2262
- * @see ./bundles/workflow-diagrams.ts#validateWorkflowDiagramsConfig
2263
- * @see ./bundles/workflow-diagrams.ts#renderWorkflowDiagramsRuleContent
2264
- */
2265
- interface WorkflowDiagramsConfig {
2266
- /**
2267
- * Master switch for the workflow-diagrams convention. When `false`,
2268
- * the base bundle renders a short stub stating the project does not
2269
- * enforce the convention; phased-agent bundles skip the
2270
- * per-workflow "Workflow Diagram" injection and the optional helper
2271
- * script / starter page are not emitted even if their `emit*`
2272
- * flags are true.
2273
- *
2274
- * Defaults to `true` — the convention is on by default.
2275
- */
2276
- readonly enabled?: boolean;
2277
- /**
2278
- * Repo-relative path to the single workflow-diagrams page. The
2279
- * rendered rule cites this path as the on-disk home of every
2280
- * Mermaid diagram; the checker script uses it as the sentinel path
2281
- * that must appear in a change set when any bundle file is
2282
- * touched.
2283
- *
2284
- * Must be a non-empty relative path (no leading `/`).
2285
- *
2286
- * Defaults to `docs/src/content/docs/agents/workflows.md`, which
2287
- * matches the monorepo-wide singleton `/docs` Starlight site every
2288
- * configulator-managed repo ships.
2289
- */
2290
- readonly diagramsPath?: string;
2291
- /**
2292
- * Path patterns (bash-style globs) that identify "bundle files" —
2293
- * the source files whose edits require the workflow-diagrams page
2294
- * to be touched in the same change set. Rendered verbatim into
2295
- * the rule body as a bullet list and emitted into the checker
2296
- * script when `emitChecker: true`.
2297
- *
2298
- * Must be a non-empty array of non-empty strings.
2299
- *
2300
- * Defaults to the configulator-wide set covering in-tree bundle
2301
- * source files, `.claude/agents/**.md` agent prompts, and
2302
- * `.claude/skills/**.md` skill prompts.
2303
- */
2304
- readonly bundlePathPatterns?: ReadonlyArray<string>;
2305
- /**
2306
- * Whether the convention emits a minimal starter diagrams page to
2307
- * disk at `<diagramsPath>`. The starter carries the expected
2308
- * structure (master diagram placeholder, one example agent section,
2309
- * legend) so consumers adopting the convention on a green-field
2310
- * repo have a working template to extend.
2311
- *
2312
- * Disabled by default because the page is hand-authored — an
2313
- * emitted stub would conflict with existing content on repos
2314
- * adopting the convention late.
2315
- */
2316
- readonly emitStarterDiagram?: boolean;
2317
- /**
2318
- * Whether the convention emits the
2319
- * `.claude/procedures/check-workflow-diagrams.sh` helper to disk.
2320
- * The script walks a newline-separated list of changed files (from
2321
- * stdin or positional arguments) and fails non-zero when any file
2322
- * matches a bundle-path pattern but `<diagramsPath>` is not also
2323
- * in the list.
2324
- *
2325
- * Disabled by default — the helper is opt-in for repos that want a
2326
- * hard CI gate or pre-commit hook. Consumers that prefer to
2327
- * enforce the rule via review discipline alone can leave it off.
2328
- */
2329
- readonly emitChecker?: boolean;
2330
- /**
2331
- * Whether the rendered rule body phrases the diagram update as a
2332
- * **hard requirement** (`MUST`) or a **strong recommendation**
2333
- * (`SHOULD`). Defaults to `true` — the hard-requirement phrasing
2334
- * matches the "enforced via CI" posture the convention is
2335
- * designed for. Consumers that treat diagrams as aspirational can
2336
- * soften the phrasing by setting this to `false`.
2337
- */
2338
- readonly requireDiagramUpdate?: boolean;
2339
- }
2340
2236
  /*******************************************************************************
2341
2237
  *
2342
2238
  * Issue Templates Config
@@ -3028,40 +2924,6 @@ interface AgentConfigOptions {
3028
2924
  * @see ./bundles/skill-evals.ts#renderSkillEvalsRuleContent
3029
2925
  */
3030
2926
  readonly skillEvals?: SkillEvalsConfig;
3031
- /**
3032
- * Workflow-diagrams convention consumed by the `base` bundle and
3033
- * every phased-agent bundle. Documents the single hand-authored
3034
- * Mermaid-based diagrams page that visualises every agent's phase
3035
- * graph and every cross-agent handoff, and enforces the
3036
- * diagram-touched-when-bundle-touched rule: a change set that
3037
- * modifies a bundle's phase graph must also update the matching
3038
- * section in the diagrams page.
3039
- *
3040
- * When the whole config is omitted, the convention ships
3041
- * **enabled** with the default diagrams path
3042
- * (`docs/src/content/docs/agents/workflows.md`), the default
3043
- * bundle-path patterns, the hard-requirement phrasing, and both
3044
- * the starter page and the checker script opt-in.
3045
- *
3046
- * Supply `enabled: false` to disable the convention entirely,
3047
- * `diagramsPath` to move the page, `bundlePathPatterns` to
3048
- * replace the default pattern list, `emitStarterDiagram: true`
3049
- * to seed a minimal starter page on disk, `emitChecker: true` to
3050
- * ship the `.claude/procedures/check-workflow-diagrams.sh`
3051
- * helper, or `requireDiagramUpdate: false` to soften the rule
3052
- * phrasing from MUST to SHOULD.
3053
- *
3054
- * Malformed configs — empty / whitespace-only or absolute
3055
- * `diagramsPath`, empty `bundlePathPatterns`, empty /
3056
- * whitespace-only pattern entry — fail the build at synth time
3057
- * via `validateWorkflowDiagramsConfig`.
3058
- *
3059
- * @see WorkflowDiagramsConfig
3060
- * @see ./bundles/workflow-diagrams.ts#resolveWorkflowDiagrams
3061
- * @see ./bundles/workflow-diagrams.ts#validateWorkflowDiagramsConfig
3062
- * @see ./bundles/workflow-diagrams.ts#renderWorkflowDiagramsRuleContent
3063
- */
3064
- readonly workflowDiagrams?: WorkflowDiagramsConfig;
3065
2927
  /**
3066
2928
  * Issue-templates convention consumed by the `base` bundle and
3067
2929
  * every phased-agent bundle that files downstream issues.
@@ -5148,179 +5010,6 @@ declare function renderSkillEvalsBundleHook(se: ResolvedSkillEvals, skillLabel:
5148
5010
  */
5149
5011
  declare function renderSkillEvalsRunnerScript(se: ResolvedSkillEvals): string;
5150
5012
 
5151
- /**
5152
- * Default master switch for the workflow-diagrams convention. When no
5153
- * config is supplied the convention ships **enabled** so every
5154
- * configulator-consuming repo carries the "diagram-touched-when-bundle-
5155
- * touched" rule in its rendered `CLAUDE.md`.
5156
- *
5157
- * @see WorkflowDiagramsConfig
5158
- */
5159
- declare const DEFAULT_WORKFLOW_DIAGRAMS_ENABLED = true;
5160
- /**
5161
- * Default repo-relative path for the workflow-diagrams page. Matches
5162
- * the singleton `/docs` site layout the monorepo contract assumes: a
5163
- * single Starlight docs site at `/docs` with sub-project agent pages
5164
- * under `docs/src/content/docs/agents/`.
5165
- *
5166
- * The file is never generated by configulator (the convention is
5167
- * explicit: diagrams are hand-authored for readability). Consumers
5168
- * opt into the starter stub via `emitStarterDiagram: true`.
5169
- *
5170
- * @see WorkflowDiagramsConfig
5171
- */
5172
- declare const DEFAULT_WORKFLOW_DIAGRAMS_PATH = "docs/src/content/docs/agents/workflows.md";
5173
- /**
5174
- * Default list of glob patterns that identify "bundle files" — the
5175
- * source files whose edits require the workflow-diagrams page to be
5176
- * touched in the same change set.
5177
- *
5178
- * The defaults cover the two canonical locations bundle-like content
5179
- * lives in a configulator-consuming repo:
5180
- *
5181
- * - `packages/@codedrifters/configulator/src/agent/bundles/**.ts` —
5182
- * the bundle authoring sites inside configulator itself.
5183
- * - `.claude/agents/**.md` / `.claude/skills/**` — agent and skill
5184
- * prompts in consuming repos that don't re-export configulator
5185
- * bundles.
5186
- *
5187
- * Consumers can replace the list outright via `bundlePathPatterns`
5188
- * when their agent sources live elsewhere (e.g. a monorepo that keeps
5189
- * agents under `tools/agents/`).
5190
- *
5191
- * @see WorkflowDiagramsConfig
5192
- */
5193
- declare const DEFAULT_WORKFLOW_DIAGRAMS_BUNDLE_PATH_PATTERNS: ReadonlyArray<string>;
5194
- /**
5195
- * Default for whether the convention emits a starter workflow-diagrams
5196
- * page to disk at `<diagramsPath>`. Disabled by default because the
5197
- * page is hand-authored — an emitted stub would conflict with
5198
- * existing content on repos adopting the convention late.
5199
- *
5200
- * @see WorkflowDiagramsConfig
5201
- */
5202
- declare const DEFAULT_WORKFLOW_DIAGRAMS_EMIT_STARTER = false;
5203
- /**
5204
- * Default for whether the convention emits the
5205
- * `.claude/procedures/check-workflow-diagrams.sh` checker script. The
5206
- * script walks the staged / changed-file set and fails when a bundle
5207
- * file is touched without the diagrams page being touched too.
5208
- *
5209
- * Disabled by default because many consumers prefer to enforce the
5210
- * rule via review discipline and the rendered documentation alone;
5211
- * the script is opt-in for repos that want a hard CI gate or
5212
- * pre-commit hook.
5213
- *
5214
- * @see WorkflowDiagramsConfig
5215
- */
5216
- declare const DEFAULT_WORKFLOW_DIAGRAMS_EMIT_CHECKER = false;
5217
- /**
5218
- * Default for whether the rendered rule body asserts the diagram
5219
- * update as a **hard requirement** vs. a **strong recommendation**.
5220
- * Defaults to `true` — the whole point of the convention is that
5221
- * diagrams stay in sync, so the hard-requirement phrasing is the
5222
- * correct default. Consumers that treat diagrams as aspirational can
5223
- * soften the phrasing by setting this to `false`.
5224
- *
5225
- * @see WorkflowDiagramsConfig
5226
- */
5227
- declare const DEFAULT_WORKFLOW_DIAGRAMS_REQUIRE_UPDATE = true;
5228
- /**
5229
- * Fully-resolved workflow-diagrams settings. Every field is defaulted
5230
- * so downstream renderers can reason about a single canonical shape.
5231
- */
5232
- interface ResolvedWorkflowDiagrams {
5233
- readonly enabled: boolean;
5234
- readonly diagramsPath: string;
5235
- readonly bundlePathPatterns: ReadonlyArray<string>;
5236
- readonly emitStarterDiagram: boolean;
5237
- readonly emitChecker: boolean;
5238
- readonly requireDiagramUpdate: boolean;
5239
- }
5240
- /**
5241
- * Resolve a (possibly absent) `WorkflowDiagramsConfig` into a
5242
- * canonical `ResolvedWorkflowDiagrams` with every field filled in.
5243
- * Unset fields cascade from their documented defaults.
5244
- *
5245
- * Malformed configs — empty / whitespace-only or absolute
5246
- * `diagramsPath`, empty `bundlePathPatterns`, empty /
5247
- * whitespace-only path entry — throw a descriptive `Error`.
5248
- */
5249
- declare function resolveWorkflowDiagrams(config?: WorkflowDiagramsConfig): ResolvedWorkflowDiagrams;
5250
- /**
5251
- * Synth-time validation hook. Throws a descriptive `Error` when the
5252
- * supplied `WorkflowDiagramsConfig` is malformed. Called by
5253
- * `AgentConfig.preSynthesize` before any rendering so a misconfigured
5254
- * convention fails the build instead of silently shipping broken
5255
- * workflow-diagrams guidance. Returns the resolved config unchanged
5256
- * so callers can write
5257
- * `const wd = validateWorkflowDiagramsConfig(config)` in one line.
5258
- *
5259
- * Malformed cases rejected here:
5260
- *
5261
- * - `diagramsPath` empty, whitespace-only, or absolute.
5262
- * - `bundlePathPatterns` not an array, empty, or contains an empty /
5263
- * whitespace-only entry.
5264
- */
5265
- declare function validateWorkflowDiagramsConfig(config?: WorkflowDiagramsConfig): ResolvedWorkflowDiagrams;
5266
- /**
5267
- * Render the full body for the `workflow-diagrams-convention` rule
5268
- * shipped by the `base` bundle. The rule documents:
5269
- *
5270
- * - Why the convention exists (diagram / prose drift).
5271
- * - The on-disk contract — a single Mermaid-based page at
5272
- * `<diagramsPath>` with one diagram per agent + a master
5273
- * cross-agent diagram.
5274
- * - The **diagram-touched-when-bundle-touched** rule, phrased as a
5275
- * hard requirement or a strong recommendation per
5276
- * `requireDiagramUpdate`.
5277
- * - The set of paths the rule applies to.
5278
- * - The optional checker script (cross-referenced only when emitted).
5279
- *
5280
- * When the convention is disabled, the rule renders a short stub.
5281
- */
5282
- declare function renderWorkflowDiagramsRuleContent(wd: ResolvedWorkflowDiagrams): string;
5283
- /**
5284
- * Render the short workflow-diagrams hook section injected into a
5285
- * phased-agent bundle's workflow rule. The section cites the full
5286
- * contract documented in the base bundle's
5287
- * `workflow-diagrams-convention` rule so individual bundles stay DRY.
5288
- *
5289
- * When the convention is disabled, the function returns an empty
5290
- * string so callers can no-op their append path.
5291
- */
5292
- declare function renderWorkflowDiagramsBundleHook(wd: ResolvedWorkflowDiagrams, bundleLabel: string): string;
5293
- /**
5294
- * Render a minimal starter workflow-diagrams page — a top-level
5295
- * heading, the master-diagram placeholder, and a single example
5296
- * agent section. Exported so `AgentConfig` can emit it to disk when
5297
- * the consumer opts in via `emitStarterDiagram: true`.
5298
- *
5299
- * The starter is deliberately sparse: it documents the expected
5300
- * structure without committing the consumer to a particular agent
5301
- * list. Repos that already maintain a hand-authored diagrams page
5302
- * should leave `emitStarterDiagram` off — the emission would
5303
- * overwrite their content.
5304
- */
5305
- declare function renderWorkflowDiagramsStarterPage(_wd: ResolvedWorkflowDiagrams): string;
5306
- /**
5307
- * Render the `.claude/procedures/check-workflow-diagrams.sh` helper
5308
- * script. Exported so `AgentConfig` can register it as an
5309
- * `AgentProcedure` when the consumer opts in via `emitChecker: true`.
5310
- *
5311
- * The script accepts the list of changed files as either:
5312
- *
5313
- * 1. Positional arguments (one file per arg).
5314
- * 2. Newline-separated entries on stdin (when no args supplied) —
5315
- * pipe `git diff --name-only` directly into it.
5316
- *
5317
- * It fails non-zero when any changed file matches a bundle-path
5318
- * pattern and the configured diagrams path is not also in the list.
5319
- * It exits `0` when no bundle files were touched or when the
5320
- * diagrams page was touched alongside them.
5321
- */
5322
- declare function renderWorkflowDiagramsCheckerScript(wd: ResolvedWorkflowDiagrams): string;
5323
-
5324
5013
  /**
5325
5014
  * Build the requirements-analyst bundle with the supplied resolved
5326
5015
  * paths.
@@ -9269,4 +8958,4 @@ declare const COMPLETE_JOB_ID = "complete";
9269
8958
  */
9270
8959
  declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
9271
8960
 
9272
- 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 ApiDiffFinding, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, 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_DECOMPOSITION_TEMPLATE, DEFAULT_DELEGATE_TO_PR_REVIEWER, 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_MERGE_METHOD, 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_LINKED_ISSUE, 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_WORKFLOW_DIAGRAMS_BUNDLE_PATH_PATTERNS, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_CHECKER, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_STARTER, DEFAULT_WORKFLOW_DIAGRAMS_ENABLED, DEFAULT_WORKFLOW_DIAGRAMS_PATH, DEFAULT_WORKFLOW_DIAGRAMS_REQUIRE_UPDATE, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, 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, PREFLIGHT_MERGE_METHOD_VALUES, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PreflightMergeMethod, type PreflightPrConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueTemplates, type ResolvedPreflightPr, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedUnblockDependents, type ResolvedWorkflowDiagrams, 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 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 TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, type WorkflowDiagramsConfig, 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, customerProfileBundle, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, peopleProfileBundle, persistAuditReport, pnpmBundle, prReviewBundle, projenBundle, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPreflightPrSection, renderPreflightPrShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderUnblockDependentsScript, renderUnblockDependentsSection, renderWorkflowDiagramsBundleHook, renderWorkflowDiagramsCheckerScript, renderWorkflowDiagramsRuleContent, renderWorkflowDiagramsStarterPage, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, resolveWorkflowDiagrams, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, turborepoBundle, typescriptBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, validateWorkflowDiagramsConfig, vitestBundle };
8961
+ 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 ApiDiffFinding, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, 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_DECOMPOSITION_TEMPLATE, DEFAULT_DELEGATE_TO_PR_REVIEWER, 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_MERGE_METHOD, 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_LINKED_ISSUE, 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, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, 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, PREFLIGHT_MERGE_METHOD_VALUES, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PreflightMergeMethod, type PreflightPrConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueTemplates, type ResolvedPreflightPr, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, 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 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 TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, 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, customerProfileBundle, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, peopleProfileBundle, persistAuditReport, pnpmBundle, prReviewBundle, projenBundle, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPreflightPrSection, renderPreflightPrShellHelpers, 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, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, turborepoBundle, typescriptBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, vitestBundle };