@codedrifters/configulator 0.0.316 → 0.0.318

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
@@ -32,7 +32,7 @@ declare const AGENT_PLATFORM: {
32
32
  type AgentPlatform = (typeof AGENT_PLATFORM)[keyof typeof AGENT_PLATFORM];
33
33
  /**
34
34
  * Render target for Claude Code rules.
35
- * - SCOPED_FILE: .claude/rules/{name}.md (default — supports paths frontmatter for conditional activation)
35
+ * - SCOPED_FILE: `.claude/rules/{name}.md` (default — supports paths frontmatter for conditional activation)
36
36
  * - AGENTS_MD: AGENTS.md (always-active, shared with Codex)
37
37
  * - CLAUDE_MD: CLAUDE.md (always-active, Claude-only content not consumed by other agents)
38
38
  */
@@ -82,7 +82,7 @@ interface AgentPlatformOverrides {
82
82
  readonly claude?: {
83
83
  /**
84
84
  * Where to render this rule for Claude Code.
85
- * - SCOPED_FILE: .claude/rules/{name}.md (default — supports paths frontmatter)
85
+ * - SCOPED_FILE: `.claude/rules/{name}.md` (default — supports paths frontmatter)
86
86
  * - AGENTS_MD: AGENTS.md (always-active, shared with Codex)
87
87
  * - CLAUDE_MD: CLAUDE.md (always-active, Claude-only)
88
88
  */
@@ -220,10 +220,12 @@ interface AgentSkill {
220
220
  * files for that platform alongside the SKILL.md.
221
221
  *
222
222
  * @example
223
+ * ```ts
223
224
  * referenceFiles: [
224
225
  * { path: '_references/templates/_template-FR.md', content: '# Functional Requirement\n...' },
225
226
  * { path: '_references/standards-and-frameworks.md', content: '# Standards\n...' },
226
227
  * ]
228
+ * ```
227
229
  */
228
230
  readonly referenceFiles?: ReadonlyArray<{
229
231
  /** Path relative to the skill directory (e.g., `_references/templates/_template-FR.md`). */
@@ -403,7 +405,7 @@ interface AgentCommand {
403
405
  }
404
406
  /**
405
407
  * An executable procedure (shell script) that ships with a bundle.
406
- * Rendered to .claude/procedures/{name} as an executable file.
408
+ * Rendered to `.claude/procedures/{name}` as an executable file.
407
409
  */
408
410
  interface AgentProcedure {
409
411
  /**
@@ -531,7 +533,7 @@ interface AgentRuleBundle {
531
533
  * Function that inspects the Projen project and returns true if this
532
534
  * bundle should be automatically included. Receives the root project
533
535
  * as input and can check for sibling components, dependencies, etc.
534
- * @example (project) => Vitest.of(project) !== undefined
536
+ * @example `(project) => Vitest.of(project) !== undefined`
535
537
  */
536
538
  readonly appliesWhen: (project: Project) => boolean;
537
539
  /**
@@ -544,7 +546,7 @@ interface AgentRuleBundle {
544
546
  * TypeScript-adjacent code (e.g. typescript, aws-cdk, vitest, jest) should
545
547
  * implement this so their rules only activate for files in the packages
546
548
  * that actually use them.
547
- * @example (project) => findProjectsWithFile(project, 'tsconfig.json')
549
+ * @example `(project) => findProjectsWithFile(project, 'tsconfig.json')`
548
550
  */
549
551
  readonly findApplicableProjects?: (project: Project) => ReadonlyArray<Project>;
550
552
  /** Rules included in this bundle. */
@@ -1331,11 +1333,11 @@ interface MeetingType {
1331
1333
  * edits on that meeting (see the `meeting-analyst` agent's
1332
1334
  * **Areas filtering** section for the full gating contract).
1333
1335
  *
1334
- * Example: declaring `{ id: 'product-engineering', label: 'Product &
1335
- * Engineering', docRoot: 'product' }` tells the `meeting-analysis`
1336
- * bundle that a meeting whose frontmatter carries
1337
- * `areas: [product-engineering]` should have its direct edits routed
1338
- * under `<docsRoot>/product/`.
1336
+ * Example: declaring
1337
+ * `{ id: 'product-engineering', label: 'Product & Engineering', docRoot: 'product' }`
1338
+ * tells the `meeting-analysis` bundle that a meeting whose frontmatter
1339
+ * carries `areas: [product-engineering]` should have its direct edits
1340
+ * routed under `<docsRoot>/product/`.
1339
1341
  *
1340
1342
  * When `AgentConfigOptions.meetings.meetingAreas` is non-empty, the
1341
1343
  * `meeting-analysis` bundle renders an "Area → doc-root mapping"
@@ -2828,7 +2830,7 @@ interface AgentConfigOptions {
2828
2830
  * match one of the six tier-aware bundle names — typos or
2829
2831
  * deprecated bundle names would otherwise be silently ignored.
2830
2832
  *
2831
- * @default {}
2833
+ * @default `{}`
2832
2834
  */
2833
2835
  readonly bundleAgentTiers?: Readonly<Record<string, "powerful" | "balanced" | "fast">>;
2834
2836
  /**
@@ -4418,7 +4420,7 @@ interface ResolvedScheduledTask {
4418
4420
  readonly typeLabel: string;
4419
4421
  /**
4420
4422
  * Exact `type:*` label values (without the `type:` prefix) the
4421
- * worker picks up. When set (length >= 1), represents a
4423
+ * worker picks up. When set (`length >= 1`), represents a
4422
4424
  * multi-type filter (e.g. routing-bucket `worker-issue`). When
4423
4425
  * unset, the `typeLabel` single-value filter applies.
4424
4426
  */
@@ -4432,7 +4434,7 @@ interface ResolvedScheduledTask {
4432
4434
  readonly phasePrefix?: string;
4433
4435
  /**
4434
4436
  * Exact phase-label values the worker filters on (e.g.
4435
- * `["req:write"]`). When set (length >= 1), takes precedence over
4437
+ * `["req:write"]`). When set (`length >= 1`), takes precedence over
4436
4438
  * `phasePrefix`. When unset, the `phasePrefix` prefix-match
4437
4439
  * applies.
4438
4440
  */
@@ -4885,10 +4887,10 @@ declare function validateAgentTierConfig(config?: AgentTierConfig): ReadonlyArra
4885
4887
  *
4886
4888
  * When `excludeBundles` is non-empty, rows whose `type:*` label is
4887
4889
  * owned by an excluded bundle are dropped before rendering. Tiers
4888
- * that end up with no surviving rows render an empty `_(none
4889
- * registered)_` cell for consistency with the existing render — the
4890
- * tier itself stays in the table so the dispatch ordering is still
4891
- * documented end-to-end.
4890
+ * that end up with no surviving rows render an empty
4891
+ * `_(none registered)_` cell for consistency with the existing
4892
+ * render — the tier itself stays in the table so the dispatch
4893
+ * ordering is still documented end-to-end.
4892
4894
  */
4893
4895
  declare function renderAgentTierSection(tiers: ReadonlyArray<ResolvedAgentTier>, excludeBundles?: ReadonlyArray<string>): string;
4894
4896
  /**
@@ -6367,7 +6369,7 @@ interface GitHubProjectMetadata {
6367
6369
  readonly sprints?: GitHubSprintMetadata;
6368
6370
  /**
6369
6371
  * Kanban column (status field) definitions.
6370
- * @example [{ name: 'To Do', id: 'status_1' }, { name: 'In Progress', id: 'status_2' }]
6372
+ * @example `[{ name: 'To Do', id: 'status_1' }, { name: 'In Progress', id: 'status_2' }]`
6371
6373
  */
6372
6374
  readonly columns?: ReadonlyArray<{
6373
6375
  readonly name: string;
@@ -6416,7 +6418,7 @@ interface SlackMetadata {
6416
6418
  readonly alertsChannel?: string;
6417
6419
  /**
6418
6420
  * Additional named channels. Keys are purpose identifiers.
6419
- * @example { releases: '#releases', support: '#customer-support' }
6421
+ * @example `{ releases: '#releases', support: '#customer-support' }`
6420
6422
  */
6421
6423
  readonly channels?: Readonly<Record<string, string>>;
6422
6424
  }
@@ -6441,7 +6443,7 @@ interface DeploymentMetadata {
6441
6443
  readonly awsRegion?: string;
6442
6444
  /**
6443
6445
  * Named environments.
6444
- * @example { dev: { accountId: '111', region: 'us-east-1' }, prod: { accountId: '222', region: 'us-east-1' } }
6446
+ * @example `{ dev: { accountId: '111', region: 'us-east-1' }, prod: { accountId: '222', region: 'us-east-1' } }`
6445
6447
  */
6446
6448
  readonly environments?: Readonly<Record<string, {
6447
6449
  readonly accountId?: string;
@@ -6714,7 +6716,7 @@ interface AstroIntegrationSpec {
6714
6716
  */
6715
6717
  readonly name: string;
6716
6718
  /**
6717
- * Module to import from, e.g. "@astrojs/react".
6719
+ * Module to import from, e.g. `@astrojs/react`.
6718
6720
  */
6719
6721
  readonly importPath: string;
6720
6722
  /**
@@ -6830,7 +6832,7 @@ interface AwsLocalDeploymentConfig {
6830
6832
  /**
6831
6833
  * The pattern used to identify stacks to deploy in CI deployments.
6832
6834
  *
6833
- * @default *-${account}-${region}
6835
+ * @default `*-${account}-${region}`
6834
6836
  */
6835
6837
  readonly stackPattern?: string;
6836
6838
  }
@@ -6842,7 +6844,7 @@ interface CiDeploymentConfig {
6842
6844
  /**
6843
6845
  * The pattern used to identify stacks to deploy in CI deployments.
6844
6846
  *
6845
- * @default *-${account}-${region}
6847
+ * @default `*-${account}-${region}`
6846
6848
  */
6847
6849
  readonly stackPattern?: string;
6848
6850
  }
@@ -7492,7 +7494,7 @@ declare const AuditCategory: {
7492
7494
  readonly LinkFailures: "linkFailures";
7493
7495
  /**
7494
7496
  * Findings produced by the fenced-sample compilation check that
7495
- * flags ` ```ts ` / ` ```typescript ` / ` ```tsx ` blocks in the
7497
+ * flags `ts`, `typescript`, and `tsx` fenced code blocks in the
7496
7498
  * docs that fail `tsc`. Wired in by child issue #520.
7497
7499
  */
7498
7500
  readonly SampleFailures: "sampleFailures";
@@ -8418,7 +8420,7 @@ declare const VERSION: {
8418
8420
  */
8419
8421
  readonly SHARP_VERSION: "0.34.5";
8420
8422
  /**
8421
- * Version of @astrojs/starlight to pin for StarlightProject scaffolding.
8423
+ * Version of `@astrojs/starlight` to pin for StarlightProject scaffolding.
8422
8424
  */
8423
8425
  readonly STARLIGHT_VERSION: "0.39.2";
8424
8426
  /**
@@ -8426,7 +8428,7 @@ declare const VERSION: {
8426
8428
  */
8427
8429
  readonly TURBO_VERSION: "2.9.14";
8428
8430
  /**
8429
- * Version of @types/node to use across all packages (pnpm catalog).
8431
+ * Version of `@types/node` to use across all packages (pnpm catalog).
8430
8432
  */
8431
8433
  readonly TYPES_NODE_VERSION: "25.8.0";
8432
8434
  /**
@@ -8790,8 +8792,8 @@ declare class PnpmWorkspace extends Component {
8790
8792
  * Get the pnpm workspace component of a project. If it does not exist,
8791
8793
  * return undefined.
8792
8794
  *
8793
- * @param project
8794
- * @returns
8795
+ * @param project - The project to query.
8796
+ * @returns The PnpmWorkspace component if present, otherwise undefined.
8795
8797
  */
8796
8798
  static of(project: Project$1): PnpmWorkspace | undefined;
8797
8799
  /**
@@ -9070,6 +9072,84 @@ declare class ResetTask extends Component {
9070
9072
  constructor(project: Project$1, options?: ResetTaskOptions);
9071
9073
  }
9072
9074
 
9075
+ /*******************************************************************************
9076
+ *
9077
+ * TsdocConfig
9078
+ *
9079
+ * Emits `tsdoc.json` at the project root so `eslint-plugin-tsdoc` recognises
9080
+ * the JSDoc tags consuming code commonly uses but that are not in the
9081
+ * default TSDoc tag list:
9082
+ *
9083
+ * - Workspace-scope package references (such as `@codedrifters` or
9084
+ * `@openhi`) registered as modifier tags so prose like
9085
+ * `See @codedrifters/configulator` does not trip `tsdoc-at-sign-in-word`.
9086
+ * - Common JSDoc convention tags (default, defaultValue, experimental, and
9087
+ * the internal-marker tag) registered as modifier tags so they do
9088
+ * not trip `tsdoc-undefined-tag`.
9089
+ *
9090
+ * Without `tsdoc.json` configulator emits, downstream consumers see ~1,250
9091
+ * `tsdoc-at-sign-in-word` warnings and ~17 `tsdoc-undefined-tag` warnings
9092
+ * per build on every scoped-package reference in a JSDoc comment.
9093
+ *
9094
+ * Note: the tag names above are intentionally written without their leading
9095
+ * at-sign. `tsc --stripInternal` (which configulator enables) treats the
9096
+ * file-leading banner as the JSDoc comment of the next declaration, and a
9097
+ * bare at-sign-prefixed `internal` token anywhere in that banner — even
9098
+ * inside a backtick code span — strips the following interface from the
9099
+ * emitted `.d.ts`.
9100
+ *
9101
+ ******************************************************************************/
9102
+ /**
9103
+ * Configuration options for {@link TsdocConfig}.
9104
+ */
9105
+ interface TsdocConfigOptions {
9106
+ /**
9107
+ * Workspace scopes to register as TSDoc modifier tags so prose references
9108
+ * like `@codedrifters/configulator` are not treated as malformed TSDoc
9109
+ * tags.
9110
+ *
9111
+ * Each entry should include the leading `@` (e.g. `@codedrifters`,
9112
+ * `@openhi`). When omitted, the scope is derived from the consuming
9113
+ * project's `packageName` (the substring up to the first `/`, when the
9114
+ * name starts with `@`). `@codedrifters` is always included so internal
9115
+ * configulator references work out of the box.
9116
+ */
9117
+ readonly workspaceScopes?: Array<string>;
9118
+ /**
9119
+ * Additional modifier tag names (each starting with `@`) to register
9120
+ * beyond the standard set: default, defaultValue, experimental, and
9121
+ * the internal-marker tag.
9122
+ *
9123
+ * Note: the tag names above are intentionally written without their
9124
+ * leading at-sign. `tsc --stripInternal` (which configulator enables)
9125
+ * strips any declaration whose JSDoc contains the bare at-sign-prefixed
9126
+ * `internal` tag — even when the token sits inside a backtick code span
9127
+ * — and that strips this field from the published `.d.ts` rollup.
9128
+ *
9129
+ * @default []
9130
+ */
9131
+ readonly additionalModifierTags?: Array<string>;
9132
+ }
9133
+ /**
9134
+ * Emits `tsdoc.json` so `eslint-plugin-tsdoc` recognises workspace-scope
9135
+ * package references and the standard JSDoc modifier tag set.
9136
+ */
9137
+ declare class TsdocConfig extends Component {
9138
+ constructor(project: TypeScriptProject$1, options?: TsdocConfigOptions);
9139
+ }
9140
+
9141
+ /*******************************************************************************
9142
+ *
9143
+ * Update / customize typescript configs for a project.
9144
+ *
9145
+ * Update typescript paths in tsconfig so we don't have to compile packages to
9146
+ * dist in order to see changes.
9147
+ *
9148
+ ******************************************************************************/
9149
+ declare class TypeScriptConfig extends Component {
9150
+ constructor(project: TypeScriptProject$1);
9151
+ }
9152
+
9073
9153
  /**
9074
9154
  * Options for the Vitest config (test block in vitest.config).
9075
9155
  *
@@ -9079,7 +9159,7 @@ interface VitestConfigOptions {
9079
9159
  /**
9080
9160
  * Glob patterns for test files.
9081
9161
  *
9082
- * @default ["**\/*.{test,spec}.?(c|m)[jt]s?(x)"]
9162
+ * @default `["**\/*.{test,spec}.?(c|m)[jt]s?(x)"]`
9083
9163
  */
9084
9164
  readonly include?: string[];
9085
9165
  /**
@@ -9221,9 +9301,28 @@ interface TypeScriptProjectOptions extends Omit<typescript.TypeScriptProjectOpti
9221
9301
  * `.api-extractor/` and are gitignored). Set to `false` to opt a
9222
9302
  * package out of drift detection entirely.
9223
9303
  *
9224
- * @default {}
9304
+ * @default `{}`
9225
9305
  */
9226
9306
  readonly apiExtractor?: ApiExtractorOptions | false;
9307
+ /**
9308
+ * Configure the emitted `tsdoc.json` so `eslint-plugin-tsdoc` recognises
9309
+ * workspace-scope package references (`@codedrifters/...`, `@openhi/...`,
9310
+ * etc.) and common JSDoc convention tags such as default, defaultValue,
9311
+ * experimental, and the internal-marker tag.
9312
+ *
9313
+ * Pass `false` to opt out of emitting `tsdoc.json` entirely. The
9314
+ * `tsdoc-at-sign-in-word` and `tsdoc-undefined-tag` lint warnings will
9315
+ * return at full volume in that case.
9316
+ *
9317
+ * Note: the tag names above are intentionally written without their
9318
+ * leading at-sign. `tsc --stripInternal` (which configulator enables)
9319
+ * strips any declaration whose JSDoc contains the bare at-sign-prefixed
9320
+ * `internal` tag — even when the token sits inside a backtick code span
9321
+ * — and that strips this field from the published `.d.ts` rollup.
9322
+ *
9323
+ * @default `{}`
9324
+ */
9325
+ readonly tsdocConfig?: TsdocConfigOptions | false;
9227
9326
  /**
9228
9327
  * Control the `jsdoc/require-jsdoc` lint rule applied to `src/**` files.
9229
9328
  *
@@ -9363,7 +9462,7 @@ declare class AwsDeployWorkflow extends Component {
9363
9462
  * Handles both exact matches (e.g., "main") and glob patterns (e.g., "feature/*").
9364
9463
  * Also allows workflow_dispatch (manual runs) to proceed.
9365
9464
  *
9366
- * @param branches Array of GitBranch objects with branch patterns
9465
+ * @param branches - Array of GitBranch objects with branch patterns
9367
9466
  * @returns Condition string or empty string if no branches provided
9368
9467
  */
9369
9468
  private buildBranchFilterCondition;
@@ -9570,7 +9669,7 @@ interface TurboRepoOptions {
9570
9669
  /**
9571
9670
  * Version of turborepo to use.
9572
9671
  *
9573
- * @default: specified in versions file
9672
+ * @default specified in versions file
9574
9673
  */
9575
9674
  readonly turboVersion?: string;
9576
9675
  /**
@@ -9619,7 +9718,7 @@ interface TurboRepoOptions {
9619
9718
  */
9620
9719
  readonly globalPassThroughEnv?: Array<string>;
9621
9720
  /**
9622
- * @default: "stream"
9721
+ * @default "stream"
9623
9722
  *
9624
9723
  * Select a terminal UI for the repository.
9625
9724
  *
@@ -9630,7 +9729,7 @@ interface TurboRepoOptions {
9630
9729
  */
9631
9730
  readonly ui?: "tui" | "stream";
9632
9731
  /**
9633
- * @default: false
9732
+ * @default false
9634
9733
  *
9635
9734
  * Turborepo uses your repository's lockfile to determine caching behavior,
9636
9735
  * Package Graphs, and more. Because of this, we use the packageManager field
@@ -9647,7 +9746,7 @@ interface TurboRepoOptions {
9647
9746
  */
9648
9747
  readonly dangerouslyDisablePackageManagerCheck?: boolean;
9649
9748
  /**
9650
- * @default: ".turbo/cache"
9749
+ * @default ".turbo/cache"
9651
9750
  *
9652
9751
  * Specify the filesystem cache directory.
9653
9752
  *
@@ -9664,7 +9763,7 @@ interface TurboRepoOptions {
9664
9763
  */
9665
9764
  readonly daemon?: boolean;
9666
9765
  /**
9667
- * @default: "strict"
9766
+ * @default "strict"
9668
9767
  *
9669
9768
  * Turborepo's Environment Modes allow you to control which environment
9670
9769
  * variables are available to a task at runtime:
@@ -9689,7 +9788,7 @@ interface TurboRepoOptions {
9689
9788
  /**
9690
9789
  * Env Args that will bre added to turbo's build:all task
9691
9790
  *
9692
- * @default: {}
9791
+ * @default `{}`
9693
9792
  */
9694
9793
  readonly buildAllTaskEnvVars?: Record<string, string>;
9695
9794
  /*****************************************************************************
@@ -9701,31 +9800,31 @@ interface TurboRepoOptions {
9701
9800
  /**
9702
9801
  * Pre compile task
9703
9802
  *
9704
- * @default: "pre-compile"
9803
+ * @default "pre-compile"
9705
9804
  */
9706
9805
  readonly preCompileTask?: Task;
9707
9806
  /**
9708
9807
  * Compile task
9709
9808
  *
9710
- * @default: "compile"
9809
+ * @default "compile"
9711
9810
  */
9712
9811
  readonly compileTask?: Task;
9713
9812
  /**
9714
9813
  * Post compile task
9715
9814
  *
9716
- * @default: "post-compile"
9815
+ * @default "post-compile"
9717
9816
  */
9718
9817
  readonly postCompileTask?: Task;
9719
9818
  /**
9720
9819
  * Test task
9721
9820
  *
9722
- * @default: "test"
9821
+ * @default "test"
9723
9822
  */
9724
9823
  readonly testTask?: Task;
9725
9824
  /**
9726
9825
  * Package task
9727
9826
  *
9728
- * @default: "package"
9827
+ * @default "package"
9729
9828
  */
9730
9829
  readonly packageTask?: Task;
9731
9830
  }
@@ -9786,7 +9885,7 @@ declare class TurboRepo extends Component$1 {
9786
9885
  */
9787
9886
  readonly globalPassThroughEnv: Array<string>;
9788
9887
  /**
9789
- * @default: "stream"
9888
+ * @default "stream"
9790
9889
  *
9791
9890
  * Select a terminal UI for the repository.
9792
9891
  *
@@ -9797,7 +9896,7 @@ declare class TurboRepo extends Component$1 {
9797
9896
  */
9798
9897
  readonly ui: "tui" | "stream";
9799
9898
  /**
9800
- * @default: false
9899
+ * @default false
9801
9900
  *
9802
9901
  * Turborepo uses your repository's lockfile to determine caching behavior,
9803
9902
  * Package Graphs, and more. Because of this, we use the packageManager field
@@ -9814,7 +9913,7 @@ declare class TurboRepo extends Component$1 {
9814
9913
  */
9815
9914
  readonly dangerouslyDisablePackageManagerCheck: boolean;
9816
9915
  /**
9817
- * @default: ".turbo/cache"
9916
+ * @default ".turbo/cache"
9818
9917
  *
9819
9918
  * Specify the filesystem cache directory.
9820
9919
  *
@@ -9830,7 +9929,7 @@ declare class TurboRepo extends Component$1 {
9830
9929
  */
9831
9930
  readonly daemon: boolean;
9832
9931
  /**
9833
- * @default: "strict"
9932
+ * @default "strict"
9834
9933
  *
9835
9934
  * Turborepo's Environment Modes allow you to control which environment
9836
9935
  * variables are available to a task at runtime:
@@ -10047,7 +10146,7 @@ interface MonorepoProjectOptions extends Omit<TypeScriptProjectOptions$1, "defau
10047
10146
  /**
10048
10147
  * The version of PNPM to use in the monorepo.
10049
10148
  * @default VERSION.PNPM_VERSION
10050
- * @see {@link src/versions.ts}
10149
+ * @see `src/versions.ts`
10051
10150
  */
10052
10151
  version?: string;
10053
10152
  /**
@@ -10065,7 +10164,7 @@ interface MonorepoProjectOptions extends Omit<TypeScriptProjectOptions$1, "defau
10065
10164
  */
10066
10165
  readonly approveMergeUpgradeOptions?: ApproveMergeUpgradeOptions;
10067
10166
  /**
10068
- * Whether this monorepo consumes @codedrifters/configulator from a registry (npm).
10167
+ * Whether this monorepo consumes `@codedrifters/configulator` from a registry (npm).
10069
10168
  * When true, the upgrade workflow adds steps to sync configulator and synthesize.
10070
10169
  * Set to false when configulator is developed in this repo (e.g. workspace dependency).
10071
10170
  *
@@ -10081,7 +10180,7 @@ interface MonorepoProjectOptions extends Omit<TypeScriptProjectOptions$1, "defau
10081
10180
  * - `ProjectMetadataOptions`: explicit metadata configuration
10082
10181
  * - `false`: disable ProjectMetadata entirely
10083
10182
  *
10084
- * @default {} (auto-detect from package.json)
10183
+ * @default `{}` (auto-detect from package.json)
10085
10184
  */
10086
10185
  readonly projectMetadata?: ProjectMetadataOptions | false;
10087
10186
  /**
@@ -10355,8 +10454,8 @@ declare class ProjectMetadata extends Component {
10355
10454
  /**
10356
10455
  * Return the maintainer-seed addendum for the `project-context`
10357
10456
  * bundle, or an empty string when the root project either has no
10358
- * layout-enforcement opinion or has opted out (`layoutEnforcement:
10359
- * "off"`).
10457
+ * layout-enforcement opinion or has opted out
10458
+ * (`layoutEnforcement: "off"`).
10360
10459
  *
10361
10460
  * Uses duck-typing on the root project's `layoutEnforcement`
10362
10461
  * property to avoid a circular import with `MonorepoProject`. The
@@ -10581,7 +10680,7 @@ interface StarlightProjectOptions extends AstroProjectOptions {
10581
10680
  */
10582
10681
  readonly editLink?: StarlightEditLink;
10583
10682
  /**
10584
- * @astrojs/starlight package version.
10683
+ * `@astrojs/starlight` package version.
10585
10684
  *
10586
10685
  * @default VERSION.STARLIGHT_VERSION
10587
10686
  */
@@ -10615,26 +10714,6 @@ declare class StarlightProject extends AstroProject {
10615
10714
  constructor(userOptions: StarlightProjectOptions);
10616
10715
  }
10617
10716
 
10618
- /**
10619
- * Emits `tsdoc.json` so `eslint-plugin-tsdoc` recognises workspace-scope
10620
- * package references and the standard JSDoc modifier tag set.
10621
- */
10622
- declare class TsdocConfig extends Component {
10623
- constructor(project: TypeScriptProject$1, options?: TsdocConfigOptions);
10624
- }
10625
-
10626
- /*******************************************************************************
10627
- *
10628
- * Update / customize typescript configs for a project.
10629
- *
10630
- * Update typescript paths in tsconfig so we don't have to compile packages to
10631
- * dist in order to see changes.
10632
- *
10633
- ******************************************************************************/
10634
- declare class TypeScriptConfig extends Component {
10635
- constructor(project: TypeScriptProject$1);
10636
- }
10637
-
10638
10717
  /*******************************************************************************
10639
10718
  *
10640
10719
  * Configure VSCode Settings
@@ -10653,7 +10732,7 @@ declare const COMPLETE_JOB_ID = "complete";
10653
10732
  * Call this for the default build workflow and for any build workflow created
10654
10733
  * by Configulator (e.g. AwsDeployWorkflow).
10655
10734
  *
10656
- * @param buildWorkflow The Projen BuildWorkflow to append the complete job to.
10735
+ * @param buildWorkflow - The Projen BuildWorkflow to append the complete job to.
10657
10736
  */
10658
10737
  declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
10659
10738
 
@@ -10681,7 +10760,7 @@ declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
10681
10760
  * (e.g. the upgrade workflow). Steps held inside lazy closures
10682
10761
  * are skipped — those are reached via pass 1.
10683
10762
  *
10684
- * @param project The project whose GitHub workflows should be patched.
10763
+ * @param project - The project whose GitHub workflows should be patched.
10685
10764
  */
10686
10765
  declare function pinPnpmActionSetup(project: Project$1): void;
10687
10766
 
@@ -10729,8 +10808,8 @@ declare function pinPnpmActionSetup(project: Project$1): void;
10729
10808
  * untouched. The step's `uses` field is also left alone — this
10730
10809
  * helper pins the input, not the action version pin.
10731
10810
  *
10732
- * @param project The project whose GitHub workflows should be patched.
10811
+ * @param project - The project whose GitHub workflows should be patched.
10733
10812
  */
10734
10813
  declare function pinSetupNodeVersion(project: Project$1): void;
10735
10814
 
10736
- export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, type ActivateBranchNameEnvVarOptions, type AddStorybookOptions, type AgentCommand, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRegistryEntry, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffCheckOptions, type ApiDiffFinding, type ApiDiffResult, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApiSurfaceEntry, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudeMdConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CompileFencedSamplesOptions, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PRIORITY_LABELS, DEFAULT_PRODUCT_CONTEXT_PATH, DEFAULT_PROGRESS_FILES_ENABLED, DEFAULT_PROGRESS_FILES_FILENAME_PATTERN, DEFAULT_PROGRESS_FILES_FORMAT, DEFAULT_PROGRESS_FILES_STALE_AFTER_HOURS, DEFAULT_PROGRESS_FILES_STATE_DIR, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_SAMPLE_COMPILER_OPTIONS, DEFAULT_SCHEDULED_TASKS_ROOT, DEFAULT_SCHEDULED_TASK_ENTRIES, DEFAULT_SHARED_EDITING_CONFLICT_STRATEGY, DEFAULT_SHARED_EDITING_EMIT_HELPER, DEFAULT_SHARED_EDITING_ENABLED, DEFAULT_SHARED_EDITING_VERIFY_COMMIT, DEFAULT_SHARED_INDEX_PATHS, DEFAULT_SKILL_EVALS_EMIT_RUNNER, DEFAULT_SKILL_EVALS_ENABLED, DEFAULT_SKILL_EVALS_SKILLS_ROOT, DEFAULT_SOURCES_THRESHOLDS, DEFAULT_STATE_FILE_PATH, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TEMPORAL_FRAMING_CADENCES, DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER, DEFAULT_TEMPORAL_FRAMING_ENABLED, DEFAULT_TEMPORAL_FRAMING_PATHS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, type ReactViteSiteProjectOptions, 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 ResolvedTemporalFraming, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateBundleOverride, type ScopeGateConfig, type ScopeGateThresholds, type SharedEditingConfig, type SkillEvalsConfig, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, TEMPORAL_FRAMING_CATEGORY_VALUES, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, 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, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStubIndexConventionRuleContent, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
10815
+ export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, type ActivateBranchNameEnvVarOptions, type AddStorybookOptions, type AgentCommand, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRegistryEntry, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffCheckOptions, type ApiDiffFinding, type ApiDiffResult, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApiSurfaceEntry, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudeMdConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CompileFencedSamplesOptions, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PRIORITY_LABELS, DEFAULT_PRODUCT_CONTEXT_PATH, DEFAULT_PROGRESS_FILES_ENABLED, DEFAULT_PROGRESS_FILES_FILENAME_PATTERN, DEFAULT_PROGRESS_FILES_FORMAT, DEFAULT_PROGRESS_FILES_STALE_AFTER_HOURS, DEFAULT_PROGRESS_FILES_STATE_DIR, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_SAMPLE_COMPILER_OPTIONS, DEFAULT_SCHEDULED_TASKS_ROOT, DEFAULT_SCHEDULED_TASK_ENTRIES, DEFAULT_SHARED_EDITING_CONFLICT_STRATEGY, DEFAULT_SHARED_EDITING_EMIT_HELPER, DEFAULT_SHARED_EDITING_ENABLED, DEFAULT_SHARED_EDITING_VERIFY_COMMIT, DEFAULT_SHARED_INDEX_PATHS, DEFAULT_SKILL_EVALS_EMIT_RUNNER, DEFAULT_SKILL_EVALS_ENABLED, DEFAULT_SKILL_EVALS_SKILLS_ROOT, DEFAULT_SOURCES_THRESHOLDS, DEFAULT_STATE_FILE_PATH, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TEMPORAL_FRAMING_CADENCES, DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER, DEFAULT_TEMPORAL_FRAMING_ENABLED, DEFAULT_TEMPORAL_FRAMING_PATHS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, type ReactViteSiteProjectOptions, 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 ResolvedTemporalFraming, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateBundleOverride, type ScopeGateConfig, type ScopeGateThresholds, type SharedEditingConfig, type SkillEvalsConfig, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, TEMPORAL_FRAMING_CATEGORY_VALUES, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, 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, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStubIndexConventionRuleContent, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };